* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: #f7f9fc;
      color: #1a1a1a;
    }

    /* NAVIGATION */
    nav {
      width: 100%;
      padding: 14px 4%;
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: fixed;
      top: 0;
      z-index: 1000;
    }

    /* Left side - logo and text */
    .nav-left {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .nav-left img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
    }

    .nav-left span {
      font-size: 24px;
      font-weight: 700;
      color: #0099ff;
      font-family: 'Goldman', cursive;
    }

    /* Center - navigation links */
    .nav-center ul {
      display: flex;
      gap: 30px;
      list-style: none;
    }

    .nav-center ul li a {
      text-decoration: none;
      font-weight: 600;
      color: #333;
      font-size: 18px;
      transition: 0.3s;
    }

    .nav-center ul li a:hover {
      color: #0099ff;
    }

    /* Right side - Playstore Badge */
    .playstore-badge img {
      height: 60px;
    }

    /* Hamburger menu - hidden on desktop */
    .hamburger {
      display: none;
      font-size: 26px;
      cursor: pointer;
    }

    /* MEDIA QUERY FOR MOBILE */
    @media (max-width: 768px) {
      .nav-center ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #ffffff;
        padding: 20px 4%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      }

      .nav-center ul.show {
        display: flex;
      }

      .hamburger {
        display: block;
      }

      .playstore-badge {
        display: none;
      }
    }

    /* HERO SECTION */
    .hero {
      background: linear-gradient(to right, #e0f7fa, #f1fcff);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      padding: 180px 10% 100px;
      min-height: 100vh;
      /* Fully restored size */
    }

    .hero-text {
      flex: 1;
      max-width: 750px;
    }

    .hero-text h1 {
      font-size: 64px;
      margin-bottom: 30px;
    }

    .hero-text p {
      font-size: 22px;
      margin-bottom: 40px;
      line-height: 1.8;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    /* Shining Explore Now button */
    .shine-btn {
      background: #0099ff;
      padding: 18px 42px;
      color: #fff;
      font-size: 20px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: bold;
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .shine-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -75%;
      width: 50%;
      height: 100%;
      background: rgba(255, 255, 255, 0.6);
      transform: skewX(-25deg);
      animation: shine 2s infinite;
      z-index: 2;
    }

    @keyframes shine {
      0% {
        left: -75%;
      }

      100% {
        left: 125%;
      }
    }

    /* Download App button */
    .download-btn {
      background: #00c853;
      padding: 18px 38px;
      color: white;
      font-size: 20px;
      border-radius: 10px;
      text-decoration: none;
      font-weight: bold;
    }

    .hero-img {
      flex: 1;
      max-width: 550px;
    }

    .hero-img img {
      width: 100%;
    }

    /* Responsive for mobile */
    @media (max-width: 992px) {
      .hero {
        flex-direction: column;
        padding: 160px 5% 80px;
        /* Increased top and bottom padding */
        text-align: center;
        min-height: auto;
      }

      .hero-text h1 {
        font-size: 48px;
      }

      .hero-text p {
        font-size: 20px;
      }

      .hero-buttons {
        justify-content: center;
      }

      .hero-img {
        max-width: 90%;
        margin-top: 40px;
      }
    }


    /* WHY CHOOSE US */
    .why-choose-us {
      background: #eef7ff;
      padding: 80px 5%;
    }

    .why-choose-us h2 {
      text-align: center;
      font-size: 46px;
      font-family: 'Playfair Display', serif;
      margin-bottom: 60px;
    }

    .why-choose-us h2 span {
      color: #007bff;
    }

    .cards-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      justify-content: space-between;
    }

    .card {
      flex: 1 1 23%;
      background: #fff;
      border-radius: 20px;
      padding: 40px 25px;
      box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
      text-align: center;
      transition: transform 0.3s ease;
      font-family: 'Playfair Display', serif;
    }

    .card:hover {
      transform: scale(1.08);
      cursor: pointer;
    }

    .card img {
      width: 70px;
      margin-bottom: 25px;
    }

    .card h3 {
      font-size: 24px;
      margin-bottom: 15px;
    }

    .card p {
      font-size: 18px;
      color: #555;
    }

    @media (max-width: 1024px) {
      .card {
        flex: 1 1 45%;
      }
    }

    @media (max-width: 768px) {
      .card {
        flex: 1 1 100%;
      }

      .hero {
        flex-direction: column;
        text-align: center;
      }

      .hero-text {
        margin-bottom: 40px;
      }

      .playstore-badge img {
        height: 50px;
      }
    }

    /* Premium Courses Section */
    .premium-courses {
      background: linear-gradient(to right, #e0f7fa, #f1fcff);
      padding: 100px 6% 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .premium-courses h2 {
      font-size: 46px;
      margin-bottom: 15px;
      font-family: 'Playfair Display', serif;
      position: relative;
      display: inline-block;
    }

    .premium-courses h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: #e60000;
    }

    .premium-courses .red-text {
      color: #e60000;
      font-weight: 700;
    }

    .section-subtitle {
      color: #555;
      font-size: 18px;
      margin-bottom: 60px;
      font-weight: 400;
    }

    .course-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      perspective: 1000px;
    }

    .course-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      display: flex;
      flex-direction: column;
      position: relative;
      border: 1px solid rgba(0, 0, 0, 0.05);
      transform-style: preserve-3d;
    }

    .course-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

    .img-container {
      width: 100%;
      height: 220px;
      background: #f8f9fa;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      /* Removed padding so image can fill */
    }

    .course-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* Fill without gaps */
      transition: transform 0.5s ease, filter 0.5s ease;
      border-radius: 0;
    }

    .course-card:hover img {
      transform: scale(1.05);
      filter: brightness(1.1);
    }

    .premium-tag {
      position: absolute;
      top: 15px;
      right: 15px;
      background: #e60000;
      color: white;
      padding: 4px 12px;
      font-size: 12px;
      font-weight: bold;
      border-radius: 20px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      z-index: 1;
    }

    .course-content {
      padding: 25px;
      text-align: center;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .course-content h3 {
      font-size: 22px;
      margin: 0;
      color: #1a1a1a;
      font-weight: 700;
    }

    .course-subheading {
      font-size: 14px;
      color: #666;
      margin: 0;
      font-weight: 500;
    }

    .course-rating {
      color: #ffc107;
      font-size: 14px;
    }

    .course-rating span {
      color: #666;
      margin-left: 5px;
    }

    /* New Enroll Button */
    /* Enroll Button - Matching Background Theme */
    .enroll-btn {
      background: linear-gradient(135deg, #00c6ff, #0072ff);
      /* Aqua to blue */
      color: #fff;
      padding: 14px 28px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 15px;
      text-decoration: none;
      border: none;
      position: relative;
      overflow: hidden;
      box-shadow: 0 6px 20px rgba(0, 150, 255, 0.4);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .enroll-btn span {
      position: relative;
      z-index: 2;
    }

    .enroll-btn:hover {
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 10px 25px rgba(0, 150, 255, 0.5);
    }

    /* Shine Animation */
    .enroll-btn::after {
      content: '';
      position: absolute;
      top: 0;
      left: -75%;
      width: 50%;
      height: 100%;
      background: rgba(255, 255, 255, 0.35);
      transform: skewX(-20deg);
    }

    .enroll-btn:hover::after {
      animation: shine 0.7s forwards;
    }

    @keyframes shine {
      100% {
        left: 125%;
      }
    }


    /* Optional Pulse Effect for Attention */
    @keyframes pulse {
      0% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.05);
      }

      100% {
        transform: scale(1);
      }
    }

    .enroll-btn.pulse {
      animation: pulse 1.5s infinite;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .premium-courses {
        padding: 70px 5% 50px;
      }

      .premium-courses h2 {
        font-size: 32px;
      }

      .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
      }

      .course-grid {
        grid-template-columns: 1fr;
        gap: 25px;
      }

      .img-container {
        height: 200px;
      }

      .course-content h3 {
        font-size: 20px;
      }

      .course-subheading {
        font-size: 13px;
      }

      .enroll-btn {
        padding: 12px 24px;
        font-size: 14px;
      }
    }

    /* App Features Section */
    .app-features {
      background: linear-gradient(135deg, #f9f9f9, #dff6ff);
      padding: 100px 6%;
      text-align: center;
    }

    .app-features h2 {
      font-size: 46px;
      margin-bottom: 60px;
      font-family: 'Playfair Display', serif;
    }

    .app-features h2 span {
      color: #0077b6;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .feature-card {
      background: #ffffff;
      border-radius: 18px;
      padding: 40px 25px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
      text-align: center;
      border-top: 6px solid #0099ff;
    }

    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    }

    .feature-card img {
      width: 65px;
      margin-bottom: 25px;
    }

    .feature-card h3 {
      font-size: 22px;
      margin-bottom: 14px;
      color: #1a1a1a;
      font-weight: 600;
    }

    .feature-card p {
      font-size: 15px;
      color: #555;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .app-features h2 {
        font-size: 32px;
      }

      .feature-card h3 {
        font-size: 20px;
      }

      .feature-card p {
        font-size: 14px;
      }
    }

    .about-us {
      background: linear-gradient(to right, #ffffff, #e9f9ff);
      padding: 100px 5%;
      font-family: 'Poppins', sans-serif;
      position: relative;
      overflow: hidden;
    }

    .about-us::before {
      content: "";
      position: absolute;
      top: -100px;
      left: -100px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, #cdefff, transparent);
      z-index: 0;
    }

    .about-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      max-width: 1400px;
      margin: auto;
      gap: 60px;
      position: relative;
      z-index: 1;
    }

    /* LEFT CONTENT */
    .about-content {
      flex: 1;
      min-width: 320px;
      max-width: 700px;
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(8px);
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    }

    .about-content h2 {
      font-size: 48px;
      font-weight: 800;
      line-height: 1.3;
      margin-bottom: 30px;
      color: #111;
    }

    .about-content h2 span {
      color: #0077ff;
    }

    .about-content p {
      font-size: 20px;
      line-height: 1.8;
      margin-bottom: 22px;
      color: #333;
      text-align: justify;
    }

    .about-btn {
      display: inline-block;
      margin-top: 20px;
      padding: 14px 32px;
      background: #0077ff;
      color: #fff;
      font-weight: 600;
      font-size: 18px;
      text-decoration: none;
      border-radius: 10px;
      transition: 0.3s ease;
      box-shadow: 0 8px 20px rgba(0, 119, 255, 0.25);
      animation: pulseBtn 2s infinite;
    }

    .about-btn:hover {
      background: #005dc9;
      transform: translateY(-2px);
    }

    @keyframes pulseBtn {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(0, 119, 255, 0.4);
      }

      50% {
        box-shadow: 0 0 0 12px rgba(0, 119, 255, 0);
      }
    }

    /* RIGHT IMAGE WITH ROTATING TEXT */
    .logo-wrapper {
      position: relative;
      width: 500px;
      /* Bigger logo */
      height: 500px;
      margin: auto;
    }

    .main-logo {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      border: 14px solid #fff;
      /* Slightly thicker border for balance */
      object-fit: cover;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
      position: relative;
      z-index: 2;
    }

    .rotating-text-svg {
      position: absolute;
      top: -85px;
      /* Adjusted for bigger logo */
      left: -85px;
      width: 670px;
      /* Bigger rotating text circle */
      height: 670px;
      animation: rotateCircle 15s linear infinite;
      z-index: 1;
    }

    @keyframes rotateCircle {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    /* Responsive */
    @media (max-width: 992px) {
      .logo-wrapper {
        width: 350px;
        /* Still big for mobile */
        height: 350px;
      }

      .rotating-text-svg {
        width: 470px;
        height: 470px;
        top: -60px;
        left: -60px;
      }
    }

    /* Section Background with Floating Shapes */
    .mission-section {
      position: relative;
      padding: 100px 5%;
      background: linear-gradient(135deg, #e9f9ff, #ffffff);
      overflow: hidden;
      font-family: 'Poppins', sans-serif;
    }

    .mission-section::before,
    .mission-section::after {
      content: "";
      position: absolute;
      width: 200px;
      height: 200px;
      background: rgba(0, 119, 255, 0.1);
      border-radius: 50%;
      animation: float 8s infinite ease-in-out;
    }

    .mission-section::before {
      top: -50px;
      left: -50px;
    }

    .mission-section::after {
      bottom: -50px;
      right: -50px;
      animation-delay: 4s;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0) translateX(0);
      }

      50% {
        transform: translateY(-20px) translateX(15px);
      }
    }

    .mission-container h2 {
      text-align: center;
      font-size: 48px;
      font-weight: 800;
      margin-bottom: 60px;
    }

    .mission-container h2 span {
      background: linear-gradient(90deg, #0077ff, #00e5ff, #0077ff);
      background-size: 200% auto;
      /* makes the gradient wide enough to shimmer */
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: shimmer 3s infinite linear;
    }

    @keyframes shimmer {
      0% {
        background-position: 0% center;
      }

      100% {
        background-position: 200% center;
      }
    }

    /* Cards Layout */
    .mission-content {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }

    .mission-box {
      position: relative;
      flex: 1;
      min-width: 300px;
      max-width: 500px;
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 10px 30px rgba(0, 119, 255, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.3);
      transition: all 0.4s ease;
      overflow: hidden;
    }

    /* Big faded icon */
    .icon-bg {
      position: absolute;
      font-size: 100px;
      color: rgba(0, 119, 255, 0.08);
      top: 10px;
      right: 20px;
      z-index: 0;
    }

    /* Hover Animation */
    .mission-box:hover {
      transform: translateY(-10px) scale(1.03);
      box-shadow: 0 20px 50px rgba(0, 119, 255, 0.3);
    }

    /* Staggered layout */
    .mission-left {
      margin-top: 0;
    }

    .mission-right {
      margin-top: 50px;
    }

    /* Headings & Text */
    .mission-box h3 {
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }

    .mission-box p {
      font-size: 18px;
      line-height: 1.6;
      position: relative;
      z-index: 1;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .mission-content {
        flex-direction: column;
        align-items: center;
      }

      .mission-left,
      .mission-right {
        margin-top: 0;
      }
    }

    /**testimonailas **/
    .testimonial-slider {
      padding: 100px 6%;
      background: linear-gradient(to right, #f1fcff, #e0f7fa);
      text-align: center;
      font-family: 'Poppins', sans-serif;
    }

    .testimonial-slider h2 {
      font-size: 48px;
      /* bigger title */
      margin-bottom: 50px;
      font-weight: 800;
    }

    .testimonial-slider h2 span {
      color: #0077ff;
    }

    .testimonial-wrapper {
      max-width: 850px;
      /* more width for inner content */
      margin: auto;
      position: relative;
    }

    .testimonial-slide {
      display: none;
      flex-direction: column;
      align-items: center;
    }

    .testimonial-slide.active {
      display: flex;
    }

    .testimonial-slide img {
      width: 130px;
      /* bigger profile pic */
      height: 130px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 25px;
      border: 4px solid #fff;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .testimonial-slide p {
      font-size: 24px;
      /* bigger comment text */
      line-height: 1.8;
      color: #333;
      margin-bottom: 25px;
      max-width: 750px;
      /* make text block wider */
    }

    .stars {
      font-size: 26px;
      /* bigger stars */
      margin-bottom: 15px;
    }

    .testimonial-slide h4 {
      font-size: 22px;
      /* bigger name */
      color: #03045e;
      font-weight: 700;
    }

    /* Dots styling */
    .dots {
      margin-top: 30px;
    }

    .dots span {
      height: 16px;
      width: 16px;
      background-color: #bbb;
      border-radius: 50%;
      display: inline-block;
      margin: 0 8px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .dots span.active {
      background-color: #000;
      transform: scale(1.3);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .testimonial-slider h2 {
        font-size: 36px;
      }

      .testimonial-wrapper {
        max-width: 95%;
      }

      .testimonial-slide img {
        width: 110px;
        height: 110px;
      }

      .testimonial-slide p {
        font-size: 20px;
        max-width: 95%;
      }

      .stars {
        font-size: 22px;
      }

      .testimonial-slide h4 {
        font-size: 20px;
      }
    }

    /* Footer Styling */
 footer {
  background: #004aad;
  color: #fff;
  padding: 100px 10% 40px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 70px;
}

.footer-section {
  flex: 1 1 260px;
  min-width: 260px;
}

.footer-logo {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
}

.footer-logo span {
  color: #ffde59;
}

.footer-section p,
.footer-section a {
  font-size: 18px;
  margin: 12px 0;
  color: #d1d1d1;
  text-decoration: none;
}

.footer-section a:hover {
  color: #ffde59;
}

.footer-section h3 {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
}

.contact p i {
  margin-right: 10px;
  font-size: 20px;
  color: #ffde59;
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  font-size: 16px;
  color: #ccc;
}

.footer-bottom strong {
  color: #ffde59;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-section {
    min-width: 100%;
  }
}

