/* Global Styles */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --primary-color: #0046be;
  --secondary-color: #1a2e83;
  --accent-color: #ff7a00;
  --text-color: #333;
  --light-text: #fff;
  --background-light: #f5f8ff;
  --background-dark: #1e2757;
  --border-radius: 8px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.primary-btn {
  background-color: #1b6df7;
  color: var(--light-text);
  padding: 15px 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-family: "Inter";
}

.primary-btn:hover {
  background-color: #2a75e8;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
@media (max-width: 480px) {
  .primary-btn {
    padding: 10px 16px;
    gap: 10px;
    font-size: 14px;
  }
}
/* Header */
header {
  background: linear-gradient(90deg, #0d50a8, #0a23a9);
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 400px;
  padding: 0;
}

.header-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  z-index: 1;
  padding: 0;
  margin: 0;
}

.header-bg {
  width: 100%;
  height: auto;
  display: block;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 5%;
  width: 100%;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 60px;
}
.logo-bg {
  display: flex;
  align-items: center;
  /* gap: 10px; */
  padding: 6px 12px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  
}

.logo-text {
  font-size: 27px; /* smaller than default h1 */
  color: white;
  font-weight: 800;
  margin: 0;
  /* font-family: "Poppins", sans-serif !important; */
  font-family: "Baloo 2";
}


@media (max-width: 480px) {
  .logo-container {
    display: flex;
    flex-direction: column;       
    align-items: flex-start;      
    padding-left: 0 !important;  
  }

  .logo-wrapper{
    margin-top: 20px;
    padding-right: 10px;
  }

  .logo-bg {
    display: flex;
    align-items: center;

    border-radius: 10px;
             /* restore a small gap */
  }

  .logo {
    height: 50px !important;     
    width: 80px !important   ;         /* smaller logo */
  }

  .logo-text {
    font-size: 20px;              /* smaller text */
    white-space: nowrap;          /* never wrap */
  }

}

/* Tablet styles (up to 768px) */
@media (max-width: 768px) {
  .logo-container {
    flex-direction: row;          /* back to row on tablets */
    justify-content: space-between;
    align-items: center;
    padding: 24px 5%;
    gap: 0;
  }

}



.countdown {
  background-color: rgba(0, 0, 0, 0.8);
  color: var(--light-text);
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Noto Sans";
}

/* Hero Section */
.hero {
  color: var(--light-text);
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 100px;
  padding-top: 10px;
}

.hero-content {
  max-width: 50%;
  z-index: 2;
  position: relative;
  padding: 5px 5% 80px;
}

.subtitle {
  font-size: 16px;
  margin-bottom: 15px;
  opacity: 0.9;
  font-family: "Inter";
}

.hero-content h1 {
  font-size: 50px;
  line-height: 64px;
  font-family: "Baloo 2";
  font-weight: 700;
  margin-bottom: 10px;
}

.tagline {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
  font-family: "Noto Sans";
}

/* .cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;

   
} */

/* CSS */
.cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  margin-top: -100px;
  /* background-color: rgba(0,0,0,0.7); */
}
.privacyModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2000;
}
.modal-content {
  position: relative;
  margin: 15% auto;
  padding: 20px;
  width: 50%;
  max-width: 800px;
  background-color: #fff;
  border-radius: 5px;
  /* border: 1px solid blue; */
}

.close-btn {
  position: absolute;
  top: -15px;
  right: 0;
  font-size: 40px;
  cursor: pointer;
  color: #000000;
  padding: 5px;
}

.close-btn:hover {
  color: #000000;
}
.header-upperImg {
  display: none;
}

video {
  width: 100%;
  height: auto;
  margin-top: -10px;
  /* Desktop: moves video up */
  border-radius: 5px;
}

/* Media Query for Mobile Devices */
@media only screen and (max-width: 768px) {
  .modal {
    margin-top: 0;
  }

  .modal-content {
    margin: 30% auto;
    width: 90%;
  }

  video {
    margin-top: -10px;
    border-radius: 5px;
  }
  .header-image {
    display: none;
  }
  .header-bg {
    display: none;
  }
  .header-upperImg {
    display: block;
    height: 200px;
    margin: 0 auto;
  }
  .header-upperBg {
    height: 200px;
    align-self: center;
    display: block;
    margin: 0 auto;
  }
}

.video-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--light-text);
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  font-family: "Inter";
  border-radius: 50px;
  text-align: center;
  justify-content: center;
}

.hero-images {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
}

.kid-character {
  position: absolute;
  right: 5%;
  bottom: 0;
  height: 400px;
  z-index: 2;
  object-fit: contain;
}

.floating-elements {
  display: none;
}

.element {
  display: none;
}

.notebook {
  top: 20%;
  right: 40%;
}

.pencil {
  bottom: 40%;
  right: 30%;
  transform: rotate(45deg);
}

.tablet {
  top: 40%;
  right: 10%;
}

.computer {
  bottom: 60%;
  right: 50%;
}

.shapes {
  top: 30%;
  right: 60%;
}

.toggle-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 16px;
}

.toggle-label {
  font-weight: 600;
  color: #000;
  /* Default text color */
  transition: color 0.3s ease;
}

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
  margin: 0 10px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 20px;
}

.slider::before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #555;
}

input:checked + .slider::before {
  transform: translateX(20px);
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

.wave-bottom {
  position: absolute;
  bottom: -168px;
  left: 0;
}

@media (max-width: 1500px) {
  .wave-bottom {
    bottom: -148px;
  }

  .header-image {
    width: 52%;
  }
}

@media (max-width: 1400px) {
  .wave-bottom {
    bottom: -132px;
  }

  .header-image {
    width: 55%;
  }
}

@media (max-width: 1300px) {
  .wave-bottom {
    bottom: -122px;
  }

  .header-image {
    width: 55%;
  }
}

.wave-bottom img {
  width: 100%;
}

/* Exclusive Offer Section */
.exclusive-offer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 5%;
  background-color: #fff;
}

.offer-content {
  max-width: 50%;
}

.offer-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #282a42;
}

.offer-content p {
  color: #555;
}

.offer-content h3 {
  font-size: 24px;
  margin: 15px 0;
  font-weight: 600;
  color: #333;
}

.small-text {
  font-size: 14px;
  opacity: 0.8;
}

.offer-form {
  width: 40%;
  padding: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: inherit;
  font-size: 16px;
}

input[type="number"] {
  -moz-appearance: textfield;
  /* Firefox */
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  /* Chrome, Safari, Edge */
}

.join-btn {
  background-color: #1b6df7;
  color: white;
  border: none;
  padding: 12px 15px;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0px 2.65px 7.96px 3.98px rgba(27, 109, 247, 0.25);
}

/* Features Section */
.features {
  padding: 80px 5% 200px;
  text-align: center;
  position: relative;
  background-color: #282a42;
  color: white;
}

.purple-bg {
  padding: 0;
  margin: 0;
  height: 120px;
  overflow: hidden;
  width: 100%;

  display: block;
}

.purple-bg img {
  padding: 0;
  margin: 0;
  width: 100%;
}

@media (max-width: 1440px) {
  .purple-bg {
    height: 120px;
  }
}

.octopus {
  position: absolute;
  top: -60px;
  left: 8%;
  width: 150px;
  height: 150px;
  z-index: 5;
}

.octopus img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.features h2 {
  font-size: 48px;

  color: white;
  font-family: "Baloo 2";
}

.hindi-text {
  font-size: 16px;
  margin-bottom: 70px;
  color: #eca406;
  font-family: "Inter";
}

.feature-cards {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  margin: 50px 0;
}

.feature-card {
  background-color: transparent;
  border-radius: var(--border-radius);
  padding: 20px 15px 5px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-icon {
  height: 90px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 50%;
  padding: 15px;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1) invert(0);
}

.feature-card h3 {
  font-size: 21px;
  margin-bottom: 15px;
  font-family: "Baloo 2";
  color: #1b6df7;
}

.feature-card p {
  color: #fff;
  font-size: 15px;
  font-family: "Noto Sans";
}

.girl-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 30px 0;
}

.jumping-kid {
  margin: 50px auto;
  max-width: 700px;
  position: absolute;
  top: -279px;
}

.jumping-kid-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.registration-counter {
  background-color: white;
  margin-top: 50px;
}

.counter-btn {
  background-color: #1b6df7;
  color: var(--light-text);
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans";
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Pricing Section */
.pricing {
  padding: 80px 5%;
  background-color: #fff;
  text-align: center;
}

.pricing h2 {
  font-size: 48px;
  margin-bottom: 50px;
  color: #282a42;
  font-family: "Baloo 2";
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.pricing-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 40px 25px;
  width: 370px;
  box-shadow: var(--box-shadow);
  text-align: left;
  font-family: "Inter";
}

.early-birds {
  background-color: #1d4ed8;
  color: var(--light-text);
}

.siblings {
  background-color: #282a42;
  color: var(--light-text);
}

.pricing-card h3 {
  font-size: 26px;
  margin-bottom: 20px;
  text-align: center;
  font-family: "Inter";
}

.price-container {
  margin: 20px 0;
}

.original-price {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
  opacity: 0.8;
}

.line {
  text-decoration: line-through;
  text-decoration-color: #f91f1f;
}

.original-price .price {
  font-size: 32px;
}

.original-price .period {
  font-size: 14px;
  color: #f7f8f9;
}

.discounted-price .price {
  font-size: 42px;
  font-weight: 700;
  font-family: "Manrope";
}

.discounted-price .period {
  font-size: 14px;
  color: #f7f8f9;
  font-family: "Manrope";
}

.discount,
.extra-discount {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 14px;
  margin-left: 10px;
}

.plus {
  margin: 0 5px;
}

.discounted-price {
  margin-top: 5px;
}

.get-started-btn {
  width: 100%;
  padding: 12px;
  background-color: #fff;
  color: #1d4ed8;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 550;
  font-family: "Manrope";

  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.siblings .get-started-btn {
  color: #1e2757;
}

.benefits {
  margin-top: 20px;
}

.benefits li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 18px;
}

.fa-check-circle {
  color: #e8edfb;
}

/* Footer */
footer {
  background-color: #0c53ab;
  color: var(--light-text);
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 40px 4% 20px 8%;
  gap: 20px;
  position: relative;
  z-index: 2;
  font-family: "Inter";
}

.footer-logo .logo {
  height: 50px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  background-color: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.experience {
  font-size: 16px;
  font-family: "Inter";
}

.copyright {
  font-size: 16px;
  opacity: 0.8;
  text-align: left;
}

.language {
  margin: 20px 0;
  font-size: 14px;
}

.footer-image {
  width: 70%;
  z-index: 1;
  overflow: hidden;
  text-align: right;
}

.footer-image img {
  height: 350px;
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 64, 0.5); bluish overlay */
  padding: 0 16px;
  box-sizing: border-box;
  overflow: hidden;
}

/* Box sits lower with good spacing and centered */
.modal-box {
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  height: 75%;
  max-width: 1200px;
  margin: 100px auto 0 auto; /* Adjusted margin to center vertically */

  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 100px);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(25, 100, 227, 0.25);
}

.modal-header {
  background: linear-gradient(135deg, #1a5fd7 0%, #062f75 100%);
  padding: 10px 10px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  position: relative;
  flex-shrink: 0;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.modal-header h2 {
  margin: 0;
}

.modal-body {
  padding: 20px 40px;
  overflow-y: auto;
  flex-grow: 1;
  color: #333;
}

.scrollable-content {
  max-height: 55vh;
  /* overflow-y: auto; */
  font-size: 16px;
  line-height: 1.6;
  color: #222;
}

.modal-footer {
  padding: 15px 40px;
  text-align: right;
  background: #f8f8f8;
  border-top: 1px solid #eee;
}

.modal-footer button {
  padding: 10px 20px;
  font-size: 16px;
  background: #1964e3;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.modal-footer button:hover {
  background: #154ac0;
}

.close-btn {
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 28px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
  padding: 4px 10px;
  border-radius: 50%;
  line-height: 1;
  transition: background 0.3s ease;
}

.close-btn:hover {
  background: rgba(0, 0, 0, 0.6);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .modal-body {
    padding: 20px;
  }

  .modal-footer {
    padding: 15px 20px;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  header {
    min-height: 350px;
    background-size: cover;
  }

  .hero-content {
    max-width: 55%;
    padding: 70px 5% 70px;
  }
  .modal-box {
    margin: 100px 20px;
    max-height: 90vh;
    max-width: 95vw;
  }

  .kid-character {
    height: 350px;
    right: 2%;
  }

  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  .footer-img {
    width: 90%;
  }
}

@media (max-width: 768px) {
  header {
    min-height: 450px;
    background-position: 80% bottom;
    background-size: cover;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    padding: 70px 5% 300px;
    background-color: rgba(0, 70, 190, 0.7);
    backdrop-filter: blur(5px);
    margin: 50px 0 0;
    border-radius: 20px;
  }

  .hero-images {
    width: 100%;
    bottom: 0;
  }

  .kid-character {
    height: 250px;
    right: calc(50% - 150px);
  }

  .exclusive-offer {
    flex-direction: column;
    gap: 30px;
  }

  .offer-content,
  .offer-form {
    max-width: 100%;
    width: 100%;
  }

  .feature-cards {
    flex-direction: column;
  }

  .octopus {
    position: absolute;
    top: -50px;
    left: 10%;
  }

  .footer-img {
    width: 100%;
    margin-right: -30px;
  }
}

@media (max-width: 480px) {
  header {
    min-height: 300px;
    background-size: cover;
  }

  h1 {
    font-size: 28px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .kid-character {
    height: 220px;
    right: calc(50% - 110px);
  }
  .modal-box {
    max-width: 90vw;
  }

  .element {
    width: 40px;
  }

  .logo {
    width: 206px;
  }

  .features {
    /* border-radius: 30px 30px 0 0; */
    padding-top: 60px;
  }
  .modal-header h2 {
    font-size: 25px;
  }
  .modal-body h2 {
    font-size: 20px;
  }
  .modal-body p {
    font-size: 13px;
  }
  .octopus {
    width: 100px;
    height: 100px;
    position: absolute;
    top: -10px;
    left: 10%;
  }

  .jumping-kid {
    top: -150px;
    z-index: 0;
  }

  .registration-counter {
    z-index: 1;
  }

  .hero-content {
    padding: 60px 5% 100px;
    margin: 30px 0 0;
  }

  .footer-img {
    width: 100%;
    margin-right: -10px;
  }
}

@media (max-width: 380px) {
  .jumping-kid {
    top: -120px;
  }
}

@media (max-width: 320px) {
  .jumping-kid {
    top: -100px;
  }
}
/* WhatsApp Floating Icon - Perfectly Round */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 28px;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float:hover {
  background-color: #1ebe5b;
  transform: scale(1.1);
}

.whatsapp-icon {
  display: inline-block;
}
