/* === GLOBAL RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === BODY FONT === */
body {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
}



/* === NAVBAR === */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 12px 0;
  display: flex;
  justify-content: center;
  z-index: 1000;
  background: transparent;  /* stays transparent on top */
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Navbar when scrolled */
header.scrolled {
  background: rgba(255, 255, 255, 0.97);  /* visible white navbar */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* NAVBAR CONTENT */
.navbar {
  width: 90%;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* NAV LINKS */
.nav-left, .nav-right {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-mob {
    list-style:none;
    display:flex;
    align-items: center;
    gap: 40px;
}

@media only screen and (max-width: 800px) {
    .nav-left, .nav-right {
        display: none;
    }
}

.nav-left a, .nav-right a {
  text-decoration: none;
  color: #fff;   /* white text by default on slider */
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1.5px;
  transition: color 0.3s ease;
}

/* Dark text after scroll */
header.scrolled .nav-left a,
header.scrolled .nav-right a {
  color: #333;
}

/* HOVER EFFECTS */
.nav-left a:hover, .nav-right a:hover {
  color: #e63946;
}

/* DROPDOWN MENU */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  list-style: none;
  padding: 10px 0;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
  border-radius: 5px;
  min-width: 150px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 10px 20px;
}

.dropdown-menu li a {
  color: #333;
  font-size: 14px;
}

.dropdown-menu li a:hover {
  color: #e63946;
}

.logo {
  position: relative;
  width: 90px;   /* same width as the logo */
  height: 90px;  /* same height as the logo */
}

/* All logos are positioned absolutely and centered */
.logo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}

/* Default: show light logo, hide dark logo */
.logo-light {
  opacity: 1;
  z-index: 2;
}

.logo-dark {
  opacity: 0;
  z-index: 1;
}

.hamburger{
    padding: 10px;
    font-size: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20vw;
}

.hamburger-dark{
    opacity: 0;
    color: black;
    z-index: 1;
    position: absolute;
}

.hamburger-light{
    opacity: 1;
    color: white;
    z-index:2;
    position: absolute;
}


/* When scrolled: hide light logo, show dark logo */
header.scrolled .logo-light{
  opacity: 0;
}

header.scrolled .logo-dark {
  opacity: 1;
}


header.scrolled .hamburger-light{
  opacity: 0;
}

header.scrolled .hamburger-dark{
  opacity: 1;
}




/* BOOK A TABLE BUTTON */
.book-btn {
  background: #e63946;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.3s ease;
}

.book-btn:hover {
  background: #b91c1c;
}

/* === SLIDER === */
.slider {
  position: relative;
  margin-top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
}

.slides img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: none;
}

.slides img.active {
  display: block;
}

/* SLIDER ARROWS */
.arrows span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.arrows span:hover {
  background: rgba(0, 0, 0, 0.6);
}

.prev { left: 20px; }
.next { right: 20px; }


/* === ABOUT SECTION === */
.about {
  width: 90%;
  max-width: 1200px;
  margin: 80px auto;
  text-align: center;
}

.about-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  font-weight: 500;
  margin-bottom: 20px;
}

/* BUTTON STYLE */
.learn-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 22px;
  border: 2px solid #e63946;
  text-decoration: none;
  color: #e63946;
  font-weight: 600;
  font-size: 15px;
  border-radius: 4px;
  transition: 0.3s ease;
}

.learn-btn:hover {
  background: #e63946;
  color: #fff;
}

/* TWO COLUMN SECTION */
.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.about-image img {
  width: 450px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
  max-width: 500px;
  text-align: left;
}

.about-text h4 {
  font-size: 14px;
  font-weight: 600;
  color: #3a5a40; /* Achaar Ghar green */
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.about-text h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 15px;
  color: #222;
}

.about-text p {
  font-size: 17px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

/* === BUY ONLINE SECTION === */
.buy-online {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 100px auto;
  gap: 50px;
  padding: 40px 20px;
}

/* LEFT CONTENT */
.buy-left {
  flex: 1;
}

.buy-left h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #222;
}

.buy-left h4 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 20px;
}

.buy-left p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.buy-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #e63946;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.buy-btn:hover {
  background: #b91c1c;
}

/* CENTER PRODUCT IMAGE */
.buy-center {
  flex: 1;
  text-align: center;
}

.AchaarGharProduct{
    size: 500px;
}

.buy-center img {
  width: 300px;
  max-width: 100%;
}

/* RIGHT SIDE INFO */
.buy-right {
  flex: 1;
}

.buy-right .mini-image {
  width: 100px;
  margin-bottom: 10px;
}

.buy-right h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.buy-right ul {
  list-style: none;
  padding: 0;
}

.buy-right ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  color: #444;
  font-size: 15px;
  line-height: 1.5;
}

.buy-right ul li::before {
  content: "⚬";  /* bullet point styled like in screenshot */
  position: absolute;
  left: 0;
  color: #e63946;
  font-weight: bold;
}

/* === TESTIMONIAL SECTION === */
.testimonial-section {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
}

.testimonial-section h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 40px;
  color: #3a5a40; /* Achaar Ghar green */
}

/* === SLIDER === */
.testimonial-slider {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  height: auto;
}

/* === TESTIMONIAL CARDS === */
.testimonial-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  display: none; /* ✅ hides all cards by default */
}

.testimonial-card.active {
  display: block; /* ✅ only active card is visible */
}

/* === CARD ELEMENTS === */
.testimonial-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 5px;
}

.platform {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
  display: block;
}

.stars {
  color: #e63946; /* Achaar Ghar red for ratings */
  font-size: 18px;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 16px;
  color: #444;
  line-height: 1.5;
}

/* === DOTS === */
.dots {
  margin-top: 20px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  transition: background 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background: #e63946;
}

/* === LOCATIONS SECTION === */
.locations-section {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  font-family: 'Montserrat', sans-serif;
}

.locations-section h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 50px;
  color: #222;
}

/* === CARD CONTAINER === */
.locations-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* === LOCATION CARD === */
.location-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  width: 320px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.location-card h3 {
  padding: 15px;
  font-size: 18px;
  font-weight: 700;
  color: #e63946; /* Achaar Ghar red */
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* === HOVER EFFECT === */
.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.15);
}
/* === FOOTER === */
.footer {
  background: #111;
  color: #fff;
  padding: 50px 20px 20px;
  font-family: 'Montserrat', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* === LOGO === */
.footer-logo img {
  width: 180px;
  margin-bottom: 20px;
}

/* === CONTACT INFO === */
.footer-contact h3, .footer-extra h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #e63946; /* Achaar Ghar red */
}

.footer-contact p {
  font-size: 14px;
  line-height: 1.6;
  margin: 5px 0;
}

/* === SOCIAL ICONS === */
.social-icons {
  margin-top: 15px;
}

.social-icons a img {
  width: 35px;
  margin-right: 15px;
  transition: transform 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.1);
}

/* === APP DOWNLOAD BUTTONS === */
.app-buttons img {
  width: 120px;
  margin: 8px 0;
  display: block;
}

/* === BOTTOM BAR === */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #ccc;
}

.footer-bottom a {
  color: #e63946;
  text-decoration: none;
  margin: 0 5px;
}

.footer-bottom span {
  color: #3a5a40; 
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;   
  margin: 0 auto;
  gap: 40px;         
}

.footer-logo,
.footer-contact,
.footer-extra {
  flex: 1;
  min-width: 220px;   
  text-align: left;
}

/* === RESPONSIVE NAVBAR === */
.navbar-mob {
    display: none;
    width: 100vw;
    flex-direction: column;
}

.navbar-mob-items {
    display: flex;
    justify-content: space-around;
    align-items:center;
    width: 100vw;
}

.navbar-mob-items .book-btn{
    width: 20vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mob-dropdown  a{
  text-decoration: none;
  color: #fff;   /* white text by default on slider */
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.mob-dropdown a {
    width: 100%;
    padding: 8px;
    display: flex;
    align-items: center;
    color: black;
    border-bottom: 1px solid #D3D3D3;
    
}
.mob-dropdown { 
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 10px;
    background-color: white;
}


@media (max-width: 800px) {
  .navbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  @media (max-width: 550px) {
      .navbar {
          display: none;
      }

      .navbar-mob {
          display: flex !important;
      };
  }

/* NAV LINKS */
.nav-left, .nav-right {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-left a, .nav-right a {
  text-decoration: none;
  color: #fff;   /* white text by default on slider */
  font-weight: 500;
  font-size: 8px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
/* DROPDOWN MENU */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  list-style: none;
  padding: 10px 0;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
  border-radius: 5px;
  min-width: 100px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 2px 20px;
}

.dropdown-menu li a {
  color: #333;
  font-size: 7px;
}

.dropdown-menu li a:hover {
  color: #e63946;
}

  .nav-left a:hover, .nav-right a:hover {
    color: #e63946;
  }

  /* Hamburger menu */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
  }

  /* Hamburger active state */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Show navigation links when active */
  .nav-left.active, .nav-right.active {
    display: flex;
  }

  /* Footer adjustments */
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .footer-logo,
  .footer-contact,
  .footer-extra {
    min-width: 100%;
    text-align: center;
  }

  /* About section adjustments */
  .about-content {
    flex-direction: column;
    gap: 30px;
  }

  .about-image img {
    width: 100%;
    max-width: 300px;
  }

  .about-text {
    text-align: center;
  }

  /* Buy online section adjustments */
  .buy-online {
    flex-direction: column;
    gap: 30px;
    padding: 20px;
  }

  .buy-center img {
    width: 100%;
    max-width: 250px;
  }

  /* Testimonial section adjustments */
  .testimonial-slider {
    max-width: 100%;
  }

  .testimonial-card {
    padding: 20px;
  }

  /* Locations section adjustments */
  .locations-container {
    flex-direction: column;
    gap: 20px;
  }

  .location-card {
    width: 100%;
  }

  /* Slider adjustments */
  .slider {
    height: 70vh;
  }

  .slides img {
    height: 70vh;
  }

  /* Buttons */
  .book-btn, .buy-btn, .learn-btn {
    font-size: 12px;
    padding: 8px 16px;
  }
}
