:root {
      --white: #ffffff;
      --light-gray: #f8f9fa;
      --royal-blue: #0a2cff;
      --dark-blue: #061a66;
      --darker-blue: #040d3d;
      --gold: rgb(255, 196, 0);
      --dark-navy: #0a1a3d;
      --charcoal: #333333;
      --gray: #000000;
      --light-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      --medium-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
      --large-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: var(--white);
      color: var(--charcoal);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* Sticky Navigation */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: var(--light-shadow);
      z-index: 1000;
      padding: 1rem 5%;
      transition: all 0.3s ease;
    }
    
    .navbar.scrolled {
      padding: 0.8rem 5%;
      box-shadow: var(--medium-shadow);
    }

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 1rem;
  display: flex;
  align-items: center;
}

    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    
    .logo-icon {
      font-size: 1.8rem;
      color: var(--royal-blue);
      display: flex;
      align-items: center;
    }
    
    .logo-icon img {
      width: 40px;
      height: 40px;
      vertical-align: middle;
      border-radius: 8px;
      transition: all 0.3s ease;
    }
    
    .logo-icon img:hover {
      transform: scale(1.1);
      box-shadow: 0 0 15px rgba(10, 44, 255, 0.4);
    }
    
    .footer-logo .logo-icon img {
      width: 50px;
      height: 50px;
      vertical-align: middle;
      border-radius: 10px;
      transition: all 0.3s ease;
    }
    
    .footer-logo .logo-icon img:hover {
      transform: scale(1.05);
      box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    }
    
    .logo-text {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--dark-navy);
      letter-spacing: -0.5px;
    }
    
    .logo-text span {
      color: var(--gold);
    }

    .nav-menu {
      display: flex;
      gap: 1rem;
      list-style: none;
      margin-left: auto;
    }

    .nav-link {
      text-decoration: none;
      color: var(--charcoal);
      font-weight: 500;
      font-size: 1rem;
      transition: all 0.3s ease;
      position: relative;
      padding: 0.5rem 0;
    }
    
    .nav-link:hover {
      color: var(--royal-blue);
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--royal-blue);
      transition: width 0.3s ease;
      box-shadow: 0 0 10px rgba(10, 44, 255, 0.5);
    }
    
    .nav-link:hover::after {
      width: 100%;
    }
    
    .nav-link {
      position: relative;
      overflow: hidden;
    }
    
    .nav-link::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--gold), transparent);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    
    .nav-link:hover::before {
      opacity: 1;
    }

    .nav-btn {
      background: linear-gradient(135deg, var(--royal-blue), var(--dark-blue));
      color: white;
      border: none;
      padding: 0.5rem 1.2rem;
      border-radius: 20px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 0.9rem;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-btn::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
      transform: rotate(45deg);
      transition: all 0.5s ease;
      opacity: 0;
    }
    
    .nav-btn:hover::before {
      opacity: 1;
      transform: rotate(45deg) translate(20%, 20%);
    }
    
    .nav-btn:hover {
      transform: translateY(-2px);
      box-shadow: var(--medium-shadow);
    }

    .hamburger {
     margin-left: auto;
    }


    .hamburger {
      display: none;
      cursor: pointer;
    }

    .hamburger div {
      width: 25px;
      height: 3px;
      background-color: var(--dark-navy);
      margin: 4px 0;
      transition: 0.4s;
    }

    @media (min-width: 769px) {
  .hamburger {
    display: none;
    }
    }

    @media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

    .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}




    /* Hero section adjustment */
    .hero-section {
      margin-top: 100px; /* Account for fixed navbar */
      padding: 4rem 5% 3rem;
      background: linear-gradient(135deg, rgba(10, 44, 255, 0.05), rgba(212, 175, 55, 0.05));
      text-align: center;
    }

    .hero {
      margin-top: 3rem;
      max-width: 700px;
    }

    .hero h2 {
      font-size: 3rem;
      margin-bottom: 551.2rem;
      color: var(--dark-navy);
      line-height: 1.2;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero p {; 
      
      font-size: 1.2rem;
      color: var(--gray);
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 2rem;
    }
    
    .hero-buttons {
      display: flex;
      gap: 1.2rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    
    .primary-btn {
      background: linear-gradient(135deg, var(--royal-blue), var(--dark-blue));
      color: white;
      padding: 0.7rem 1.8rem;
      border-radius: 25px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
      box-shadow: var(--light-shadow);
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .primary-btn::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
      transform: rotate(45deg);
      transition: all 0.5s ease;
      opacity: 0;
    }
    
    .primary-btn:hover::before {
      opacity: 1;
      transform: rotate(45deg) translate(20%, 20%);
    }
    
    .primary-btn:hover {
      transform: translateY(-3px);
      box-shadow: var(--medium-shadow);
    }
    
    .secondary-btn {
      background: transparent;
      color: var(--royal-blue);
      padding: 0.7rem 1.8rem;
      border-radius: 25px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.3s ease;
      border: 2px solid var(--royal-blue);
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
    
    .secondary-btn::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgba(10, 44, 255, 0.2), transparent);
      transform: rotate(45deg);
      transition: all 0.5s ease;
      opacity: 0;
    }
    
    .secondary-btn:hover::before {
      opacity: 1;
      transform: rotate(45deg) translate(20%, 20%);
    }
    
    .secondary-btn:hover {
      background: var(--royal-blue);
      color: white;
      transform: translateY(-3px);
      box-shadow: var(--light-shadow);
    }

    .btn {
      display: inline-block;
      margin-top: 1.2rem;
      background: var(--gold);
      color: #000;
      padding: 0.6rem 1.4rem;
      border-radius: 25px;
      text-decoration: none;
      font-weight: 600;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .btn::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgba(0,0,0,0.1), transparent);
      transform: rotate(45deg);
      transition: all 0.5s ease;
      opacity: 0;
    }
    
    .btn:hover::before {
      opacity: 1;
      transform: rotate(45deg) translate(20%, 20%);
    }

    section {
      padding: 3rem 5%;
    }

    .section-title {
      text-align: center;
      color: var(--dark-navy);
      margin-bottom: 3rem;
      font-size: 2.2rem;
      position: relative;
      display: inline-block;
      margin-left: auto;
      margin-right: auto;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 3px;
      background: linear-gradient(to right, var(--royal-blue), var(--gold));
      border-radius: 2px;
    }
    
    .section-title {
      position: relative;
      overflow: hidden;
    }
    
    .section-title::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background: linear-gradient(to right, var(--gold), var(--royal-blue));
    }
    
    .about-section {
      padding: 4rem 5%;
      background: var(--light-gray);
    }
    
    .feature-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 55px;
      height: 55px;
      background: linear-gradient(135deg, var(--royal-blue), var(--dark-blue));
      border-radius: 12px;
      margin: 0 auto 1rem;
      transition: all 0.3s ease;
      color: white;
      font-size: 1.5rem;
    }
    
    .feature-card:hover .feature-icon {
      transform: scale(1.1);
      box-shadow: 0 10px 20px rgba(10, 44, 255, 0.3);
    }
    
    .about-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }
    
    .about-text h2 {
      font-size: 2.5rem;
      color: var(--dark-navy);
      margin-bottom: 1.5rem;
    }
    
    .about-text p {
      color: var(--gray);
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }
    
    .about-image {
      text-align: center;
    }
    
    .about-image img {
      max-width: 100%;
      border-radius: 20px;
      box-shadow: var(--medium-shadow);
      transition: all 0.3s ease;
    }
    
    .about-image img:hover {
      transform: scale(1.02);
      box-shadow: 0 15px 30px rgba(10, 44, 255, 0.2);
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }
    
    .curriculum-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .curriculum-card {
      background: white;
      border-radius: 16px;
      padding: 1.8rem;
      box-shadow: var(--light-shadow);
      transition: all 0.4s ease;
      border: 1px solid rgba(10, 44, 255, 0.1);
      text-align: center;
    }
    
    .curriculum-card {
      position: relative;
      overflow: hidden;
    }
    
    .curriculum-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(to right, var(--royal-blue), var(--gold));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }
    
    .curriculum-card:hover::before {
      transform: scaleX(1);
    }
    
    .curriculum-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--medium-shadow);
      border-color: rgba(10, 44, 255, 0.2);
    }
    
    .curriculum-icon {
      font-size: 2.2rem;
      margin-bottom: 1.2rem;
      color: var(--royal-blue);
      display: flex;
      align-items: center;
      justify-content: center;
      width: 65px;
      height: 65px;
      background: linear-gradient(135deg, rgba(10, 44, 255, 0.1), rgba(212, 175, 55, 0.1));
      border-radius: 16px;
      margin: 0 auto 1.2rem;
      transition: all 0.3s ease;
    }
    
    .curriculum-card:hover .curriculum-icon {
      transform: scale(1.1);
    }
    
    .curriculum-card h3 {
      color: var(--dark-navy);
      margin-bottom: 1rem;
      font-size: 1.5rem;
    }
    
    .curriculum-card p {
      color: var(--gray);
      margin-bottom: 1.5rem;
    }
    
    .subject-list {
      list-style: none;
      text-align: left;
      margin-top: 1rem;
    }
    
    .subject-list li {
      padding: 0.5rem 0;
      border-bottom: 1px dashed rgba(10, 44, 255, 0.1);
      color: var(--charcoal);
    }
    
    .subject-list li:last-child {
      border-bottom: none;
    }

    .card {
      background: white;
      padding: 2rem;
      border-radius: 16px;
      box-shadow: var(--light-shadow);
      transition: all 0.4s ease;
      border: 1px solid rgba(10, 44, 255, 0.1);
      height: 100%;
      display: flex;
      flex-direction: column;
    }
    
    .card {
      position: relative;
      overflow: hidden;
    }
    
    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(to right, var(--royal-blue), var(--gold));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }
    
    .card:hover::before {
      transform: scaleX(1);
    }
    
    .card:hover {
      transform: translateY(-10px);
      box-shadow: var(--medium-shadow);
      border-color: rgba(10, 44, 255, 0.2);
    }
    
    .pulse {
      animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
      70% { box-shadow: 0 0 0 12px rgba(212, 175, 55, 0); }
      100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
    }
    
    .card-icon {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: var(--royal-blue);
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, rgba(10, 44, 255, 0.1), rgba(212, 175, 55, 0.1));
      border-radius: 12px;
      margin: 0 auto 1rem;
      transition: all 0.3s ease;
    }
    
    .card-icon::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(10, 44, 255, 0.2), rgba(212, 175, 55, 0.2));
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    
    .card:hover .card-icon {
      transform: scale(1.1);
    }
    
    .card h3 {
      color: var(--dark-navy);
      margin-bottom: 1rem;
      font-size: 1.4rem;
    }
    
    .card p {
      color: var(--gray);
      margin-bottom: 1.5rem;
      flex-grow: 1;
    }
    
    .card-link {
      color: var(--royal-blue);
      text-decoration: none;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
    }
    
    .card-link:hover {
      color: var(--dark-blue);
      gap: 0.8rem;
    }

    .card h3 {
      color: var(--royal-blue);
      margin-bottom: 1rem;
    }

    .vision-list li {
      margin-bottom: 0.8rem;
    }

    form {
      max-width: 800px;
      margin: auto;
      background: white;
      padding: 2.5rem;
      border-radius: 16px;
      box-shadow: var(--light-shadow);
    }

    form input, form textarea, form select {
      width: 100%;
      padding: 0.9rem;
      margin-bottom: 1.2rem;
      border-radius: 10px;
      border: 1px solid #ddd;
      font-size: 1rem;
      transition: all 0.3s ease;
      background: linear-gradient(to bottom, #ffffff, #fafafa);
    }
    
    form input:focus, form textarea:focus, form select:focus {
      box-shadow: 0 0 0 3px rgba(10, 44, 255, 0.2);
    }
    
    form input:focus, form textarea:focus, form select:focus {
      outline: none;
      border-color: var(--royal-blue);
      box-shadow: 0 0 0 3px rgba(10, 44, 255, 0.2);
    }
    
    .form-row {
      display: flex;
      gap: 1.5rem;
      margin-bottom: 1.2rem;
    }
    
    .form-group {
      flex: 1;
    }
    
    .form-group.full {
      width: 100%;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      color: var(--dark-navy);
      font-weight: 500;
    }
    
    .form-message {
      margin-top: 0.5rem;
      font-size: 0.85rem;
      color: #e74c3c;
      display: none;
    }
    
    .form-submit {
      background: linear-gradient(135deg, var(--royal-blue), var(--dark-blue));
      color: white;
      border: none;
      padding: 1rem 2.5rem;
      border-radius: 30px;
      font-weight: 600;
      font-size: 1.1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
      margin-top: 1rem;
    }
    
    .form-submit:hover {
      transform: translateY(-3px);
      box-shadow: var(--medium-shadow);
    }
    
    .enrollment-tabs {
      max-width: 800px;
      margin: auto;
    }
    
    .tab-header {
      display: flex;
      border-bottom: 2px solid #eee;
      margin-bottom: 2rem;
    }
    
    .tab-btn {
      padding: 1rem 1.5rem;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 1rem;
      color: var(--charcoal);
      border-bottom: 3px solid transparent;
      transition: all 0.3s ease;
    }
    
    .tab-btn:hover {
      color: var(--royal-blue);
    }
    
    .tab-btn.active {
      color: var(--royal-blue);
      border-bottom: 3px solid var(--royal-blue);
    }
    
    .tab-content {
      display: none;
    }
    
    .tab-content.active {
      display: block;
      animation: fadeIn 0.5s ease;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .form-success {
      background: #d4edda;
      color: #155724;
      padding: 1rem;
      border-radius: 10px;
      margin-bottom: 1.5rem;
      display: none;
    }

    .contact-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      padding: 0 2rem;
    }
    
    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    
    .contact-item {
      display: flex;
      gap: 1.2rem;
      align-items: flex-start;
      background: white;
      padding: 1.5rem;
      border-radius: 16px;
      box-shadow: var(--light-shadow);
      transition: all 0.3s ease;
    }
    
    .contact-item:hover {
      transform: translateY(-5px);
      box-shadow: var(--medium-shadow);
    }
    
    .contact-icon {
      font-size: 1.8rem;
    }
    
    .contact-details h3 {
      color: var(--dark-navy);
      margin-bottom: 0.3rem;
    }
    
    .contact-details p {
      color: var(--gray);
      margin: 0;
    }
    
    .map-container {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--medium-shadow);
    }
    
    .map-container iframe {
      width: 100%;
      height: 300px;
      border: none;
    }
    
    .location-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      max-width: 800px;
      margin: 2rem auto;
    }
    
    .location-country {
      background: white;
      padding: 2rem;
      border-radius: 16px;
      box-shadow: var(--light-shadow);
      text-align: center;
    }
    
    .location-country h3 {
      color: var(--dark-navy);
      margin-bottom: 1.2rem;
      font-size: 1.4rem;
    }
    
    .location-list {
      list-style: none;
      text-align: left;
    }
    
    .location-list li {
      padding: 0.6rem 0;
      border-bottom: 1px dashed rgba(10, 44, 255, 0.1);
      color: var(--charcoal);
    }
    
    .location-list li:last-child {
      border-bottom: none;
    }
    
    .location-note {
      max-width: 800px;
      margin: 2rem auto;
      text-align: center;
      color: var(--gray);
      font-style: italic;
    }
    
    .section-description {
      max-width: 800px;
      margin: 0 auto 2rem;
      text-align: center;
      color: var(--gray);
      font-size: 1.1rem;
    }
    
    .founder-container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    
    .founder-intro {
      text-align: center;
      margin-bottom: 3rem;
    }
    
    .founder-intro h3 {
      font-size: 2rem;
      color: var(--dark-navy);
      margin-bottom: 0.5rem;
    }
    
    .founder-subtitle {
      color: var(--gold);
      font-size: 1.2rem;
      font-weight: 500;
      margin-bottom: 1.5rem;
    }
    
    .founder-intro p {
      font-size: 1.1rem;
      color: var(--charcoal);
      margin-bottom: 1rem;
      line-height: 1.8;
    }
    
    .founder-milestones {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-bottom: 3rem;
    }
    
    .milestone-card {
      background: white;
      padding: 2rem;
      border-radius: 16px;
      box-shadow: var(--light-shadow);
      border-left: 4px solid var(--gold);
    }
    
    .milestone-card h4 {
      color: var(--dark-navy);
      margin-bottom: 1rem;
      font-size: 1.3rem;
    }
    
    .milestone-card p {
      color: var(--charcoal);
      line-height: 1.7;
    }
    
    .founder-mission {
      text-align: center;
      padding: 2rem;
      background: rgba(10, 44, 255, 0.05);
      border-radius: 16px;
    }
    
    .founder-mission h4 {
      color: var(--dark-navy);
      margin-bottom: 1rem;
    }
    
    .founder-family {
      font-style: italic;
      color: var(--gold);
      font-weight: 500;
    }
    
    footer {
      background: var(--dark-navy);
      color: var(--white);
      padding: 3rem 5% 1.5rem;
    }
    
    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2.5rem;
    }
    
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 1.2rem;
    }
    
    .footer-logo .logo-icon {
      font-size: 1.8rem;
      color: var(--gold);
    }
    
    .footer-logo .logo-text {
      font-size: 1.4rem;
      font-weight: 700;
    }
    
    .footer-logo .logo-text span {
      color: var(--gold);
    }
    
    .footer-column h4 {
      color: var(--gold);
      margin-bottom: 1rem;
      font-size: 1.1rem;
    }
    
    .footer-column ul {
      list-style: none;
    }
    
    .footer-column ul li {
      margin-bottom: 0.5rem;
      list-style: none;
    }
    
    .footer-column ul {
      padding-left: 0;
    }
    
    .footer-column ul li a {
      display: block;
      padding: 0.15rem 0;
    }
    
    .footer-column ul li a {
      color: #bbb;
      text-decoration: none;
      transition: all 0.3s ease;
      font-size: 0.95rem;
    }
    
    .footer-column ul li a:hover {
      color: var(--white);
      padding-left: 3px;
    }
    
    .footer-contact {
      grid-column: 1 / -1;
      text-align: center;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      margin-top: 1.5rem;
      color: #bbb;
    }
    
    .footer-contact p:first-child {
      margin-bottom: 0.8rem;
    }
    
    .social-links {
      display: flex;
      justify-content: center;
      gap: 1.2rem;
      margin: 1rem 0;
    }
    
    .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 35px;
      height: 35px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      color: white;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .social-links a::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
      transform: rotate(45deg);
      transition: all 0.5s ease;
      opacity: 0;
    }
    
    .social-links a:hover::before {
      opacity: 1;
      transform: rotate(45deg) translate(20%, 20%);
    }
    
    .social-links a:hover {
      background: var(--gold);
      transform: translateY(-3px);
      color: var(--dark-navy);
    }

    footer span {
      color: var(--gold);
    }

    @media (max-width: 1024px) {
      .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
      }
      
      .about-text {
        order: 2;
      }
      
      .about-image {
        order: 1;
      }
      
      .contact-container {
        grid-template-columns: 1fr;
      }
      
      .form-row {
        flex-direction: column;
        gap: 0;
      }
    }
    
    @media (max-width: 1200px) {
      .nav-menu {
        gap: 0.8rem;
      }
      
      .nav-container {
        gap: 0.8rem;
      }
      
      .nav-link {
        font-size: 0.95rem;
      }
      
      .nav-btn {
        padding: 0.6rem 1.3rem;
        font-size: 0.9rem;
      }
    }
    
    @media (max-width: 1024px) {
      .nav-menu {
        gap: 0.7rem;
      }
      
      .nav-container {
        gap: 0.7rem;
      }
      
      .nav-link {
        font-size: 0.9rem;
      }
      
      .nav-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
      }
    }
    
    @media (max-width: 768px) {
      .navbar {
        padding: 1rem;
      }
      
      .nav-container {
        position: relative;
      }
      
      .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--medium-shadow);
        padding: 2rem 0;
      }
      
      .nav-menu.active {
        left: 0;
      }
      
      .hamburger {
        display: block;
      }
      
      .hamburger.active div:nth-child(2) {
        opacity: 0;
      }
      
      .hamburger.active div:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
      }
      
      .hamburger.active div:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
      }
      
      .hero-section {
        padding: 4rem 5% 3rem;
        margin-top: 10px;
      }
      
      .hero h2 {
        font-size: 2.2rem;
      }
      
      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }
      
      .section-title {
        font-size: 2.8rem;
      }
      
      .curriculum-grid {
        grid-template-columns: 1fr;
      }
      
      .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
      }
      
      .footer-links {
        gap: 1.5rem;
      }
      
      .footer-column {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
      }
    }
    
    @media (max-width: 480px) {
      .hero h2 {
        font-size: 1.8rem;
      }
      
      .section-title {
        font-size: 1.6rem;
      }
      
      .card,
      .curriculum-card {
        padding: 1.8rem;
      }
      
      .primary-btn,
      .secondary-btn {
        width: 100%;
        margin-bottom: 1rem;
      }
    }
    
    
    .event-card {
      background: white;
      border-radius: 16px;
      box-shadow: var(--light-shadow);
      overflow: hidden;
      display: flex;
      transition: all 0.3s ease;
    }
    
    .event-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--medium-shadow);
    }
    
    .event-date {
      background: linear-gradient(135deg, var(--royal-blue), var(--dark-blue));
      color: white;
      padding: 1.2rem 0.8rem;
      min-width: 60px;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    
    .event-date::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
      transform: rotate(30deg);
      z-index: 1;
    }
    
    .event-date > * {
      position: relative;
      z-index: 2;
    }
    
    .event-date .day {
      display: block;
      font-size: 1.8rem;
      font-weight: bold;
      line-height: 1;
    }
    
    .event-date .month {
      display: block;
      font-size: 0.8rem;
      text-transform: uppercase;
      margin-top: 0.3rem;
    }
    
    .event-content {
      padding: 1.5rem;
      flex: 1;
    }
    
    .event-content h3 {
      color: var(--dark-navy);
      margin: 0 0 0.8rem 0;
      font-size: 1.3rem;
    }
    
    .event-content p {
      color: var(--gray);
      margin: 0 0 1rem 0;
      font-size: 0.95rem;
    }
    
    .event-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.85rem;
      color: var(--charcoal);
    }
    
    .event-meta span {
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }
    
    
    
    /* Social Media Embeds Styles */
    .social-embeds-section {
      padding: 5rem 5%;
      background: white;
    }
    
    .social-embeds-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2.5rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .social-embed {
      text-align: center;
    }
    
    .social-embed h3 {
      color: var(--dark-navy);
      margin-bottom: 1.2rem;
      font-size: 1.4rem;
    }
    
    .social-embed p {
      color: var(--gray);
      margin-top: 1rem;
      font-size: 0.95rem;
    }
    
    .video-container,
    .facebook-embed,
    .instagram-embed,
    .twitter-embed {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--light-shadow);
      margin-bottom: 1rem;
    }
    
    iframe {
      width: 100%;
      border: none;
    }
    
    .twitter-timeline {
      width: 100% !important;
    }
    
    
    .events-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
    }
    
    .event-item {
      background: white;
      border-radius: 16px;
      box-shadow: var(--light-shadow);
      overflow: hidden;
      display: flex;
      transition: all 0.3s ease;
    }
    
    .event-item:hover {
      transform: translateY(-5px);
      box-shadow: var(--medium-shadow);
    }
    
    .event-date {
      background: linear-gradient(135deg, var(--gold), var(--royal-blue));
      color: white;
      padding: 1.5rem 1rem;
      min-width: 70px;
      text-align: center;
    }
    
    .event-date .day {
      display: block;
      font-size: 1.8rem;
      font-weight: bold;
      line-height: 1;
    }
    
    .event-date .month {
      display: block;
      font-size: 0.8rem;
      text-transform: uppercase;
      margin-top: 0.3rem;
    }
    
    .event-details {
      padding: 1.5rem;
      flex: 1;
    }
    
    .event-details h3 {
      color: var(--dark-navy);
      margin: 0 0 0.8rem 0;
      font-size: 1.3rem;
    }
    
    .event-details p {
      color: var(--gray);
      margin: 0 0 1rem 0;
      font-size: 0.95rem;
    }
    
    .event-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      font-size: 0.85rem;
      color: var(--charcoal);
    }
    
    .event-meta span {
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }
    
    

    :root{
  --blue:#0a3d91;
  --blue-dark:#071c3f;
  --gold:#f5c542;

  /* Glass */
  --glass:rgba(255,255,255,0.65);
  --glass-border:rgba(255,255,255,0.4);
  --blur:blur(16px);

  /* Text */
  --text-dark:#1f2937;
  --text-light:#4b5563;

  /* Background */
  --page-bg:linear-gradient(180deg,#f9fafb,#eef2f7);
}

*{
  box-sizing:border-box;
}


body{
  margin:0;
  font-family:'Segoe UI',sans-serif;
  background:var(--page-bg);
  color:var(--text-dark);
}

/* ================= HEADER ================= */
header{
  padding:20px 30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(255,255,255,0.7);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(0,0,0,0.05);
}

nav a{
  color:var(--blue);
  margin-left:20px;
  text-decoration:none;
  font-weight:500;
}

nav a:hover{
  color:var(--gold);
}

/* ================= HERO ================= */
.hero{
  margin:40px auto;
  max-width:1200px;
  padding:90px 40px;
  border-radius:28px;

  background:
    linear-gradient(
      rgba(255,255,255,0.65),
      rgba(255,255,255,0.65)
    ),
    url("assets/images/hero1.jpg") center/cover;

  backdrop-filter:blur(10px);
  box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.hero h1{
  font-size:3rem;
  max-width:720px;
  color:var(--blue-dark);
}

.hero p{
  max-width:600px;
  color:var(--text-light);
}

/* ================= BUTTON ================= */
.btn{
  display:inline-block;
  margin-top:0.1px;
  padding:14px 36px;
  border-radius:40px;
  background:linear-gradient(90deg,var(--gold),#ffe08a);
  color:#111;
  font-weight:600;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(245,197,66,.45);
  transition:transform .3s ease, box-shadow .3s ease;
}

.btn:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 35px rgba(245,197,66,.6);
}

/* ================= GLASS GRID ================= */
.glass-grid{
  max-width:1200px;
  margin:70px auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:28px;
  padding:0 20px;
}

/* ================= GLASS CARD ================= */
.glass-card{
  background:var(--glass);
  backdrop-filter:var(--blur);
  border-radius:22px;
  padding:32px;
  border:1px solid var(--glass-border);

  box-shadow:
    0 10px 25px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.4);

  transition:transform .3s ease, box-shadow .3s ease;
}

.glass-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .hero{
    padding:60px 25px;
  }

  .hero h1{
    font-size:2.2rem;
  }
}


/* =========================
   HERO SLIDESHOW
========================= */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* 🔴 THIS WAS MISSING */
  display: flex;
  align-items: center;
  justify-content: center;

  background-image: url("hero1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transition: opacity 2.5s cubic-bezier(.4, 0, .2, 1);
}

/* Dark overlay */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* Text on top */
.hero {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 900px;
  padding: 1rem;
}

.hero {
  max-width: 850px;
  margin: 0 auto;
  padding: 3rem 2.5rem;

  /* GLASS EFFECT */

  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);

  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);

  text-align: center;
  color: #fff;
}

.hero h2 {
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0.95;
  color: #ffffff;
}

@media (max-width: 768px) {
  .hero {
    padding: 2rem 1.5rem;
    border-radius: 12px;
  }

  .hero h2 {
    font-size: 1.9rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

.hero {
  transition: 
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border 0.4s ease;
}

.hero:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.35),
    0 0 25px rgba(95, 94, 19, 0.45); /* GOLD glow */

  border: 1px solid rgba(212, 175, 55, 0.6);
}

.hero-buttons .btn {
  position: relative;
  transition: 
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.hero-buttons .btn:hover {
  transform: translateY(-4px);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.35),
    0 0 18px rgba(212, 175, 55, 0.6); /* GOLD glow */
}

.hero h2 {
  background: linear-gradient(90deg, #d4af37, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================
   FLOATING WHATSAPP BUTTON
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 2000;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #111;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.logo-text {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.1;
  color: #0612c5;
}

.logo-sub {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
}

.logo-text {
  text-align: left;
}


.hero-section {
  height: 80vh;                 /* CRITICAL */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* dark overlay for readability */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 3rem;
  text-align: center;
  color: #fff;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(6px);
  border-radius: 14px;
}


.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.slider-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots span.active {
  background: #fff;
  transform: scale(1.3);
}


/* ===== ABOUT PAGE NAVBAR FIX ===== */
.about-page .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.about-page .nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.about-page .hamburger {
  margin-left: auto;
}

.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  text-align: center;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  max-width: 700px;
}

.hero-section {
  padding-top: 70px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slider-dots span {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  cursor: pointer;
}

.slider-dots span.active {
  background: #fff;
}

/* Home Page Hero - Only applies on home page */
.home-page .hero-section {
  position: relative;
  width: 100%;
  height: 135vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("images/home-1.jpg") center/cover no-repeat;
  overflow: hidden;
}

.home-page .hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.home-page .hero {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 90%;
  padding: 2rem;
  text-align: center;
  color: #fff;
  border-radius: 16px;
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.home-page .hero h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin: 0;
}

.home-page .hero p {
  font-size: 1rem;
  line-height: 1.5;
}

.home-page .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.home-page .hero-buttons a {
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.home-page .primary-btn {
  background-color: #0066cc;
  color: #fff;
}

.home-page .primary-btn:hover {
  background-color: #005bb5;
}

.home-page .secondary-btn {
  background-color: #fff;
  color: #0066cc;
}

.home-page .secondary-btn:hover {
  background-color: #f0f0f0;
}

/* Slider dots */
.home-page .slider-dots {
  position: absolute;
  bottom: 2rem;
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.home-page .slider-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: 0.3s;
}

.home-page .slider-dots span.active {
  background: #fff;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .home-page .hero h2 {
    font-size: 1.8rem;
  }
  .home-page .hero p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .home-page .hero h2 {
    font-size: 1.6rem;
  }
  .home-page .hero p {
    font-size: 0.9rem;
  }
  .home-page .hero-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .home-page .hero h2 {
    font-size: 1.3rem;
  }
  .home-page .hero p {
    font-size: 0.85rem;
  }
  .home-page .hero {
    padding: 1.2rem;
  }
}

/* Only hero buttons on home page */
.home-page .hero-section .hero-buttons a.primary-btn {
  background-color: #0066cc;
  color: #1a1a1a;
}

.home-page .hero-section .hero-buttons a.primary-btn:hover {
  background-color: #005bb5;
}

.home-page .hero-section .hero-buttons a.secondary-btn {
  background-color: #fff;
  color: #1a1a1a;
}

.home-page .hero-section .hero-buttons a.secondary-btn:hover {
  background-color: #f0f0f0;
}

.footer-flat {
  background: #061a66;
  color: #fff;
  padding: 14px 20px;
  font-size: 14px;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Brand */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.footer-brand img {
  width: 38px;
  height: 38px;
}

/* Links */
.footer-nav {
  list-style: none;
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 0;
}

.footer-nav a {
  color: #ddd;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #fff;
}

/* Contact */
.footer-contact {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 13px;
}

.footer-contact a {
  color: #ddd;
  text-decoration: none;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.footer-email {
  color: #00fff2; /* teal */
  text-decoration: none;
  font-weight: 500;
}

.footer-email:hover {
  color: #ffffff;
  text-decoration: underline;
}

.programs {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.program-card {
  background: linear-gradient(135deg, rgb(255, 187, 0), rgb(255, 218, 117));
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  text-align: center;
}

.program-card img {
  width: 100%;
  height: auto;
  display: block;
}

.apply-btn {
  display: block;
  margin: 1.2rem auto 1.8rem;
  padding: 14px 26px;
  width: fit-content;
  background: #0069be;
  color: #ffffff;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.apply-btn:hover {
  background: #76b857;
  transform: scale(1.05);
}

/* Mobile safety */
@media (max-width: 768px) {
  .programs {
    gap: 2rem;
  }
}

/* Service hero */
.service-hero {
  height: 65vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  height: 100%;
  background: rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  color: #fff;
}

/* Content */
.service-content {
  max-width: 900px;
  margin: auto;
  padding: 3rem 1.5rem;
}

.service-content ul {
  padding-left: 1.2rem;
}

/* Apply button */
.apply-box {
  margin-top: 3rem;
  text-align: center;
}

.apply-btn {
  background: #110f07;
  color: #ffffff;
  padding: 1rem 2.5rem;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
}

.apply-btn:hover {
  background: #3a3a3a;
}

.hero-section {
  min-height: 80vh;
  width: 100%;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.program-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;   /* THIS is the key */
  padding: 12px;
  background: #f2c94c;
  border-radius: 14px;
}

@media (max-width: 600px) {
  .program-card img {
    height: 140px;
  }
}

.hero {
  max-width: 900px;
  margin: auto;
  padding: 1.5rem;
  text-align: center;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

.hero {
  max-width: 900px;
  margin: auto;
  padding: 1.5rem;
  text-align: center;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 1rem;
  }
}


.logo-sub {
  color: #1e3a8a !important;
}

/* ===== MOBILE HEADER SCALE UP ===== */
@media (max-width: 768px) {

  .navbar {
    padding: 14px 18px;
  }

  .nav-container {
    min-height: 64px;
  }

  /* LOGO ICON */
  .logo-icon img {
    width: 48px !important;
    height: 48px !important;
  }

  /* LOGO TEXT */
  .logo-text {
    font-size: 1.1rem;
    line-height: 1.2;
  }

  .logo-sub {
    font-size: 0.85rem;
    color: #2563eb; /* blue */
  }

  /* HAMBURGER */
  .hamburger {
    width: 34px;
    height: 26px;
  }

  .hamburger div {
    height: 3px;
  }
}


/* ===== HERO TEXT SCALE UP (MOBILE) ===== */
@media (max-width: 768px) {

  .hero h2 {
    font-size: 2.1rem;   /* BIG headline */
    line-height: 1.25;
    font-weight: 700;
  }

  .hero p {
    font-size: 1.1rem;   /* clear subtitle */
    line-height: 1.6;
    margin-top: 12px;
  }
}


/* =========================
   HARD RESET HERO SPACING
   ========================= */

/* desktop + mobile */
.hero-section.home-hero {
  margin: 0 !important;
  padding: 0 !important;
  min-height: auto !important;
  display: flex;
  align-items: center;
}

/* NAVBAR OFFSET ONLY */
.hero-section.home-hero {
  padding-top: 80px !important;
}

/* HERO CARD */
.hero-section.home-hero .hero {
  margin: 0 auto !important;
  padding: 32px 24px !important;
  max-width: 900px;
}

/* MOBILE FIX */
@media (max-width: 768px) {

  .hero-section.home-hero {
    min-height: 70vh !important;
    padding-top: 64px !important;
  }

  .hero-section.home-hero .hero {
    padding: 22px 16px !important;
  }

  .hero-section.home-hero h2 {
    font-size: 1.9rem !important;
    line-height: 1.25 !important;
  }

  .hero-section.home-hero p {
    font-size: 1.05rem !important;
  }
}


/* Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width:768px){
  .hero-section {
    padding-top: 1px;
    min-height: calc(1vh - 1px);
  }

  .hero {
    padding: 1.5rem 2rem;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
