* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Georgia", serif;
  color: #111;
  background-color: #fff;
  overflow-x: hidden;
}

/* --- Navbar --- */
header {
  width: 100%;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  border-bottom: 1px solid #eee;
  transition: box-shadow 0.3s ease;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-left a,
.nav-right a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav-left a:hover,
.nav-right a:hover {
  color: #555;
}

.logo {
   
    
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 1px;
  /* background-image: url("img/logo.png"); */
  /* background-size: cover; */
}

.logo img {
  height: 40px;
  width: auto;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #000;
  margin: 3px 0;
  transition: 0.3s;
}

/* --- Hero Section --- */
/* --- Hero Section --- */
.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* full screen height */
  overflow: hidden;
  background-color: #f4f2ec;
}

/* Banner image setup */
.hero-banner img {
  width: 100%;
  height: 90vh;
  object-fit: cover;         /* image full area fill kare bina distort hue */
  object-position: center;   /* image center aligned rahe */
  display: block;
  filter: brightness(70%);
}

/* Overlay for readability */
.hero::before {
   content: "";
  position: absolute;
  inset: 1;
  background: rgba(0, 0, 0, 0.45); /* 🔥 darker overlay for white backgrounds */
  z-index: 1;
}

/* Content styling */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 60px;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-content p {
  font-size: 18px;
  color: #f5f5f5;
  line-height: 1.6;
  margin-bottom: 25px;
}

.hero-content button {
  background-color: #e3dbcf;
  color: #000;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-content button:hover {
  background-color: #000;
  color: #fff;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 45px;
  }
  .hero-content p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 80vh;
  }
  .hero-content h1 {
    font-size: 35px;
  }
  .hero-content p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 70vh;
  }
  .hero-content h1 {
    font-size: 26px;
  }
  .hero-content p {
    font-size: 14px;
  }
  .hero-content button {
    padding: 10px 20px;
    font-size: 14px;
  }
}


/* --- Overlay (light fade for readability) --- */
/* .hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
} */

/* --- About Section --- */
.about-section {
  background-color: #f4f2ec;
  padding: 80px 0;
}

.about-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  padding: 0 40px;
}

/* Left image */
.about-image {
  flex: 1 1 500px;
}

.about-image img {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  /* height: 500px; */
  height: auto;
}

/* Right content */
.about-content {
  flex: 1 1 500px;
  color: #1a1a1a;
}

.about-content h2 {
  font-size: 50px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 10px;
}

.about-content h3 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 25px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  list-style: none;
  margin-top: 10px;
  margin-bottom: 30px;
}

.features li {
  font-size: 16px;
  color: #000;
}

/* Button */
.btn {
  display: inline-block;
  text-decoration: none;
  color: #000;
  background: #e3dbcf;
  padding: 12px 24px;
  font-size: 14px;
  border-radius: 2px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: black;
  color: white;
}

/* --- Shade Finder Section --- */
.shade-finder-section {
  background-color: #f7f6f4;
  text-align: center;
  padding: 120px 20px;
  position: relative;
  min-height: 800px;
  font-family: 'Georgia', serif;
  overflow: hidden;
}

.shade-content {
  max-width: 700px;
  margin: 220px auto;
  z-index: 10;
  /* position: relative; */
}

.shade-content h1 {
  font-size: 3rem;
  color: #111;
  margin-bottom: 20px;
  font-weight: 400;
}

.shade-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin: 0 auto 40px;
  max-width: 500px;
}

.get-started-btn {
  background-color: #e0d9d0;
  color: #333;
  border: none;
  padding: 12px 25px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s;
  font-family: Arial, sans-serif;
  font-weight: bold;
  border-radius: 4px;
}

.get-started-btn:hover {
  background-color: #131212;
  color: #fff;
}

/* --- Image Container --- */
.shade-images {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.shade-image {
  position: absolute;
}

.shade-image img {
  display: block;
  object-fit: cover;
  border: none;
  outline: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}

/* Image Sizes */
.image-style-1 { width: 200px; height: 230px; }
.image-style-2 { width: 200px; height: 250px; }
.image-style-3 { width: 280px; height: 320px; }
.image-style-4 { width: 220px; height: 260px; }
.image-style-5 { width: 200px; height: 250px; }

/* Image Positions */
.top-center { top: 80px; left: 50%; transform: translateX(-50%); }
.left { top: 250px; left: 5%; }
.right { top: 250px; right: 5%; }
.bottom-left { bottom: 70px; left: 20%; }
.bottom-right { bottom: 100px; right: 25%; }

/* --- Press Section (Image Slider) --- */
.press-section {
  background: linear-gradient(135deg, #f3ede5, #e9e3da);
  padding: 50px 0;
  overflow: hidden;
}

.press-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.press-track {
  display: flex;
  width: calc(200%);
  animation: scrollBrands 25s linear infinite;
  gap: 60px;
}

.press-track img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.4s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.press-track img:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

/* Animation */
@keyframes scrollBrands {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .press-track img {
    width: 120px;
    height: 120px;
  }
}




/* --- Featured Section --- */
.featured-section {
  background: #f8f6f1;
  padding: 60px 30px;
  font-family: "Georgia", serif;
}

.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  gap: 20px;
}

.featured-header h2 {
  font-size: 2rem;
  font-weight: 600;
}

.featured-tabs {
  display: flex;
  gap: 15px;
}

.featured-tabs .tab {
  border: none;
  background: transparent;
  font-size: 1rem;
  cursor: pointer;
  padding: 8px 15px;
  border-radius: 5px;
  transition: 0.3s ease;
}

.featured-tabs .tab.active,
.featured-tabs .tab:hover {
  background: #000;
  color: #fff;
}

.shop-all {
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.shop-all:hover {
  background: #e9e3da;
  color: black;
}

/* --- Product Grid --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.product-card {
  position: relative;
  background: #e9e3da;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

/* --- Image --- */
.product-card img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  display: block;
}

/* --- Badge --- */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.9rem;
  font-weight: 900;
  color: black;
}

/* --- Product Info --- */
.product-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 15px;
  background-color: #e9e3da;
}

.product-info h3 {
  font-size: 1rem;
  margin: 0;
  color: #945401;
}

.product-info p {
  font-size: 0.9rem;
  color: #867257;
  margin-top: 3px;
}

.price {
  font-size: 1rem;
  font-weight: 500;
  color: #000;
}


/* --- Quality Section --- */
.quality-section {
  background-color: #f7f6f3;
  padding: 100px 8%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  font-family: 'Georgia', serif;
}

.quality-title {
  flex: 1 1 100%;
  margin-bottom: 50px;
}

.quality-title h2 {
  font-size: 3rem;
  font-weight: 400;
  color: #000;
  line-height: 1.1;
}

.quality-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
}

.quality-card {
  flex: 1 1 30%;
  text-align: left;
  color: #111;
}

.quality-card img {
  width: 100%;
  height: 70vh;
  filter: grayscale(100%);
  border-radius: 2px;
  margin-bottom: 20px;
  object-fit: cover;
}

.quality-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.quality-card p {
  font-size: 0.9rem;
  color: #222;
  line-height: 1.6;
}

.quality-btn {
  background-color: transparent;
  color: transparent;
  border: none;
  padding: 10px 25px;
  margin-top: 15px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.3s;
}

.quality-card:hover button { 
  background-color: #e2dcd2;
  color: black;
  transition: 0.5s;
}

.quality-card button:hover{
  background-color: black;
  color: white;
}

/* --- Sustainability Section --- */
.sustainability-section {
  background-color: #f7f6f4;
  background-image: url("img/Gemini_Generated_Image_12c7tv12c7tv12c7.png");
  background-size: cover;
  background-position: center;
  padding: 100px 8%;
  font-family: 'Georgia', serif;
  min-height: 65vh;
  display: flex;
  align-items: center;
}

.sustainability-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.sustainability-text {
  color: #111;
  width: 40%;
  /* background: rgba(255, 255, 255, 0.8); */
  padding: 40px;
  border-radius: 5px;
}

.sustainability-text h4 {
  font-size: 2rem;
  letter-spacing: 1px;
  color: #333;
  margin-bottom: 20px;
}

.sustainability-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #000;
  margin-bottom: 25px;
}

.sustainability-btn {
  background-color: #f5f5f5;
  border: none;
  padding: 12px 25px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.sustainability-btn:hover {
  background-color: black;
  color: #d8cdbf;
}

/* --- Get The Look Section --- */
/* .get-look-section {
  background-color: #f4f2ec;
  text-align: center;
  padding: 100px 20px;
  font-family: 'Georgia', serif;
  position: relative;
  
}

.get-look-section h2 {
  font-size: 2.8rem;
  font-weight: 400;
  color: #000;
  margin-bottom: 60px;
}

.get-look-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 500px;
  width: 100%;
}

.look-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
} */

/* Product bubbles (left and right) */
/* .product-left,
.product-right {
  position: absolute;
  text-align: center;
  width: 160px;
}

.product-left img,
.product-right img {
  width: 140px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
} */

/* Left product position */
/* .product-left {
  left: -180px;
  top: 50%;
  transform: translateY(-50%);
} */

/* Right product position */
/* .product-right {
  right: -180px;
  top: 30%;
} */

/* Product text */
/* .product-info {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #111;
}

.product-info h4 {
  font-weight: 500;
  margin-bottom: 5px;
}

.product-info p {
  font-size: 0.8rem;
  color: #333;
} */

/* Add to Cart Button */
/* .add-btn {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #e7e0d4;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.3s ease;
}

.add-btn:hover {
  background-color: #d8cdbf;
} */

/* Subtitle (Vintage beauty) */
/* .look-subtitle {
  margin-top: 60px;
  font-size: 1.5rem;
  color: #000;
  font-style: italic;
} */


.cities-section {
  padding: 50px 5%;
  background-color: #f8f6f1;
      width: 100%;
    height: 614px;
}

.cities-section h2 {
      text-align: center;
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 34px;
}

.cities-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.cities-left {
  flex: 1;
  min-width: 300px;
}

.cities-left h3 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 900;
  color: #867257;
   font-family: "Georgia", serif;
}

.cities-left p {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
   font-family: "Georgia", serif;

}

.cities-right {
  flex: 2;
  min-width: 300px;
  overflow-x: auto;
  white-space: nowrap;
}

.city-slider {
  display: flex;
  gap: 10px;
  overflow-y: hidden;
}

.city-img {
       width: 202px;
    height: 422px;
  object-fit: cover;
  border-radius: 8px;
  filter: grayscale(100%);
  cursor: pointer;
  transition: filter 0.3s, transform 0.2s;
  flex-shrink: 0;
}

.city-img.active {
  filter: grayscale(0%);
  transform: scale(1.05);
  box-shadow: 0 0 8px rgba(255, 0, 0, 0.3);
}

.reviews-section {
  background-color: #f8f8f8;
  padding: 80px 20px;
  text-align: center;
  color: #333;
  font-family: "Georgia", serif;
}

/* === Section Heading === */
.reviews-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #111;
  font-weight: 700;
}

.reviews-subtitle {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #555;
}

/* === Review Container === */
.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* 👈 Perfect responsive grid */
  gap: 25px;
  justify-content: center;
  align-items: stretch;
}

/* === Review Card === */
.review-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* === Image === */
.review-img img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

/* === Text === */
.review-text {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
  font-style: italic;
}

.review-card h4 {
  font-size: 1rem;
  color: #111;
  margin-bottom: 5px;
}

.stars {
  color: gold;
  font-size: 1.1rem;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .reviews-section h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px){
  .reviews-section {
    padding: 60px 15px;
  }
  .reviews-section{
    margin-top: 0vh;
  }

  .reviews-container {
    grid-template-columns: 1fr; /* 👈 Each review full width on mobile */
  }

  .review-card {
    max-width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .review-text {
    font-size: 0.9rem;
  }

  .reviews-section{
    margin-top: 40vh;
  }

  .review-img img {
    width: 75px;
    height: 75px;
  }

  .reviews-section h2 {
    font-size: 1.8rem;
  }
}


/* --- Footer --- */
footer {
  background: linear-gradient(135deg, #f1e9dd91, #e0d9d050);
  color: #867257;
  padding: 60px 40px 30px;
  font-family: 'Georgia', serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 40px;
}

.footer-column h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #867257;
  letter-spacing: 1px;
}

.footer-column p {
  color: black;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #867257;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #444;
}

.contact-details p {
  margin-bottom: 8px;
  color: #867257;
}

.contact-details p a {
  color: #867257;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details p a:hover {
  color: black;
}

.social-icons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #fff;
  background: #333;
  padding: 10px;
  border-radius: 50%;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #e0d9d0;
  color: #111;
  transform: scale(1.1);
}

.footer-bottom {
  margin-top: 50px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  color: #867257;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}


/* ====== Responsive Design ====== */

/* Large Desktop */
@media (min-width: 1201px) {
  .left { left: 3%; }
  .right { right: 3%; }
  .bottom-left { left: 10%; }
  .bottom-right { right: 10%; }
}

/* Tablet */
@media (max-width: 1024px) {
  .woman-p {
    width: 85%;
    font-size: 1.1rem;
  }

  .woman-img img {
    width: 80px;
  }
  
  .about-content h2 {
    font-size: 40px;
  }
  
  .about-content h3 {
    font-size: 38px;
  }
  
  .hero-content h1 {
    font-size: 50px;
  }
  
  .quality-card img {
    height: 50vh;
  }
  
  .sustainability-text {
    width: 60%;
  }
}

/* Mobile */
@media (max-width: 900px) {
  header {
    padding: 15px 20px;
    flex-wrap: wrap;
  }
  
  .nav-left, .nav-right {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    text-align: center;
  }
  
  .nav-left.mobile-open, .nav-right.mobile-open {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
    padding: 0 20px;
  }
  
  .features {
    justify-content: center;
  }
  
  .about-content h2 {
    font-size: 30px;
  }
  
  .about-content h3 {
    font-size: 28px;
  }
  
  .about-image img {
    height: 400px;
  }

  .shade-finder-section {
    min-height: 600px;
    padding: 60px 20px;
  }

  .shade-content {
    margin: 135px auto 40px;
  }

  .shade-content h1 {
    font-size: 2.2rem;
  }

  .shade-content p {
    font-size: 0.95rem;
  }

  /* Hide side images */
  .left, .right, .bottom-left, .bottom-right {
    display: none;
  }

  /* Center main image */
  .top-center {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin-bottom: 30px;
  }

  .image-style-1 {
    width: 150px;
    height: 180px;
    margin: 0 auto;
  }
  
  .featured-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .featured-tabs {
    margin: 15px 0;
  }

  .product-card img {
    height: 50vh;
  }
  
  .quality-cards {
    flex-direction: column;
  }

  .quality-card {
    flex: 1 1 100%;
  }

  .quality-title h2 {
    font-size: 2.3rem;
    text-align: center;
  }
  
  .quality-card img {
    height: 50vh;
  }
  
  .sustainability-container {
    flex-direction: column;
    text-align: center;
  }

  .sustainability-text {
    flex: 1 1 100%;
    width: 100%;
    background: #fffff059;;
  }

  .sustainability-text p {
    font-size: 1.1rem;
  }
  
  .get-look-container {
    max-width: 100%;
  }

  .product-left,
  .product-right {
    position: static;
    display: inline-block;
    margin: 30px 10px;
  }

  .product-left img,
  .product-right img {
    width: 120px;
  }

  .look-subtitle {
    margin-top: 40px;
    font-size: 1.3rem;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .woman {
    padding: 30px 0;
  }

  .slider-woman {
    gap: 30px;
    animation: scroll 30s linear infinite;
  }

  .woman-p {
    width: 95%;
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 10px;
  }

  .woman-img {
    gap: 25px;
  }

  .woman-img img {
    width: 70px;
  }
  
  .shade-content h1 {
    font-size: 1.8rem;
  }
  
  .shade-content p {
    font-size: 0.9rem;
  }
  
  .get-started-btn {
    font-size: 0.8rem;
    padding: 10px 20px;
  }
  
  .product-card img {
    height: 40vh;
  }
  
  .woman-p {
    font-size: 0.9rem;
  }

  .woman-img img {
    width: 60px;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-content p {
    font-size: 14px;
  }
  
  .quality-title h2 {
    font-size: 1.8rem;
  }
  
  .nav-left a, .nav-right a {
    font-size: 16px;
    padding: 10px 0;
  }
   .reviews-section{
    margin-top: 55vh;
  }

}


@media (min-width: 344px) and (max-width: 375px) {
  .reviews-section{
    margin-top: 49vh;
  }
}

@media (min-width: 375px) and (max-width: 570px) {
  .reviews-section{
    margin-top: 60vh;
  }
}


















/* Google Rating Widget - Left Side */
.google-rating-widget {
  position: fixed;
  left: 0; /* 👈 right ki jagah left */
  bottom: 2rem;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0.75rem 0.75rem 0; /* 👈 corner left ke hisab se */
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  text-decoration: none;
  color: #374151;
  opacity: 1;
  visibility: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.google-rating-widget:hover {
  transform: translateX(5px); /* 👈 hover par thoda right move kare */
  box-shadow: 6px 6px 16px rgba(0, 0, 0, 0.25);
}

.rating-stars {
  color: #f5b041;
  font-size: 1.1rem;
  margin-right: 0.5rem;
}

.rating-text {
  font-size: 0.9rem;
  font-weight: 600;
}
h2{
        color: var(--secondary-color);
}

/* Social Fixed Bar */
.social-fixed-bar {
    position: fixed;
    top: 70%;
    right: 0; /* 👈 Left ko right me badla */
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.social-fixed-bar .icon {
    display: grid;
    place-items: center;
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    color: var(--light-color);
    transition: all 0.3s ease;
    transform: translateX(10px); /* 👈 direction ulta kiya */
    opacity: 0.8;
    border-radius: 5px 0 0 5px; /* 👈 corner shape right side ke hisab se */
    margin-bottom: 2px;
}
.social-fixed-bar .icon:hover {
     transform: translateX(0) scale(1.05);
    opacity: 1;
    width: 55px;
}

/* Beige theme for social icons */
.icon.email { background: #555; }
.icon.email:hover { background: #333; }
.icon.phone { background: var(--secondary-color); } 
.icon.phone:hover { background: #b49679; } 
.icon.whatsapp { background: #25D366; }
.icon.whatsapp:hover { background: #1da851; }
.icon.youtube { background: #FF0000; }
.icon.youtube:hover { background: #cc0000; }


/* ================================================= */
/* --- Responsive Media Queries (Finalized) --- */
/* ================================================= */

/* == Tablet (768px and up) == */
@media (min-width: 768px) {
    h1 { font-size: 3.2rem; }
    h2 { font-size: 2.5rem; }
    
    .slide-text h1 { font-size: 3.8rem; } 

    .top-bar-content { flex-wrap: nowrap; }

    .features { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
    .reasons-grid { grid-template-columns: repeat(2, 1fr); }
    
    .contact-content { 
        grid-template-columns: 1fr 1.2fr;
    }
    
    .footer-content { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    /* **FIX 2: Increased height for tablet view** */
    .about-video, .innovation-img, .sustainability-img {
        height: 500px;
    }
    

}

/* == Desktop (1024px and up) == */
@media (min-width: 1024px) {
    .menu-toggle { display: none; }

    /* Navigation display fix */
    .nav-search-container {
        display: block !important; 
        position: static;
        width: auto;
        height: auto;
        background: none;
        box-shadow: none;
        padding: 0;
        border-top: none;
    }
    
    .nav-links {
        display: flex !important;
        flex-direction: row;
    }

    .nav-links a {
        padding: 20px 15px;
        border-bottom: 0;
    }

    .slide-text h1 { font-size: 4.8rem; } 
    .slide-text p { font-size: 1.3rem; }

    .about-content { grid-template-columns: 1fr 1fr; }
    
    .different-content { grid-template-columns: 1fr 1fr; }
    .different-content .about-video { grid-row: 1; grid-column: 2; }
    
    .innovation-content { grid-template-columns: 1fr 1fr; }
    
    .sustainability-content { grid-template-columns: 1fr 1fr; }
    .sustainability-content .sustainability-img { grid-row: 1; grid-column: 2; }

    .product-grid { grid-template-columns: repeat(3, 1fr); }
    
    .industry-grid { grid-template-columns: repeat(3, 1fr); }
    
    .reasons-grid { grid-template-columns: repeat(3, 1fr); }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 2fr;
    }
    
    /* **FIX 2: Increased height for desktop view** */
    .about-video, .innovation-img, .sustainability-img {
        height: 550px;
    }
}

/* == Mobile Navigation (1023px and down) == */
@media (max-width: 1023px) {
    .menu-toggle { display: block; }

    .nav-search-container {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-light);
        box-shadow: 0 10px 10px rgba(0,0,0,0.3);
        padding-top: 10px;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-search-container.active {
        display: block;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-links a {
        padding: 15px 20px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: auto;
        border-radius: 0;
        background: var(--primary-color); 
        border: 0;
    }
    
    .dropdown-menu a {
        padding-left: 40px; 
        border-bottom-color: var(--border-color);
    }
    
    .dropdown:hover .dropdown-menu {
        display: none !important; 
    }
    
    .dropdown.open .dropdown-menu {
        display: block !important;
    }
    
    /* **FIX 2: Reduced height for small mobile view** */
    .about-video, .innovation-img, .sustainability-img {
        height: 350px;
    }
    .product-img {
        height: 300px;
    }
}











/* Dropdown Container */
.dropdown {
    position: relative;
}

/* Dropdown Button */
.drop-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Dropdown Menu (Hidden Default) */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.2);
    z-index: 200;
}

/* Links inside dropdown */
.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 15px;
    color: #222;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: #f3f3f3;
    color: #c2976b;
}

/* Desktop Hover Open */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Mobile Version */
@media (max-width: 768px) {
    .drop-btn {
        width: 100%;
        justify-content: space-between;
        padding: 12px 0;
        color: #fff;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: transparent;
        padding: 0;
    }

    .dropdown-menu a {
        color: #fff;
        border-bottom: 1px solid #333;
        padding: 12px 0;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }
}
