/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= BODY ================= */
body {
  font-family: "Poppins", sans-serif;
  /* background: #a1cee1; */
  overflow-x: hidden;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  /* height: 100vh; */
  min-height: 100vh;
  /* background: #a1cee1; */
  /* overflow: hidden; */
}

/* ================= HERO CONTENT ================= */
.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 170px 120px 260px; /* more bottom space for marquee */
  transform: scale(1.15);
  transform-origin: center top;
}

/* ================= LEFT ================= */
.hero-left {
  width: 50%;
  position: relative;
}

/* ================= LOGO + BUTTON ================= */
.hero-logo {
  position: absolute;
  top: -145px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 20;
}

.brand {
  font-size: 72px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}


/* PRODUCT AREA */
.product-area{
  position:relative;
  width:550px;
  height:550px;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* CIRCLE RING */
.circle-ring{
  position:absolute;
  width:520px;
  height:520px;
  border:18px solid rgba(255,255,255,0.5);
  border-radius:50%;
  z-index:1;
}

/* BOTTLE */
.hero-model{
  width:500px;
  height:450px;
  position:relative;
  z-index:2;
}

/* BADGES BASE */
.badge{
  position:absolute;
  width:140px;
  height:140px;
  background:#fff;
  border-radius:50%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  box-shadow:0 15px 40px rgba(0,0,0,0.15);
  z-index:3;
}

.badge strong{
  font-size:28px;
  color:#1e40af;
}

.badge span{
  font-size:13px;
  color:#1e3a8a;
}
.product-area{
  position: relative;
}

/* Handwritten text */
.cycle-note{
  position: absolute;
  top: -40px;
  left: 60px;
  font-family: caveat;

  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  color: #1f5fbf;

  transform: rotate(-8deg);
}

/* Curved arrow */
.note-arrow{
  position: absolute;
  width: 80px;
  height: 50px;
  border-bottom: 3px solid #1e56a0;
  border-left: 3px solid #1e56a0;
  border-radius: 0 0 0 100%;
  bottom: -45px;
  left: 40px;
  transform: rotate(-5deg);
}
/* EXACT POSITIONS LIKE 2ND IMAGE */

/* LEFT TOP */
.badge-1{
  left:-40px;
  top:120px;
}

/* LEFT BOTTOM */
.badge-2{
  left:-60px;
  bottom:90px;
}

/* TOP CENTER */
.badge-3{
  top:-50px;
  left:50%;
  transform:translateX(-50%);
}
.badge {
  position: absolute;
  width: 130px;   /* control size */
}

.badge img {
  width: 100%;
  height: auto;
  display: block;
}

.hero {
  padding: 30px 0 60px;
  position: relative;
}
.hero-top-center {
  text-align: center;
  margin-bottom: 30px; /* small gap before content */
}
.top-logo {
  width: 300px;       /* perfect balanced size */
  max-width: 80%;
  height: auto;
  display: block;
  margin: 0 auto 12px;
}
.buy-btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

/* LEFT CIRCLE */
.btn-circle {
  width: 48px;
  height: 48px;
  background: #1151ab;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* ARROW */
.arrow {
  color: #2fab59; /* light green arrow like your image */
  font-size: 28px;
  transform: translateY(-1px);
}

/* RIGHT RECTANGLE */
.btn-text {
  background: #1151ab;
  color: #ffffff;

  padding: 14px 28px;
 

  display: flex;
  align-items: center;
}
/* ================= RIGHT ================= */
.hero-right {
  width: 40%;
 
}

.hero-right h2 {
  font-size: 44px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-top: -100px;
 
}

.hero-right h2 span {
  color: #1151ab;
}

/* ================= TEXT + HAND DRAWN LINE ================= */
.hero-text {
  position: relative;
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.6;
  color: #1151ab;
  max-width: 420px;
  padding-bottom: 18px;
}


.text-underline {
  position: absolute;
  right: 0;          /* change if needed */
  bottom: -40px;    /* move up/down */
  width: 220px;     /* control size */
  height: auto;
}

@media (max-width: 768px) {

/* ================= HERO LAYOUT ================= */

.hero-content {
  flex-direction: column;
  padding: 60px 20px 80px;
  transform: none;            /* remove desktop scale */
}

.hero-left,
.hero-right {
  width: 100%;
}

/* ================= LOGO + BUTTON ================= */

.hero-top-center {
  margin-bottom: 40px;
}

.top-logo {
  width: 220px;
}

.buy-btn {
  font-size: 14px;
}

.btn-circle {
  width: 38px;
  height: 38px;
}

.btn-text {
  padding: 10px 20px;
  font-size: 14px;
}

/* ================= PRODUCT AREA ================= */

.product-area{
  width:100%;
  aspect-ratio:1/1;              /* perfect square */
  max-width:320px;
  margin:40px auto;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}



/* Circle responsive */
.circle-ring{
  width:110% !important;
  height:85% !important;
  border-width:6px;
}

/* Bottle responsive */
.hero .hero-model{
  width:75%;
  height:75%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero .hero-model canvas{
  width:100% !important;
  height:100% !important;
}
/* Center bottle */
.product-area {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= BADGES ================= */

.badge{
  width:22% !important;                    /* proportional */
  height:auto;
}



/* Adjust badge positions */
.badge-1{
  left:-5px !important;
  top:70px !important;
}


.badge-2{
  left:-10px !important;
  bottom:40px !important;
}

.badge-3{
  top:-5% !important;
  left:50% !important;
  transform:translateX(-50%);
}

  .badge img{
    width: 90px;        /* adjust based on your design */
    height: auto;
  }

/* ================= CYCLE NOTE ================= */

.cycle-note {
  font-size: 14px;
  top: -30px;
  left: 20px;
}

.note-arrow {
  width: 60px;
  height: 40px;
  bottom: -35px;
  left: 20px;
}

/* ================= RIGHT CONTENT ================= */

.hero-right {
  margin-top: 60px;
  text-align: center;
}

.hero-right h2{
  display:flex;
  flex-direction:column;
  align-items:center;
  font-size:28px;
  line-height:1.2;
  margin:0;
  text-align:center;
  margin-right: 50px;

}

.hero-text {
  max-width: 100%;
  font-size: 14px;
  margin: 15px auto 0;
}

/* Underline responsive */
.text-underline {
  position: relative;
  display: block;
  margin: 10px auto 0;
  right: auto;
  bottom: auto;
  width: 160px;
}
.hero-right h2::first-line{
  letter-spacing:1px;
}

}

/* ================= MARQUEE SEPARATE SECTION ================= */

.marquee-section {
  position: relative;
  margin-top: -130px;
  margin-bottom: -36px;
  background: transparent;
  z-index: 5;
  transform: rotate(-3deg);
  width: 120%;        /* extend width */
  left: -10%;  
  
}

.marquee-inner {
  background: #1f4e8c;
  padding: 45px 0 35px 0;

  /* Perfect smooth curve */
  border-top-left-radius: 100% 20px;
  border-top-right-radius: 100% 20px;
  min-height: 110px;   /* ADD THIS */
  overflow: visible;
}

/* rows */
.marquee-row {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 40px;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  width: max-content;
}

/* divider */
.marquee-divider {
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin: 30px 0;
}



/* ===== Moon Divider ===== */

.moon {
  width: 18px;
  height: 18px;
  background: #ffffff;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

/* Cut out crescent shape */
.moon::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: #1f4e8c; /* same as marquee bg */
  border-radius: 50%;
  left: 6px;
  top: 0;
}
/* ============================= */
/* MOBILE RESPONSIVE FIX */
/* ============================= */

@media (max-width: 768px) {

  .marquee-section {
    margin-top: -60px;
    margin-bottom: -20px;
    width: 100%;          /* remove overflow */
    left: 0;              /* reset shift */
    transform: rotate(-2deg); /* reduce tilt */
  }

  .marquee-inner {
    padding: 25px 0 20px 0;
    border-top-left-radius: 100% 12px;
    border-top-right-radius: 100% 12px;
    min-height:120px;
    
  }

  .marquee-track {
    gap: 25px;
    font-size: 14px;      /* smaller text */
  }

  .marquee-divider {
    margin: 20px 0;
  }

  .moon {
    width: 14px;
    height: 14px;
  }

  .moon::after {
    width: 14px;
    height: 14px;
    left: 4px;
  }

}


/*----------- CARE SECTION BASE --------- */
.care-section{
  position: relative;
  background: #d6ebff;
  padding: 120px 8% 100px;
}

/* ===== TOP HEADER ===== */
.care-header{
  position: relative;
  text-align: center;
  margin-bottom: 80px;
}

@media (min-width: 1024px){
  .care-heading{
    font-size: 58px;
    line-height: 1.05;
    font-weight: 800;
    margin: 0;
    text-align: left;
    padding-left: 480px;
  }
}

.light-text{
  display:block;
  color: #a1cee1;
}

.bold-text{
  display:block;
  color: #2a5ea8;
  
}

/* Butterfly */
.butterfly{
  position: absolute;
  right: 6%;
  top: -80px;
  text-align: center;
}

.butterfly-text{
  font-size: 16px;
  font-style: italic;
  color: #2a5ea8;
  margin-bottom: 10px;
}

.butterfly img{
  width: 100px;
}

/* ===== CONTENT AREA ===== */
.care-container{
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT */
.care-left{
  flex: 1;
  display: flex;
  gap: 40px;
}

.video-box{
  flex:1;
  height: 435px;
  background: #d9dee6;
  display:flex;
  align-items:center;
  justify-content:center;
}

.play-icon{
  width:60px;
  height:60px;
  border:4px solid #2a5ea8;
  border-radius:50%;
  position:relative;
}

.play-icon::after{
  content:"";
  position:absolute;
  left:22px;
  top:18px;
  border-left:18px solid #2a5ea8;
  border-top:12px solid transparent;
  border-bottom:12px solid transparent;
}

/* RIGHT */
.care-right{
  flex:1;
}

.care-text p{
  font-size:18px;
  line-height:1.8;
  color:#2a5ea8;
  margin-bottom:20px;
}

/* Certifications */
.certifications{
  display:flex;
  gap:20px;
  margin-top:40px;
  flex-wrap:wrap;
}

.icon-circle{
  width:100px;
  height:100px;
  border-radius:50%;
  background:transparent;
  display:flex;
  align-items:center;
  justify-content:center;
}

.icon-circle img{
  width:100%;
}

@media(max-width:768px){

/* Section padding */
.care-section{
  padding: 80px 6% 70px;
}

/* ===== HEADER ===== */
.care-header{
  text-align: left;
  margin-bottom: 40px;
}

.care-heading{
  font-size: 36px;
  line-height: 1.2;
}

.light-text{
  font-size: 34px;
}

.bold-text{
  font-size: 36px;
}

/* Butterfly position */
.butterfly{
  right: -5%;
  top: -40px;
}

.butterfly img{
  width: 70px;
}

.butterfly-text{
  font-size: 13px;
}

/* ===== LAYOUT STACK ===== */
.care-container{
  flex-direction: column;
  gap: 40px;
}

/* ===== VIDEO ROW ===== */
.care-left{
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.video-box{
  min-width: 140px;
  height: 180px;
  flex: 0 0 auto;
}

/* Smaller play icon */
.play-icon{
  width: 40px;
  height: 40px;
  border-width: 3px;
}

.play-icon::after{
  left: 14px;
  top: 10px;
  border-left: 12px solid #2a5ea8;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

/* ===== TEXT ===== */
.care-right{
  text-align: center;
}

.care-text p{
  font-size: 15px;
  line-height: 1.7;
}

/* ===== CERTIFICATIONS ===== */
.certifications{
  justify-content: center;
  overflow-x: auto;
  gap: 15px;
  padding-bottom: 10px;
}

.icon-circle{
  width: 70px;
  height: 70px;
  flex: 0 0 auto;
}

.icon-circle img{
  width: 75%;
}

}

/* ================================
   SECTION BASE
================================ */

.ingredients-section {
  padding: 100px 5%;
  background: #f5f7fb;
  position: relative;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 80px;
  color: #1151ab;
  letter-spacing: 2px;
}

.section-title span {
  color: #a1cee1;
}

/* ================================
   DESKTOP SCATTER LAYOUT
================================ */

.ingredients-desktop {
  position: relative;
  height: 750px;
}

.ingredient {
  position: absolute;
  width: 180px;
  text-align: center;
}

.ingredient img {
  width: 130px;
  height: auto;
  object-fit: contain;
}

.ingredient h4 {
  margin-top: 15px;
  font-size: 18px;
  color: #1151ab;
  font-weight: 600;
}

.ingredient p {
  font-size: 13px;
  color: #666;
  margin-top: 6px;
  line-height: 1.4;
}

/* ===== TOP ROW ===== */
.amalaki { top: 80px; left: 3%; }
.longpepper { top: 50px; left: 18%; }
.vidanga { top: 110px; left: 33%; }
.honey { top: 80px; left: 48%; }
.jaggery { top: 100px; left: 63%; }
.haritaki { top: 60px; right: 3%; }

/* ===== BOTTOM ROW ===== */
.mustaka { bottom: 80px; left: 5%; }
.blackpepper { bottom: 130px; left: 22%; }
.ginger { bottom: 60px; left: 38%; }
.ashoka { bottom: 80px; left: 54%; }
.caraway { bottom: 70px; left: 70%; }
.vibhitaki { bottom: 100px; right: 3%; }

/* ================================
   MOBILE SLIDER
================================ */

.ingredients-slider {
  display: none;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  background: #ffffff;
  padding: 50px 25px;
  text-align: center;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.slide img {
  width: 200px;
  margin: 25px 0;
}

.slide h3 {
  font-size: 34px;
  color: #1151ab;
  font-weight: 700;
}

.slide p {
  font-size: 14px;
  color: #555;
  margin-top: 10px;
}

/* ===== Arrows ===== */

.slider-controls {
  position: absolute;
  bottom: -70px;
  right: 20px;
}

.slider-controls button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #1151ab;
  background: transparent;
  font-size: 24px;
  color: #1151ab;
  cursor: pointer;
  margin-left: 10px;
  transition: 0.3s;
}

.slider-controls button:hover {
  background: #1151ab;
  color: white;
}

/* ===== Dots ===== */

.dots {
  text-align: center;
  margin-top: 40px;
}

.dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 6px;
  transition: 0.3s;
}

.dots .active {
  background: #1151ab;
  width: 20px;
  border-radius: 20px;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 992px) {

  .ingredients-desktop {
    display: none;
  }

  .ingredients-slider {
    display: block;
  }

  .section-title {
    font-size: 36px;
    margin-bottom: 50px;
  }

}

/* =========================
   SECTION
========================= */

.vtm-section{
  background:#d6ebff;
  padding:100px 0 200px;
  overflow:hidden;
  text-align:center;
}

/* Header */

.vtm-title{
  font-size:64px;
  font-weight:800;
  color:#1151ab;
  margin-bottom:12px;
}

.vtm-sub{
  font-size:20px;
  color:#2f5ea8;
  margin-bottom:65px;
}

/* =========================
   DESKTOP STAGE
========================= */

.vtm-stage{
  position:relative;
  width:1200px;
  height:500px;
  margin:0 auto;
}

/* Base card */

/* CARD BASE SIZE - INCREASED */

.vtm-card{
  position:absolute;
  width:340px;     /* increased */
  height:460px;    /* increased */
}

/* LIGHT BACK CARD */

.vtm-back{
  position:absolute;
  width:100%;
  height:100%;
  background:#9cc9e3;
  bottom:-32px;   /* scaled proportionally */
  left:-32px;
}

/* DARK FRONT CARD */

.vtm-front{
  position:absolute;
  width:100%;
  height:410px;   /* increased */
  background:#4566A8;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Play button */

.vtm-play{
  width:80px;
  height:80px;
  background:#e73a32;
  border-radius:50%;
  position:relative;
}

.vtm-play:after{
  content:"";
  position:absolute;
  left:32px;
  top:24px;
  border-left:22px solid #fff;
  border-top:14px solid transparent;
  border-bottom:14px solid transparent;
}

/* Name */

.vtm-name{
  position:absolute;
  bottom:-10px;
  width:100%;
  text-align:center;
  font-size:22px;
  font-weight:600;
  color:#2f5ea8;
  padding-right: 78px;
}

/* =========================
   EXACT DESKTOP POSITIONS
========================= */

.vtm-c1{
  left:50px;
  top:60px;
  transform:rotate(-12deg);
  z-index:1;
}

.vtm-c2{
  left:230px;
  top:20px;
  transform:rotate(-5deg);
  z-index:2;
}

.vtm-c3{
  left:430px;
  top:40px;
  transform:rotate(2deg);
  z-index:3;
}

.vtm-c4{
  left:650px;
  top:80px;
  transform:rotate(8deg);
  z-index:4;
}

.vtm-c5{
  left:900px;
  top:30px;
  transform:rotate(14deg);
  z-index:5;
}

/* =========================
   MOBILE VERSION
========================= */

@media (max-width:768px){

/* ===== SECTION ===== */
.vtm-stage{
  width:100%;
  height:auto !important;
  padding:60px 20px 80px;
}

/* ===== HEADING ===== */
.vtm-title{
  font-size:22px;
  text-align:center;
  margin-bottom:6px;
}

.vtm-sub{
  font-size:13px;
  text-align:center;
  margin-bottom:40px;
}

/* ===== CARD BASE RESET ===== */
.vtm-card{
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
}

/* Remove individual card coordinates */
.vtm-c1,
.vtm-c2,
.vtm-c3,
.vtm-c4,
.vtm-c5{
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
}

/* Clean mobile layout */
.vtm-stage{
  display: flex;
  flex-direction: column;
  padding: 60px 20px;
}

.vtm-card{
  width: 70%;
  height: 150px;
  margin: 60px 0;
}

/* Alternate alignment */
.vtm-card:nth-child(odd){
  align-self: flex-start;
  transform: rotate(-4deg);
}

.vtm-card:nth-child(even){
  align-self: flex-end;
  transform: rotate(4deg);
}

/* ===== Play Button Size ===== */
.play-icon{
  width:38px;
  height:38px;
}


}


/* Moonbliss Section */

.moonbliss-promo {
  background-image: url('https://cdn.shopify.com/s/files/1/0767/7136/1017/files/transparent_moonbliss_bottle_image_1_1.png?v=1772009149');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 30% auto;
  padding: 120px 20px;
}
.moonbliss-promo .container {
  max-width: 1200px;
  margin: 0 auto;
}

.promo-content {
  display: flex;
 text-align:left;
  justify-content: space-between;
  flex-wrap: wrap;
}

.promo-text {
  flex: 1;
  min-width: 320px;
}

.promo-text h2 {
  color: #1658c2;
  font-size: 42px;

  line-height: 1.2;
}

.promo-text p {
  color: #1d3e74;
  font-size: 18px;
  margin: 20px 0;
  max-width: 450px;
}

.btn-try {
  display: inline-block;
  background: #1658c2;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  padding: 12px 28px;
 
  box-shadow: -4px 4px 0 #000;
  transition: 0.2s ease-in-out;
}

.btn-try:hover {
  box-shadow: -2px 2px 0 #000;
  transform: translateY(2px);
}

.features {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.feature-item {
  text-align: center;
  flex: 1 1 100px;
}

.feature-item img {
  width: 80%;margin-left:10%;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 12px !important;
  color: #1d3e74;text-align:center;
  line-height: 1.4;
}

.promo-image {
  flex: 1;
  text-align: center;
}

.promo-image img {
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 768px) {.moonbliss-promo {background-size:contain;background-position:top;padding-bottom:20px}}
/* Hide image on mobile */
@media (max-width: 768px) {
  .moonbliss-promo {
    background: none !important;
  }
}

/* ===== TOPBAR MARQUEE (SCOPED) ===== */

.topbar-marquee-section {
    width: 100%;
    background: #1151ab; /* Adjust if needed */
    overflow: hidden;
    padding: 30px 0;
}

.topbar-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.topbar-marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    white-space: nowrap;
    animation: topbarScroll 20s linear infinite;
}

.topbar-marquee-content span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.topbar-icon {
    font-size: 18px;
    opacity: 0.9;
}

/* Smooth Infinite Scroll */
@keyframes topbarScroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .topbar-marquee-content {
        gap: 25px;
        animation: topbarScroll 15s linear infinite;
    }

    .topbar-marquee-content span {
        font-size: 14px;
    }
}

/* ================= 3D PRODUCT SECTION ================= */

.product-3d-section {
  position: relative;
  padding: 100px 5%;
  background: linear-gradient(180deg, #f8fbff 0%, #e9f4ff 100%);
}

.product-3d-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.product-3d-text {
  flex: 1;
}

.product-3d-text h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.product-3d-text h2 span {
  font-weight: 800;
  color: #6a5acd;
}

.product-3d-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.8;
}

.product-features {
  list-style: none;
  padding: 0;
}

.product-features li {
  margin-bottom: 12px;
  font-size: 15px;
}

.product-3d-canvas-wrapper {
  flex: 1;
  position: relative;
  height: 500px;
}

#product3d {
  width: 100%;
  height: 100%;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .product-3d-container {
    flex-direction: column;
    text-align: center;
  }

  .product-3d-canvas-wrapper {
    height: 400px;
  }
}

.moonbliss-footer {
  background-color: #dbf0fb;
  padding: 60px 20px 40px;
  border-top: 2px solid #ffffff;
  color: #1d3e74;
}

/* ================= TOP QUOTE ================= */
.footer-top {
  text-align: center;
  margin-bottom: 50px;
}

.footer-quote strong {
  font-size: 38px;
  font-weight: 600;
  color: #1151ab;
  display: block;
  margin-bottom: 15px;
}

.footer-quote span {
  font-size: 20px;
  color: #2c5aa0;
}

/* ================= MAIN LAYOUT ================= */
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}

/* ================= LEFT ================= */
.footer-left img {
  width: 110px;
  margin-bottom: 20px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 15px;
  text-decoration: none;
  color: #1d3e74;
}

.footer-contact a:hover {
  color: #1658c2;
}

.footer-contact img {
  width: 20px;
}

/* ================= CENTER LINKS ================= */
.footer-links h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #1d3e74;
  font-size: 15px;
}

.footer-links ul li a:hover {
  color: #1658c2;
}

/* ================= RIGHT ================= */
.footer-right h4 {
  margin-bottom: 20px;
}

.payment-icons img {
  width: 260px;
  max-width: 100%;
  border-radius: 12px;
}

.whatsapp img {
  width: 150px;
  margin-top: 20px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .footer-main {
    flex-wrap: wrap;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact a {
    justify-content: center;
  }

  .footer-links {
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }

  .whatsapp {
    text-align: center;
  }
}

.custom-footer {
    background-color: #dbf0fb;
    color: #333;
}



.footer-logo img {
    width: 150px;
    height: auto;
}

.footer-contact p {
    margin: 5px 0;
    font-size: 16px;
}

.icon {
    margin-right: 8px;
}

.social-icons{
       display: flex;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;padding:30px;border-top:1px solid black;width:100%;
}

.social-icons a {
    margin-right: 15px;
}

.social-icons img {
    width: 28px;
    height: px;
}

.footer-bottom .footer-links {
    font-size: 14px;    text-align: end;
}

.footer-links a {
    text-decoration: none;
    color: #000;
    margin: 0 5px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* ================= HERO SECTION ================= */

.hero{
  width:100%;
  min-height:100vh;
  background: #a1cee1;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  overflow:hidden;
}

.hero-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 7%;
  flex:1;
  
}

/* LEFT SIDE */

.hero-left{
  flex:1;
}

.hero-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:40px;
}

.brand{
  font-size:40px;
  font-weight:900;
  color:#1e40af;
}



/* PRODUCT AREA */

.product-area{
  position:relative;
  height:550px;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* RING */

.circle-ring{
  position:absolute;
  width:480px;
  height:480px;
  border:16px solid rgba(255,255,255,0.6);
  border-radius:50%;
}

/* CANVAS MODEL */

.hero-model{
  width:380px;
  height:500px;
  position:relative;
  z-index:2;
}

canvas{
  width:100% !important;
  height:100% !important;
  display:block;
}

/* BADGES */

.badge{
  position:absolute;
  width:120px;
  height:120px;
  background:#fff;
  border-radius:50%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  box-shadow:0 15px 35px rgba(0,0,0,0.15);
  text-align:center;
  z-index:3;
}

.badge strong{
  font-size:24px;
  color:#1e40af;
}

.badge span{
  font-size:15px;
  color:#1e3a8a;
}

.badge-1{ top:24%; left:0%; }
.badge-2{ bottom:20%; left:3%; }
.badge-3{ top:-4%; right:5%; }

/* RIGHT SIDE */

.hero-right{
  flex:1;
  padding-left:60px;
}

.hero-right h2{
  font-size:75px;
  line-height:0.95;
  font-weight:900;
  color:#fff;
}

.hero-right span{
  color:#1e40af;
}

.hero-text{
  margin-top:25px;
  font-size:20px;
  line-height:1.6;
  color:#1e3a8a;
  max-width:500px;
}

/* ================= RESPONSIVE ================= */



/* 3D animation CSS */
.mb-3d-scroll{
  position:relative;
  height:100vh;
}

.mb-3d-canvas-wrap{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

#mb-scroll-canvas{
  width:100%;
  height:100%;
  display:block;
}

.mb-scroll-overlay{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.mb-scroll-card{
  width:420px;
  padding:40px;
  background:rgba(255,255,255,0.85);
  backdrop-filter:blur(10px);
  border-radius:25px;
}

.mb-scroll-card.left{
  margin-right:auto;
}

.mb-scroll-card.right{
  margin-left:auto;
}



/* 3D SCROLL ANIMATIONS CSS */

body{
  margin:0;
  overflow-x:hidden;
}

/* MAIN SECTION */
.three-scroll-container{
  position:relative;
  background:#d6ebff;
}

/* STAGE WRAPPER (This controls boundary) */
.three-stage{
  position:sticky;
  top:0;
  height:100vh;
  overflow:hidden; /* prevents overlap */
  z-index:2;
}

/* Canvas fills stage */
.three-stage canvas{
  width:100%;
  height:100%;
  display:block;
  pointer-events:none;
}

/* PANELS */
.panel{
  height:100vh;
  display:flex;
  align-items:center;
  padding:0 8%;
}

.intro,
.third,
.section5{
  justify-content:flex-start;
}

.second,
.final{
  justify-content:flex-end;
}

/* CARD */
.card{
   position: relative;              /* IMPORTANT */
  width:420px;
  padding:90px 50px 50px;          /* extra top space for icon */
  background:#a1cee1;
  border-radius:28px;
  box-shadow:0 20px 50px rgba(0,0,0,0.15);
  text-align:center;
}

/* Left tilt */
.intro .card,
.third .card,
.section5 .card{
  transform:rotate(-8deg);
}

/* Right tilt */
.second .card,
.final .card{
  transform:rotate(8deg);
}

.card h3{
  font-size:20px;
  font-weight:700;
  color:#1151ab;
  margin-bottom:15px;
}

.card p{
  font-size:15px;
  color:#1151ab;
  line-height:1.6;
}
.three-scroll-container .feature-icon{
  position:absolute;
  top:0;
  left:50%;
  transform:translate(-50%, -50%);   /* THIS creates half-outside effect */

  width:80px;
  height:80px;
  background:#ffffff;
  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:32px;

  border:3px solid #dbeaf5;
}
/* Fifth section layout */
.big-text-section{
  position: relative;
  justify-content: center;
  align-items: center;
}

/* Background text container */
.background-text{
  position: relative;
  z-index: 2;   /* Above background, below bottle (if bottle z-index higher) */
  text-align: center;
}

.background-text h2,
.background-text h1{
  margin: 0;              /* remove default margins */
  padding: 0;
}

.background-text h2{
  font-size: 48px;
  font-weight: 700;
  color: #9cc9e3;
  letter-spacing: 2px;
  line-height: 1;         /* tight line height */
}

.background-text h1{
  font-size: 60px;
  font-weight: 800;
  color: #0a4ea3;
  letter-spacing: 1px;
  line-height: 1;         /* tight stacking */
}
/* ===== BIG SECTION HEADING ===== */

.three-scroll-container .section-main-heading{
  text-align:center;
  padding:120px 20px 120px;   /* space before + after */
}

.three-scroll-container .section-main-heading h2{
  font-weight:700;
  line-height:1.1;
  margin:0;
  font-size: clamp(32px, 5vw, 64px);
}

/* First two words */
.three-scroll-container .light-text{
  color:#a1cee1;
}

/* Last two words */
.three-scroll-container .dark-text{
  color:#1151ab;
}
/* MOBILE */
@media(max-width:768px){
  .panel{
    justify-content:center !important;
  }

  .card{
    width:85%;
    margin:0 auto;
    text-align:center;
  }
}

/* HEADER */
.main-header{
  position: relative;
  top: 0;
  width: 100%;
  padding: 20px 40px;
  background:#a1cee1;
  z-index: 100;
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* SOCIAL ICONS */
.socials{
  display: flex;
  gap: 15px;
}

.socials a{
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a4ea3;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
}

.socials a:hover{
  background: #0a4ea3;
  color: white;
}

/* NAVIGATION */
.nav-links{
  display: flex;
  gap: 20px;
}

.nav-links a{
  padding: 10px 25px;
  background: #1e5ea8;
  color: white;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}

.nav-links a:hover{
  background: #134a87;
}

/* CTA */
.cta{
  display: flex;
  align-items: center;
  gap: 0px;
}

.cta-circle{
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2fab59;
  font-size: 28px;
}

.cta button{
  padding: 12px 25px;
  background: white;
  border: none;
  font-weight: 600;
  color: #0a4ea3;
  cursor: pointer;
  font-size: 15px;
  transition: 0.3s;
}

.cta button:hover{
  background: #0a4ea3;
  color: white;
}
/* HAMBURGER */
.menu-toggle{
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}
/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 991px){

  .main-header{
    padding: 15px 20px;
  }

  .header-inner{
    position: relative;
  }

  /* Show Hamburger */
  .menu-toggle{
    display: block;
    order: 2;
  }

  /* Hide desktop nav initially */
  .nav-links{
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #1e5ea8;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 15px;
    display: none;
  }

  /* Show when active */
  .nav-links.active{
    display: flex;
  }

  .nav-links a{
    width: 90%;
    text-align: center;
  }

  /* Hide Social Icons (Optional cleaner look) */
  .socials{
    display: none;
  }

  /* Adjust CTA */
  .cta{
    order: 3;
  }

  .cta button{
    padding: 10px 18px;
    font-size: 14px;
  }

  .cta-circle{
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

}

.panel{
position:relative;
overflow:hidden;
}

.svg-bg{
position:absolute;
inset:0;
z-index:0;
pointer-events:none;
}

.svg-bg svg{
width:100%;
height:100%;
}

.snake-line{
stroke:rgba(0,0,0,0.18);
stroke-width:1.6;
fill:none;
}

.card-wrapper,
.background-text{
position:relative;
z-index:2;
}