@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

h1 {
  font-size: 50px;
  line-height: 64px;
  color: #222;
}
h2 {
  font-size: 46px;
  line-height: 54px;
  color: #222;
}
h4 {
  font-size: 20px;
  color: #222;
}
h6 {
  font-weight: 700;
  font-size: 12px;
}
.p {
  font-size: 16px;
  color: #465b52;
  margin: 15px 0 20px 0;
}
.section-p1 {
  padding: 40px 80px;
}
.section-m1 {
  margin: 40px 0;
}
body {
  width: 100%;
}

/* header */
#header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 80px;
  background: #ffffff;
  border-bottom: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 999;
  position: sticky;
  top: 0;
  left: 0;
}

#header .logo {
  width: 120px;
  cursor: pointer;
  margin: 5px 0;
}

#navbar {
  display: flex;
  align-items: center;
  justify-content: center;
}

#navbar li {
  list-style: none;
  padding: 0 15px;
  position: relative;
}

#navbar li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 16px;
  transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
  color: #088178;
}

#navbar li a::after {
  content: "";
  width: 0;
  height: 2px;
  background: #088178;
  position: absolute;
  bottom: -4px;
  left: 20px;
  transition: width 0.3s ease;
}

#navbar li a:hover::after,
#navbar li a.active::after {
  width: 30%;
}

#mobile {
  display: none;
  align-items: center;
}

#close {
  position: absolute;
  top: 0px;
  left: 15;
  font-size: 24px;
  cursor: pointer;
  display: none;
}

#hero {
  background-image: url(./img/hero.jpg);
  height: 90vh;
  width: 100%;
  background-size: cover;
  background-position: top 25% right 0;
  padding: 0 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
#hero h4 {
  padding-bottom: 15px;
}

#hero h1 {
  color: #088178;
}

#hero button {
  background-color: #088178;
  color: #ffffff;
  border: 2px solid #088178;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 15px;
}

#hero button:hover {
  background-color: #06665f;
  border-color: #06665f;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

#feature {
  background: #f9f9f9;
  padding: 60px 80px;
  text-align: center;
}

#feature .fe-services h2 {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

#feature .fe-services h2::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 3px;
  background: #088178;
  bottom: 0;
  left: 25%;
  border-radius: 2px;
}

#feature .fe-services p {
  color: #666;
  font-size: 16px;
  margin-bottom: 40px;
  font-style: italic;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.service-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.service-box i {
  font-size: 32px;
  color: #088178;
  margin-bottom: 15px;
}

.service-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.service-box p {
  font-size: 14px;
  color: #666;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

#product {
  text-align: center;
  padding: 40px 80px;
  background: #f9f9f9;
  cursor: pointer;
}

#product h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #222;
}

#product p {
  color: #555;
  margin-bottom: 30px;
}

.pro-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  justify-items: center;
}

.pro {
  background: #fff;
  width: 100%;
  max-width: 260px;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.pro img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

.des {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.pro-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.pro-bottom h4 {
  margin: 0;
  color: #088178;
  font-size: 18px;
  font-weight: 700;
}

.add-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #e6f7f5;
  color: #088178;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.12s ease;
  border: none;
  padding: 0;
}

.add-cart .cart {
  font-size: 16px;
}

.add-cart:hover {
  background: #088178;
  color: #fff;
  transform: translateY(-2px);
}

.des span {
  font-size: 12px;
  color: #888;
}
.des h5 {
  font-size: 16px;
  margin: 0;
  color: #222;
}
.des p {
  font-size: 13px;
  color: #666;
  margin: 0;
}
.star {
  color: #f3b519;
  font-size: 18px;
}

.pro:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

#banner {
  width: 100%;
  height: 55vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(./img/products/banner.png);
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  text-align: center;
}

#banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.banner-content h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 2px;
  color: wheat;
}

.banner-content p {
  font-size: 18px;
  margin-bottom: 25px;
  color: bisque;
}

.explore {
  padding: 14px 40px;
  background: #fff;
  color: #222;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.explore:hover {
  background: #088178;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
#sm-banner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin: 40px 0;
}

#sm-banner .banner-box {
  flex: 1;
  min-width: 280px;
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background-image: url(./img/products/smbanner.jpeg);
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  position: relative;
}

#sm-banner .banner-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

#sm-banner .banner-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

#sm-banner h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

#sm-banner p {
  font-size: 16px;
  margin-bottom: 15px;
}

#sm-banner .explore {
  padding: 10px 25px;
  background: #fff;
  color: #222;
  font-weight: 600;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#sm-banner .explore:hover {
  background: #088178;
  color: #fff;
}

#banner-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 80px;
  gap: 20px;
}

#banner3,
#banner4,
#banner5 {
  flex: 1;
  min-width: 30%;
  height: 30vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-size: cover;
  background-position: center;
  padding: 20px;
  margin-bottom: 20px;
  color: bisque;
  cursor: pointer;
}

#banner3 {
  background-image: url(img/products/b7.jpg);
}
#banner4 {
  background-image: url(img/products/b4.jpg);
}
#banner5 {
  background-image: url(img/products/b18.jpg);
}

#banner3 h2,
#banner4 h2,
#banner5 h2 {
  font-weight: 1000;
  font-size: 22px;
  color: ghostwhite;
}

#banner3 h3,
#banner4 h3,
#banner5 h3 {
  font-weight: 800;
  font-size: 15px;
  color: #ec544e;
}
#news-letter {
  background: #0a1d3a;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  flex-wrap: wrap;
}

#news-letter h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

#news-letter p {
  font-size: 16px;
  color: #ccc;
}

#news-letter p span {
  color: yellow;
}

#news-letter .form {
  display: flex;
  min-width: 320px;
}

#news-letter input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  outline: none;
}

#news-letter button {
  background: #088178;
  color: #fff;
  border: none;
  padding: 12px 25px;
  cursor: pointer;
}

footer {
  margin-top: 30px;
  background: #118d85;
  color: #fff;
  padding: 30px 70px;
  display: flex;
  flex-direction: column; /* upar logo, neeche columns */
  gap: 20px;
}

.footer-top {
  text-align: left;
}

.footer-top img {
  max-width: 140px;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

footer h4 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #ffffff;
}

footer p,
footer a {
  font-size: 15px;
  color: #ffffff;
  margin-bottom: 10px;
  display: block;
  transition: color 0.3s;
}

footer a:hover {
  color: #05524d;
}

footer .icon {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

footer .icon i {
  font-size: 18px;
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

footer .icon i:hover {
  color: #073230;
  transform: scale(1.2);
}

footer .copy-right {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  font-size: 14px;
  color: #ffffff;
}
/* SHOP Page  */
#page-header {
  background-image: url(img/products/b1.jpg);
  min-height: 40vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 14px;
}

#page-header h2,
#page-header p {
  color: #fff;
}

#pagination {
  text-align: center;
}
#pagination a {
  text-decoration: none;
  background-color: #088178;
  padding: 15px 20px;
  border-radius: 4px;
  color: #fff;
  font-weight: 600;
}
#pagination a i {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

/* Singlw product */
#product-details .single-pro-img {
  width: 40%;
}
.small-img-group {
  display: flex;
  justify-content: space-between;
}
.small-img-col {
  flex-basis: 24%;
  cursor: pointer;
}
.small-img-col img {
  width: 100%;
  border-radius: 5px;
  transition: transform 0.3s ease, opacity 0.3s ease, border 0.3s ease;
  cursor: pointer;
}

/* Hover Effect */
.small-img-col img:hover {
  transform: scale(1.05);
  opacity: 0.5;
  border: 2px solid #088178;
}

.small-img-col img.active {
  border: 2px solid #088178;
  opacity: 0.7;
}

#product-details {
  display: flex;
  margin-top: 20px;
}

#product-details .single-pro-details {
  width: 50%;
  padding-top: 30px;
  margin-left: 40px;
}

#product-details .single-pro-details h4 {
  padding: 40px 0 20px 0;
}

#product-details .single-pro-details h2 {
  font-size: 26px;
}
#product-details .single-pro-details select {
  display: block;
  padding: 5px 10px;
  margin-bottom: 10px;
}
#product-details .single-pro-details input {
  width: 50px;
  height: 47px;
  padding-left: 10px;
  font-size: 16px;
  margin-right: 10px;
}
#product-details .single-pro-details input:focus {
  outline: none;
}

#product-details .single-pro-details .button {
  background-color: #088178;
  color: #ffffff;
  border: 2px solid #088178;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 300;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 15px;
}

#product-details .single-pro-details .button:hover {
  background-color: #06665f;
  border-color: #06665f;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

#product-details .single-pro-details span {
  line-height: 25px;
}

/* Blog Page */
#page-header.blog-header {
  background-image: url("img/products/blog/b19.jpg");
  height: 40vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 14px;
}

#blog {
  padding: 100px 20px 0 20px;
}

#blog .blog-box {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  padding-bottom: 90px;
}

#blog .blog-img {
  width: 50%;
  margin-right: 40px;
}

#blog img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

#blog .blog-details {
  width: 50%;
}

#blog .blog-details a {
  text-decoration: none;
  font-size: 13px;
  color: #000;
  font-weight: 700;
  position: relative;
  transition: 0.3s ease;
}

#blog .blog-details a::after {
  content: "";
  width: 50px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 4px;
  right: -60px;
}

#blog .blog-details a:hover {
  color: #088178;
}

#blog .blog-details a:hover:after {
  background-color: #088178;
}

.blog-date {
  position: absolute;
  top: -45px;
  left: 0;
  font-size: 70px;
  font-weight: 700;
  color: #c9cbce;
  z-index: -1;
}

/* For responsive blog page */

@media (max-width: 768px) {
  #blog .blog-box {
    flex-direction: column;
  }
  #blog .blog-img,
  #blog .blog-details {
    width: 100%;
    margin-right: 0;
  }
  .blog-date {
    font-size: 40px;
    top: -30px;
  }
}

/* About Page */

#page-header.about-header {
  background-image: url("img/products/about/banner.png");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
  padding: 60px 20px;
}

#about-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

#about-head img {
  width: 50%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
}

#about-head div {
  flex: 1;
  padding-left: 20px;
}

#about-app {
  text-align: center;
  margin-top: 50px;
}

#about-app .video {
  width: 70%;
  max-width: 800px;
  margin: 30px auto 0 auto;
}

#about-app .video video {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.scrolling-text {
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

.scrolling-text p {
  display: inline-block;
  padding-left: 100%;
}

/* Mobile responsive fix */
@media (max-width: 768px) {
  #about-head {
    flex-direction: column;
    text-align: center;
  }
  #about-head img {
    width: 80%;
  }
  #about-head div {
    padding-left: 0;
  }
  #about-app h1 {
    font-size: 26px;
  }
  #about-head h2 {
    font-size: 26px;
  }
}

/* Contact Page */

#contact-details {
  display: flex;
  align-items: center;
  justify-content: center;
}

#contact-details .details {
  width: 40%;
}

#contact-details .details span,
#form-details form span {
  font-size: 12px;
}

#contact-details .details h2 {
  font-size: 26px;
  line-height: 35px;
  padding: 20px 0;
}

#contact-details .details h3 {
  font-size: 16px;
  padding-bottom: 15px;
}

#contact-details .details li {
  list-style: none;
  display: flex;
  padding: 10px 0;
}
#contact-details .details li i {
  font-size: 14px;
  padding-right: 22px;
}

#contact-details .details li p {
  margin: 0;
  font-size: 14px;
}

#contact-details .map {
  margin: 30px 0;
  width: 50%;
  height: 350px;
}
#contact-details .map iframe {
  border-radius: 4px;
  width: 100%;
  height: 100%;
}

#form-details {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin: 60px 0;
}

#form-details form {
  flex: 1;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 50px;
  gap: 15px;
}

#form-details form span {
  font-size: 14px;
  font-weight: 600;
  color: #c9cbce;
  text-transform: uppercase;
}

#form-details form h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

#form-details form input,
#form-details form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
}

#form-details form textarea {
  resize: none;
  height: 120px;
}

#form-details form button {
  padding: 12px 25px;
  background: #088178;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

#form-details form button:hover {
  background: #c9cbce;
  color: #000;
}

#form-details .people {
  flex: 1;
  min-width: 250;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-content: space-evenly;
  gap: 20px;
}

#form-details .people div {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 10px;
  background: #fafafa;
}

#form-details .people img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

#form-details .people p {
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

/* Cart Page */
#cart {
  overflow-x: auto;
}

#cart table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  white-space: nowrap;
}
#cart table img {
  width: 70px;
}

#cart table td:nth-child(1) {
  width: 100px;
  text-align: center;
}

#cart table td:nth-child(2) {
  width: 150px;
  text-align: center;
}

#cart table td:nth-child(3) {
  width: 250px;
  text-align: center;
}

#cart table td:nth-child(4),
#cart table td:nth-child(5),
#cart table td:nth-child(6) {
  width: 150px;
  text-align: center;
}

#cart table td:nth-child(5) input {
  width: 70px;
  padding: 10px 5px 10px 15px;
}

#cart table thead {
  border: 2px solid #e2e9e1;
  border-left: none;
  border-right: none;
}

#cart table thead td {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  padding: 18px 0;
}

#cart table tbody tr td {
  padding-top: 15px;
}

#cart table tbody td {
  font-size: 13px;
}

#cart-add {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#coupan {
  width: 50%;
  margin-bottom: 30px;
}

#coupan h3,
#Subtotal h3 {
  padding-bottom: 15px;
}

#coupan input {
  padding: 10px 20px;
  outline: none;
  width: 60%;
  margin-right: 10px;
  border: 1px solid #e2e9e1;
}

#coupan button,
#Subtotal button {
  background-color: #088178;
  color: white;
  padding: 10px 25px;
  border-radius: 3px;
  border-style: none;
}

#coupan button:hover,
#Subtotal button:hover {
  background-color: #05524d;
  transition: 0.3s ease;
}

#Subtotal {
  width: 50%;
  margin-bottom: 30px;
  border: 1px solid #e2e9e1;
  padding: 30px;
}

#Subtotal table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
}

#Subtotal table td {
  width: 50%;
  border: 1px solid #e2e9e1;
  padding: 10px;
  font-size: 13px;
}

/* For responsive */

@media (max-width: 992px) {
  #cart table {
    font-size: 14px;
  }

  #cart table img {
    width: 60px;
  }

  #cart-add {
    flex-direction: column;
    gap: 20px;
  }

  #coupan,
  #Subtotal {
    width: 100%;
  }

  #coupan input {
    width: 65%;
  }

  #coupan button {
    width: auto;
  }

  #Subtotal {
    padding: 20px;
  }
}

@media (max-width: 992px) {
  #cart table {
    font-size: 14px;
  }

  #cart table img {
    width: 60px;
  }

  #cart-add {
    flex-direction: column;
    gap: 25px;
  }

  #coupan,
  #Subtotal {
    width: 100%;
  }

  #coupan input {
    width: 65%;
  }

  #Subtotal {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  #cart {
    overflow-x: auto;
  }

  #cart table {
    min-width: 700px;
    border-spacing: 0;
  }

  #cart table td,
  #cart table th {
    white-space: nowrap;
    text-align: center;
  }

  #cart table td:nth-child(3) {
    width: 250px;
    white-space: normal;
    word-wrap: break-word;
  }

  #cart table td:nth-child(4),
  #cart table td:nth-child(5),
  #cart table td:nth-child(6) {
    width: 120px;
  }

  #cart table img {
    width: 55px;
  }

  #cart-add {
    flex-direction: column;
    align-items: stretch;
  }

  #coupan,
  #Subtotal {
    width: 100%;
  }

  #coupan input {
    width: 100%;
    margin-bottom: 10px;
  }

  #coupan button,
  #Subtotal button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  #cart table {
    min-width: 650px;
    font-size: 12px;
  }

  #cart table td:nth-child(3) {
    font-size: 13px;
  }

  #cart table img {
    width: 45px;
  }

  #coupan h3,
  #Subtotal h3 {
    font-size: 16px;
  }

  #Subtotal {
    padding: 15px;
  }

  #Subtotal table td {
    padding: 8px;
    font-size: 12px;
  }

  #coupan input {
    font-size: 13px;
    padding: 8px 10px;
  }

  #coupan button,
  #Subtotal button {
    padding: 10px;
  }
}

@media (max-width: 992px) {
  #contact-details {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  #contact-details .details,
  #contact-details .map {
    width: 100%;
  }

  #contact-details .map {
    margin-top: 20px;
    height: 300px;
  }

  #form-details {
    flex-direction: column;
    align-items: flex-start;
    margin: 40px 20px;
  }

  #form-details form {
    width: 100%;
    margin-left: 0;
  }

  #form-details .people {
    width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 480px) {
  #contact-details .details h2 {
    font-size: 20px;
    line-height: 28px;
  }

  #contact-details .details li {
    padding: 6px 0;
  }

  #form-details form input,
  #form-details form textarea {
    padding: 10px;
    font-size: 13px;
  }

  #form-details form button {
    width: 100%;
    padding: 12px;
  }

  #form-details .people div {
    flex-direction: column;
    text-align: center;
  }

  #form-details .people img {
    width: 70px;
    height: 70px;
  }

  #form-details .people p {
    font-size: 13px;
  }
}

@media (max-width: 799px) {
  #navbar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 300px;
    background: #e6f7f5;
    transition: 0.3s ease;
    z-index: 999;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    padding: 80px 0 0 10px;
  }

  #navbar.active {
    right: 0;
  }

  #navbar li {
    margin-bottom: 25px;
  }

  #mobile {
    display: flex;
    align-items: center;
  }

  #mobile i {
    color: #1a1a1a;
    font-size: 24px;
    padding-left: 20px;
    cursor: pointer;
    margin-left: 30px;
  }
  #close {
    display: block;
  }
  #lg-bag {
    display: none;
  }

  #hero {
    height: 70vh;
    padding: 0 80px;
    background-position: top 30% right 30%;
  }

  #hero h2 {
    font-size: 28px;
  }

  #hero h1 {
    font-size: 38px;
  }
  #banner {
    height: 40vh;
  }
  #news-letter .form {
    width: 70%;
  }
  #news-letter .text p {
    margin-bottom: 30px;
  }
  #product h2 {
    font-size: 26px;
  }
  #product p {
    font-size: 12px;
  }
  #feature .fe-services h2 {
    font-size: 26px;
  }
  #feature .fe-services p {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  footer {
    padding: 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-top {
    text-align: center;
  }

  .footer-top img {
    margin: 0 auto;
  }

  .copy-right {
    font-size: 12px;
  }
}

@media (max-width: 477px) {
  html,
  body {
    overflow-x: hidden;
  }

  #header {
    padding: 0 25px;
  }
  #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }

  #hero {
    margin-top: 80px;
    padding-top: 80px;
    padding-left: 20px !important;
    padding-right: 20px !important;
    background-position: center !important;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 22px;
    line-height: 30px;
  }

  #hero h4 {
    font-size: 16px;
  }

  #hero button {
    padding: 10px 22px;
    font-size: 14px;
  }

  /* Banner Container */
  #banner-container {
    padding: 0 15px !important;
  }
  #banner .banner-content .explore {
    font-size: 14px;
    padding: 8px 16px;
    margin-top: 10px;
    display: inline-block;
  }

  #banner .banner-content h2,
  #banner .banner-content p {
    font-size: 16px;
    line-height: 22px;
    text-align: center;
  }

  #banner .banner-content {
    text-align: center;
    padding: 10px;
  }
  /* Globally jis jis ko ye clss di hai */
  .section-p1 {
    padding: 20px !important;
  }

  /* Products */
  .pro {
    max-width: 100% !important;
  }

  .pro img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* Small Banner */
  #sm-banner {
    flex-direction: column;
    gap: 15px;
  }

  #sm-banner .banner-box {
    min-width: 100% !important;
    height: 30vh;
  }

  /* Newsletter */
  #news-letter {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

  #news-letter .form {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  #news-letter input,
  #news-letter button {
    width: 100%;
  }

  /* Footer */
  footer {
    padding: 20px;
    text-align: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-top img {
    margin: 0 auto;
  }

  .copy-right {
    font-size: 12px;
  }
  .follow .icon {
    margin-left: 75px;
  }
}

@media (max-width: 768px) {
  #product-details {
    flex-direction: column; /* row ki jagah column */
    align-items: center;
    margin: 20px 0;
  }

  #product-details .single-pro-img,
  #product-details .single-pro-details {
    width: 100%; /* pura width le */
    margin-left: 0;
  }

  .small-img-group {
    justify-content: center; /* thumbnails center me aa jaye */
    gap: 10px; /* space between images */
  }

  .small-img-col {
    flex-basis: 22%; /* chhoti images ek row me fit ho */
  }

  #product-details .single-pro-details {
    padding-top: 20px;
    text-align: center;
  }

  #product-details .single-pro-details input {
    margin: 10px auto;
    display: block;
  }

  #product-details .single-pro-details .button {
    margin: 15px auto;
    display: block;
  }
}
