:root {
        --primary-purple: #6a1b9a;
        --dark-purple: #4a148c;
        --light-purple: #9c4dcc;
        --burnt-orange: #e64a19;
        --gold: #ffb300;
        --light-gold: #ffd54f;
        --charcoal: #424242;
        --light-gray: #f5f5f5;
        --white: #ffffff;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }

      body {
        font-family: "Poppins", sans-serif;
        line-height: 1.6;
        color: var(--charcoal);
        background-color: black;
        overflow-x: hidden;
      }

      h1,
      h2,
      h3,
      h4,
      h5 {
        font-family: "Playfair Display", serif;
        font-weight: 600;
        margin-bottom: 1rem;
        color: var(--gold);
      }

      h1 {
        font-size: 3rem;
        line-height: 1.2;
      }

      h2 {
        font-size: 2.5rem;
        position: relative;
        margin-bottom: 2rem;
      }

      h2:after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 80px;
        height: 4px;
        background: linear-gradient(to right, var(--burnt-orange), var(--primary-purple));
        border-radius: 2px;
      }

      p {
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
      }

      .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
      }

      .btn {
        display: inline-block;
        padding: 12px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 1rem;
      }

      .btn-primary {
        background: linear-gradient(
          135deg,
          var(--primary-purple),
          var(--light-purple)
        );
        color: var(--white);
        box-shadow: 0 4px 15px rgba(106, 27, 154, 0.3);
      }

      .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(106, 27, 154, 0.4);
      }

      .btn-secondary {
        background: linear-gradient(135deg, var(--burnt-orange), var(--gold));
        color: var(--white);
        box-shadow: 0 4px 15px rgba(230, 74, 25, 0.3);
      }

      .btn-secondary:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(230, 74, 25, 0.4);
      }

      /* Header Styles */
      header {
        background-color: black;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
      }

      .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
      }

      .logo {
        display: flex;
        align-items: center;
        gap: 15px;
      }

      .logo-img {
        height: 100px;
        width:150px;
      }

      .logo h3 {
        font-size: 1.8rem;
        margin-bottom: 0;
        color: var(--primary-purple);
      }

      .logo span {
        color: var(--burnt-orange);
      }

      .nav-menu {
        display: flex;
        list-style: none;
      }

      .nav-menu li {
        margin-left: 30px;
      }

      .nav-menu a {
        text-decoration: none;
        color:white;
        font-weight: 500;
        transition: color 0.3s ease;
        position: relative;
      }

      .nav-menu a:hover {
        color: var(--primary-purple);
      }

      .nav-menu a.active {
        color: var(--primary-purple);
        font-weight: 600;
      }

      .nav-menu a.active:after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--primary-purple);
      }

      .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
      }

      .hamburger span {
        width: 25px;
        height: 3px;
        background-color: var(--primary-purple);
        margin: 3px 0;
        transition: 0.3s;
      }

     /* Page Hero */
.page-hero {
  background: linear-gradient(
      rgba(105, 27, 154, 0.281),
      rgba(74, 20, 140, 0.747)
    ),
    url("https://images.unsplash.com/photo-1757866332661-d82bb649dbb8?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTA1fHxibGFjayUyMGxhZGllcyUyMGluJTIwYSUyMHNhbG9ufGVufDB8fDB8fHww&auto=format&fit=crop&q=60&w=500")
      no-repeat center center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  color: var(--white);
  text-align: center;
  padding-top: 80px;
}

/* Hero Section */
      .hero {
        height: 100vh;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: var(--light);
        padding: 0 5%;
        overflow: hidden;
        background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
          url('images.unsplash.com/photo-1580619305218-8423a7ef79b4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
      }

      .hero-content {
        max-width: 800px;
        z-index: 2;
      }

      .hero h1 {
        font-size: 4rem;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
        min-height: 120px;
      }

      .typewriter-text {
        display: inline-block;
        overflow: hidden;
        border-right: 3px solid var(--accent);
        white-space: nowrap;
        margin: 0 auto;
        animation: typing 3.5s steps(40, end),
          blink-caret 0.75s step-end infinite;
      }
        .hero p {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        max-width: 600px;
        text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
      }

      /* Page Content */
      .page-content {
        padding: 80px 0;
      }

      /* Requirements Section */
      .requirements {
        margin-bottom: 60px;
      }

      .requirements-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-bottom: 40px;
      }

      .requirements-card {
        background: var(--white);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      }

      .requirements-card h3 {
        color: var(--primary-purple);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .requirements-card h3 i {
        color: var(--burnt-orange);
      }

      .requirements-card ul {
        list-style: none;
      }

      .requirements-card li {
        margin-bottom: 12px;
        padding-left: 30px;
        position: relative;
      }

      .requirements-card li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--burnt-orange);
        font-weight: bold;
      }
/* Fees Section */
.fees-section {
  margin-bottom: 60px;
}

/* Accordion Container */
.fees-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Accordion Item */
.accordion-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Accordion Header */
.accordion-header {
  background: linear-gradient(135deg, var(--primary-purple), var(--light-purple));
  color: rgba(255, 255, 255, 0.829);
  font-weight: 500;
  padding: 15px 20px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: linear-gradient(135deg, var(--light-purple), var(--primary-purple));
}

/* Accordion Icon */
.accordion-icon {
  font-weight: bold;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

/* Accordion Content */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

/* Active Accordion */
.accordion-item.active .accordion-content {
  max-height: 500px; /* enough for table */
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg); /* plus turns into X */
}

/* Fees Table inside Accordion */
.accordion-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  border-radius: 0 0 10px 10px; /* Rounded bottom corners */
  overflow: hidden;
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.1);
}

.accordion-content table th,
.accordion-content table td {
  padding: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  color: white;
}

.accordion-content table th {
  background: rgba(106,27,154,0.3);
  color: var(--gold);
}

.accordion-content table tr:nth-child(even) {
  background-color: rgba(106, 27, 154, 0.05);
}

.accordion-content table td:first-child {
  font-weight: 500;
}

/* Note section */
.note {
  background: var(--light-gray);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--burnt-orange);
  margin-top: 20px;
}


      /* Enrollment Form Section */
      .enroll-form-section {
        background: var(--light-gray);
        padding: 60px 0;
        border-radius: 10px;
      }

      .enroll-form {
        background: var(--white);
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        max-width: 800px;
        margin: 0 auto;
      }

      .form-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-bottom: 25px;
      }

      .form-group {
        margin-bottom: 25px;
      }

      .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: var(--charcoal);
      }

      .form-control {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        font-family: "Poppins", sans-serif;
        font-size: 1rem;
        transition: border-color 0.3s ease;
      }

      .form-control:focus {
        outline: none;
        border-color: var(--primary-purple);
        box-shadow: 0 0 0 3px rgba(106, 27, 154, 0.1);
      }

      textarea.form-control {
        min-height: 150px;
        resize: vertical;
      }

      /* WhatsApp Button */
      .whatsapp-link {
        text-align: center;
        margin-top: 30px;
      }

      .btn-whatsapp {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: linear-gradient(135deg, #25d366, #128c7e);
        color: var(--white);
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
      }

      .btn-whatsapp:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
      }

      .btn-whatsapp img {
        width: 24px;
        height: 24px;
      }

      /* WhatsApp Float */
      .whatsapp-float {
        position: fixed;
        bottom: 25px;
        right: 25px;
        width: 60px;
        height: 60px;
        background-color: #25d366;
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
        z-index: 100;
        transition: all 0.3s ease;
        animation: pulse 2s infinite;
      }

      .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
      }

   
      /* ===== DETAILED FOOTER ===== */
      footer {
        background: black;
        color: var(--white);
        padding: 80px 0 0;
      }

      .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        margin-bottom: 50px;
      }

      .footer-col h3 {
        color: goldenrod;
        margin-bottom: 25px;
        font-size: 1.3rem;
        position: relative;
      }

      .footer-col h3:after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 50px;
        height: 3px;
        background-color: var(--primary-purple);
      }

      .footer-col p {
        margin-bottom: 20px;
        font-size: 1rem;
        opacity: 0.8;
        line-height: 1.6;
      }

      .footer-links {
        list-style: none;
      }

      .footer-links li {
        margin-bottom: 12px;
      }

      .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .footer-links a:hover {
        color: var(--gold);
        padding-left: 5px;
      }

      .footer-links a i {
        width: 20px;
        text-align: center;
      }

      .social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
      }

      .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: var(--white);
        transition: all 0.3s ease;
      }

      .social-links a:hover {
        background-color: var(--gold);
        transform: translateY(-3px);
      }

      .footer-bottom {
        text-align: center;
        padding: 25px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
      }

      .footer-newsletter {
        background: rgba(255, 255, 255, 0.05);
        padding: 25px;
        border-radius: 10px;
        margin-top: 20px;
      }

      .newsletter-form {
        display: flex;
        gap: 10px;
        margin-top: 15px;
      }

      .newsletter-form input {
        flex: 1;
        padding: 12px 15px;
        border: none;
        border-radius: 5px;
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
      }

      .newsletter-form input::placeholder {
        color: rgba(255, 255, 255, 0.6);
      }

      .newsletter-form button {
        background: var(--gradient-secondary);
        color: var(--white);
        border: none;
        padding: 12px 20px;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .newsletter-form button:hover {
        transform: translateY(-2px);
      }


      /* Animations */
      @keyframes pulse {
        0% {
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        }
        70% {
          box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        }
        100% {
          box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
      }

      .animate {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.5s ease, transform 0.5s ease;
      }

      .animate.visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* Responsive Styles */
      @media (max-width: 992px) {
        h1 {
          font-size: 2.5rem;
        }

        h2 {
          font-size: 2rem;
        }

        .fees-table {
          display: block;
          overflow-x: auto;
        }
      }

      @media (max-width: 768px) {
        .navbar {
          padding: 15px 0;
        }

        .nav-menu {
          position: fixed;
          top: 70px;
          left: -100%;
          width: 100%;
          height: calc(100vh - 70px);
          background-color: black;
          flex-direction: column;
          align-items: center;
          padding-top: 50px;
          transition: left 0.3s ease;
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        }

        .nav-menu.active {
          left: 0;
        }

        .nav-menu li {
          margin: 15px 0;
        }

        .hamburger {
          display: flex;
        }

        .hamburger.active span:nth-child(1) {
          transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
          opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
          transform: rotate(-45deg) translate(7px, -6px);
        }

        .page-hero h1 {
          font-size: 2.5rem;
        }

        .page-hero p {
          font-size: 1.1rem;
        }

        .enroll-form {
          padding: 30px 20px;
        }

        .form-grid {
          grid-template-columns: 1fr;
        }
      }