/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Top Offer Bar */
.top-offer {
  background: #015b52; /* dark green */
  color: #efc253; /* golden */
  text-align: center;
  padding: 5px;
  font-size: 14px;
  font-weight: 500;
}

/* ====== Sticky Header ====== */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 2px 20px;
  position: sticky;    /* ✅ Header scroll par bhi upar rahe */
  top: 0;
  z-index: 1000;       /* ✅ sabse upar dikhne ke liye */
}

/* Logo */
.logo img {
  height: 50px;
}

/* ====== Search Bar ====== */
.search-bar {
  flex: 1;
  display: flex;
  max-width: 700px;
  margin: 0 40px;
  border-radius: 25px;
  background: rgba(5, 54, 49, 0.11);
  overflow: hidden;
}

.search-bar input {
  width: 100%;
  padding: 5px 14px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: #333;
}

.search-bar button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0 16px;
  color: #797b7d;
  cursor: pointer;
  font-size: 16px;
  position: relative;
}

.search-bar button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: #b5b5b5;
}
.search-bar button:hover {
  color: #075e54;
}

/* ====== Header Icons ====== */
.header-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-icons a {
  display: flex;
  align-items: center;
  padding: 8px;
  font-size: 15px;
  color: #5f5f5f;
  text-decoration: none;
  gap: 8px;
}

.header-icons a i {
  font-size: 20px;
  color: #5f5f5f;
}
.header-icons a i:hover {
  color: #075e54;
}
.header-icons a:hover {
  color: #075e54;
}

/* Vertical line */
.header-icons a:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 18px;
  background: #666;
  opacity: 0.5;
  margin-left: 6px;
  margin-right: -6px;
  vertical-align: middle;
}

/* ====== Sticky Navigation ====== */
.main-nav {
  background: #fff;
  border-top: 1px solid #d9d9d9;
  padding: 0 20px;
  position: sticky;   /* ✅ Menu bhi fixed ho */
  top: 55px;          /* header ke height ke hisaab se adjust */
  z-index: 999;
}

.main-nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1200px;
  width: 100%;
}

.main-nav ul li a {
  text-decoration: none;
  color: #3d3c3c;
  font-weight: 600;
  font-size: 15px;
  display: block;
  padding: 14px 18px;
  transition: color 0.3s ease;
}

.main-nav ul li a:hover {
  color: #075e54;
}

/* ====== Decorative Banner (Sticky) ====== */
.menu-decor {
  position: sticky;   /* ✅ scroll par bhi niche chipka rahega */
  top: 95px;         /* 👈 nav ke height ke hisaab se adjust kare
                         (header ~65px + nav ~50px = 115px) */
  z-index: 998;       /* nav ke thoda neeche layer me */
  margin-bottom: -30px;  /* purana spacing agar chahiye */
}

.menu-decor img {
  width: 100%;
  display: block;
  pointer-events: none; /* click block na kare */
}


.swiper {
  width: 100%;
}
.swiper-slide img {
  width: 100%;
  height: auto;       /* responsive image */
  display: block;
}

.custom-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.custom-pagination .line {
  width: 40px;
  height: 6px;
  border-radius: 3px;
  background: #b28c5b;      /* inactive color */
  position: relative;
  overflow: hidden;
  cursor: pointer;          /* clickable */
}

/* progress bar div jo JS se inject hoga */
.custom-pagination .line-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #186057;      /* active fill */
  transition: width 3s linear;
}


/* Top Info Banner Section */
.banner-container {
  display: flex;
  gap: 40px;                /* box ke beech ka gap kam kiya */
  flex-wrap: wrap;
  justify-content: center;
  margin: 15px auto;
}

.banner-box {
  display: flex;
  align-items: center;
  background: #c19a3c;       /* golden brown */
  color: #003322;            /* dark green */
  padding: 4px 18px;         /* same rakhte hain */
  border-radius: 40px;       /* rounded shape */
  font-size: 14px;           /* same text */
  font-weight: 500;
  gap: 18px;
  white-space: nowrap;
  min-width: 400px;          /* 👈 sirf width badhai */
  justify-content: center;   /* text aur icon center align */
}


.banner-box .material-icons {
  font-size: 20px;           /* icon chhota */
  line-height: 1;
}

.banner-box strong {
  font-weight: 600;
  margin-left: -14px; 
}

/* ===== Kids Collection ===== */
.kids-collection {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.kids-collection h2 {
  font-size: 28px;
  color: #075e54;
  margin-bottom: 30px;
  font-weight: 700;
}

.kids-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.kid-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.kid-card:hover {
  transform: translateY(-5px);
}

/* 👇 Image height responsive + cap at 600–700px */
.kid-card img {
  width: 100%;
  height: auto;          /* natural aspect ratio maintain */
  max-height: 700px;     /* upper limit */
  min-height: 400px;     /* optional: ensures decent height on small imgs */
  object-fit: cover;     /* crop if needed to fill width */
  display: block;
}

.kid-card h3 {
  margin: 15px 0 5px;
  font-size: 18px;
  color: #333;
}

.kid-card p {
  margin-bottom: 20px;
  font-size: 14px;
  color: #015b52;
}
/* ===== Blessings Banner ===== */
.blessings-banner {
  position: relative;
  background: #f8e9d0;
  margin: 60px auto;
  padding: 0;
  border-radius: 16px;
  max-width: 1300px;
  height: auto;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  border: 2px solid #f2c46d;
  overflow: hidden;
}

/* ===== Large Floating Sparkle / Stars ===== */
.blessings-banner::before,
.blessings-banner::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(255,255,255,0.9) 6px, transparent 6px),
    radial-gradient(circle, rgba(255,255,255,0.8) 5px, transparent 5px),
    radial-gradient(circle, rgba(255,255,255,0.7) 4px, transparent 4px);
  background-size: 100px 100px; /* large sparkle */
  animation: sparkleFloat 6s linear infinite;
  opacity: 0.8;
}

.blessings-banner::after {
  background-size: 120px 120px; /* variation */
  animation-delay: 3s;
}

/* Floating + twinkle animation */
@keyframes sparkleFloat {
  0% {
    transform: translate(0,0) scale(0.8) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translate(10%, -10%) scale(1) rotate(15deg);
    opacity: 1;
  }
  50% {
    transform: translate(-10%, 10%) scale(0.9) rotate(-10deg);
    opacity: 0.5;
  }
  75% {
    transform: translate(15%, -5%) scale(1.05) rotate(20deg);
    opacity: 0.9;
  }
  100% {
    transform: translate(0,0) scale(0.8) rotate(0deg);
    opacity: 0.3;
  }
}

/* ===== Flex Wrapper ===== */
.banner-inner {
  display: flex;
  flex-direction: column; /* mobile stack */
  align-items: center;
  text-align: center;
  gap: 15px;
}

/* ===== Left / Right Text Areas ===== */
.banner-left,
.banner-right {
  flex: 1;
  padding: 15px 10px; /* minimal side padding */
}

.banner-left h3,
.banner-right h3 {
  font-size: 20px;
  font-weight: 600;
  color: #3c2b1a;
  margin-bottom: 8px;
}

.banner-left h2,
.banner-right h2 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  letter-spacing: 1px;
}

/* ===== Center Image ===== */
.banner-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-center img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: contain;
}

/* ===== Tablet/Desktop (≥768px) ===== */
@media (min-width: 768px) {
  .banner-inner {
    flex-direction: row; /* 3-column layout */
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .banner-left,
  .banner-right,
  .banner-center {
    flex: 1;
    padding: 10px;
  }

  .banner-left h3,
  .banner-right h3 {
    font-size: 22px;
  }
  .banner-left h2,
  .banner-right h2 {
    font-size: 32px;
  }
}

/* ===== Large Screens (≥1200px) ===== */
@media (min-width: 1200px) {
  .banner-left h3,
  .banner-right h3 {
    font-size: 26px;
  }
  .banner-left h2,
  .banner-right h2 {
    font-size: 40px;
  }
}



.footer-service-section {
  background-color: #053631;
  padding: 2.8rem;
  margin-top: -5rem;
  border-radius: 4px;
}
.footer-service-section .service-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.footer-service-section .service-wrapper .service-info {
  font-size: 1.6rem;
  color: #efc253;
  margin-bottom: 0;
}
.footer-service-section .service-wrapper .service-details {
  font-size: 1.4rem;
  font-weight: 400;
}
@media (max-width:1023px) {
  .footer-service-section .gy-4 {
    --bs-gutter-y: 2rem;
  }
  .footer-service-section .service-wrapper {
    justify-content: flex-start;
  }
}
@media only screen and (min-width: 767px) and (max-width: 1200px) {
  .footer-service-section .service-wrapper {
    align-items: flex-start;
  }
}



