* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(to bottom right, 
            hsl(312, 100%, 85%, 0.2),  
            hsl(330, 100%, 99%),       
            hsl(206, 93%, 57%, 0.1)   
            );
  color: #333;
   background-image: 
    linear-gradient(rgba(43, 170, 247, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 170, 247, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}


 .navbar{
  font-family: 'Fredoka', cursive;
  width: 100%;
  background: rgba(236, 229, 235, 0.6);
  border-bottom: 1px solid #eaeaea;
  position: relative;
  z-index: 1000;
  position: sticky;
  top: 0;
}

.nav-container {
  max-width: 1200px;
  height: 64px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: #2BAAF7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text {
  font-size: 20px;
  font-weight: 700;
  color: #111;
}

.highlight {
  color: #2BAAF7;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  text-decoration: none;
  color: #666;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 14px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #111;
}

.nav-links a.active {
  color: #2BAAF7;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 2px;
  background: #2BAAF7;
  border-radius: 999px;
}


.menu-icon {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #111;
  font-size: 22px;
}

.menu-icon i {
  transition: 0.3s ease;
}


@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: white;
    border-top: 1px solid #eaeaea;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 20px;
    gap: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid #f1f1f1;
  }

  .nav-links a.active::after {
    display: none;
  }
}

/* navbar end */

/*Hero section start*/
.hero {
    width: 100%;
    margin: auto;
    margin-top: 100px;
    position: relative;
}

/*  background: linear-gradient(
    to bottom right,
    rgba(255, 179, 239, 0.2),
    white,
    rgba(43, 170, 247, 0.1)
  ); */

.hero-bg {
  position: absolute;
  inset: 0;
}


.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 100px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}


.hero-left h1 {
  font-family: 'Fredoka', cursive;
  font-size: 80px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-left p {
  font-family: 'Space Grotesk', sans-serif;
  color: #666;
  max-width: 400px;
  margin-bottom: 20px;
}

.tag {
  display: inline-block;
  font-family: 'Fredoka', cursive;
  background: #FFB3EF;;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 15px;
}

.blue { color: #2BAAF7; }
.pink { color: #FFB3EF; }


.hero-buttons {
  font-family: 'Fredoka', cursive;
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.btn {
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.primary {
  background: #2BAAF7;
  color: white;
}

.btn.outline {
  border: 2px solid #ddd;
  background: transparent;
}


.stats {
  display: flex;
  gap: 30px;
}

.stats h3 {
  color: #2BAAF7;
}


.hero-right {
  position: relative;
}

.video-box {
  height: 400px;
  border-radius: 20px;
  background: linear-gradient(
    to bottom right,
    rgba(255, 179, 239, 0.3),
    rgba(43, 170, 247, 0.2)
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #2BAAF7;
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  margin-bottom: 10px;
}

.video-box {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.badge {
  position: absolute;
  bottom: -10px;
  left: -10px;
  background: #FFB3EF;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: bold;
}


@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-left h1 {
    font-size: 36px;
  }

  .video-box {
    height: 300px;
  }
}
/*hero section end*/

/*animation start*/

.reveal-left,
.reveal-right {
  opacity: 0;
  transition: all 1s ease;
}


.reveal-left {
  transform: translateX(-60px);
}


.reveal-right {
  transform: translateX(60px);
}


.reveal-left.active,
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}


.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}

/*animation end*/

/*marquee start*/
.marquee {
  overflow: hidden;
  background: #2BAAF7;
  padding: 18px 0;
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: scrollMarquee 12s linear infinite;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
  padding-right: 24px;
}

.marquee-track span {
  font-size: 18px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
}

.marquee-track span:nth-child(even) {
  color: #FFB3EF;
}

@keyframes scrollMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* marquee end */

/*title intro start*/
.Intrtxt{
    width: 100%;
    margin: auto;
    margin-top: 100px;
    text-align: center;
}

.Intrtxt h1 {
    font-family: 'Fredoka', cursive;
    font-size: 80px;
    
    
}

.Intrtxt p {
    font-family: 'Space Grotesk', sans-serif;
    color: #666;
    font-weight: 200;
    
}
/*title intro end*/

/*milk info start*/
.milkInfo {
  width: 100%;
  max-width: 1200px;
  margin: 100px auto 0;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}

.left-info {
  width: 45%;
  position: relative;
}

.left-info img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.right-info {
  width: 50%;
}

.info-selections {
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.selection-card {
  background-color: rgb(253, 247, 250);
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 18px 20px;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.Stogetor {
  display: flex;
  align-items: center;
  gap: 8px;
}

.Stogetor h3 {
  color: #2BAAF7;
  font-size: 20px;
  margin: 0;
}

.Stogetor i {
  font-size: 22px;
  color: #FFB3EF;
}


.hidden {
  margin-top: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  visibility: hidden;
}

.hidden p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
}


.selection-card.active {
  border-color: #2BAAF7;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(43, 170, 247, 0.12);
}

.selection-card.active .hidden {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}


.dot {
  width: 22px;
  height: 22px;
  background-color: #009dff;
  border-radius: 50%;
  text-align: center;
  line-height: 22px;
  color: white;
  position: absolute;
  cursor: pointer;
  font-weight: bold;
  z-index: 2;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.dot:hover,
.dot.active-dot {
  transform: scale(1.12);
  background-color: #FFB3EF;
  box-shadow: 0 0 0 6px rgba(255, 179, 239, 0.18);
}

.d1 {
  top: 50%;
  left: 50%;
}

.d2 {
  top: 20%;
  left: 10%;
}

.d3 {
  top: 70%;
  left: 80%;
}

.d4 {
  top: 90%;
  left: 10%;
}


@media (max-width: 900px) {
  .milkInfo {
    flex-direction: column;
    align-items: stretch;
  }

  .left-info,
  .right-info {
    width: 100%;
  }
}

/*milk info end*/

/*kid section start*/
.kids {
    margin-top: 200px;
  padding: 80px 20px;
}

.kids-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}


.kids-img {
  position: relative;
}

.kids-img img {
  width: 100%;
  border-radius: 20px;
}


.kids-text h2 {
  font-size: 56px;
  margin-bottom: 10px;
  font-family: 'Fredoka', cursive;
}


.kids-text p {
  color: #666;
  margin-bottom: 20px;
}


.perks {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.perks span {
  background: #eee;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}


.Kbuttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.Kbtn {
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.Kbtn:hover {
  opacity: 0.7;
}

.Kbtn.primary {
  background: #2BAAF7;
  color: white;
}

.Kbtn.outline {
  border: 2px solid #2BAAF7;
  color: #2BAAF7;
}


@media (max-width: 768px) {
  .kids-container {
    grid-template-columns: 1fr;
  }
}
/*kid section end*/

/*product section start*/
.product-section {
  padding: 80px 20px;
}

.product-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 24px;
  overflow: hidden;
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: #2BAAF7;
  box-shadow: 0 12px 30px rgba(43, 170, 247, 0.12);
}

.product-image-box {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(to bottom right, rgba(43,170,247,0.12), rgba(255,179,239,0.12));
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255,255,255,0.9);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  margin: 0;
  font-size: 20px;
}

.product-bottom {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: #2BAAF7;
}

.product-bottom i {
  color: #666;
  transition: 0.3s ease;
}

.product-card:hover .product-bottom i {
  color: #2BAAF7;
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}
/*product section end*/

/*CTA section start*/
.cta-section {
  padding: 100px 20px;
}

.cta-box {
  max-width: 1100px;
  margin: auto;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  padding: 80px 40px;
  text-align: center;
}


.cta-bg {
  position: absolute;
  inset: 0;
  background: url("images/join_Us.png");
  background-size: cover;
  
  z-index: 1;
}


.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(43,170,247,0.4),
    rgba(255,179,239,0.3)
  );
}


.cta-content {
  position: relative;
  z-index: 2;
  color: white;
}


.cta-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(255,255,255,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.cta-icon i {
  font-size: 24px;
  color: #FFB3EF;
}


.cta-content h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.cta-content p {
  max-width: 500px;
  margin: auto;
  opacity: 0.85;
  margin-bottom: 30px;
}


.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.btn.primary {
  background: white;
  color: black;
}

.btn.outline {
  border: 2px solid rgba(255,255,255,0.5);
  color: white;
}

.btn:hover {
  opacity: 0.9;
}
/*cta section end*/

/*footer start*/
.footer {
  background: #111;
  color: white;
  padding: 60px 20px 30px;
}

.footer-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}


.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  margin-bottom: 10px;
}

.logo-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2BAAF7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}


.footer-text {
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.5;
}


.footer-col h4 {
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  opacity: 0.5;
}


.footer-col a,
.footer-col p {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  opacity: 0.7;
  text-decoration: none;
  color: white;
}

.footer-col a:hover {
  opacity: 1;
}


.footer-bottom {
  max-width: 1100px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  opacity: 0.6;
}

.made i {
  color: #FFB3EF;
}

/* RESPONSIVE */
@media (max-width: 800px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
/*footer end*/

.disclaimer {
  font-size: 11px;
  opacity: 0.8;
  text-align: center;
}

/* mobile overflow fix start */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
}

/* stop reveal animations from creating side scroll on mobile */
@media (max-width: 768px) {
  .reveal-left,
  .reveal-right {
    transform: translateX(0);
  }

  .hero {
    margin-top: 40px;
  }

  .hero-container {
    padding: 60px 16px;
    gap: 30px;
  }

  .hero-buttons,
  .stats,
  .Kbuttons,
  .cta-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats {
    gap: 16px;
  }

  .Intrtxt {
    padding: 0 16px;
  }

  .Intrtxt h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .milkInfo,
  .kids,
  .product-section,
  .cta-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .left-info {
    max-width: 420px;
    margin: 0 auto;
  }

  .cta-box {
    padding: 60px 20px;
    border-radius: 28px;
  }

  .cta-content h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}
/* mobile overflow fix end */