/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(135deg, #e9eef7, #f7f9fc);
  }
  
  /* =========================
     FULL WIDTH NAVBAR
  ========================= */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  
    display: flex;
    align-items: center;
    justify-content: space-between;
  
    padding: 14px 30px;
  
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  
    z-index: 1000;
  
    /* page load animation */
    opacity: 0;
    transform: translateY(-20px);
    animation: navbarLoad 0.6s ease forwards;
  }
  
  /* NAV LINKS - EVEN SPACING */
  .nav-links {
    display: flex;
    flex: 1;              /* takes full space */
    justify-content: space-evenly; /* evenly spaced */
    list-style: none;
    align-items: center;
  }
  
  /* LINKS */
  .nav-links a {
    text-decoration: none;
    color: #222;
    font-size: 14px;
    font-weight: 500;
  
    padding: 10px 16px;
    border-radius: 12px;
  
    background: rgba(255, 255, 255, 0.4);
  
    transition: all 0.3s ease;
    display: inline-block;
  
    /* individual load animation */
    opacity: 0;
    transform: translateY(-10px);
    animation: linkFade 0.5s ease forwards;
  }
  
  /* stagger animation for each link */
  .nav-links li:nth-child(1) a { animation-delay: 0.2s; }
  .nav-links li:nth-child(2) a { animation-delay: 0.3s; }
  .nav-links li:nth-child(3) a { animation-delay: 0.4s; }
  .nav-links li:nth-child(4) a { animation-delay: 0.5s; }
  .nav-links li:nth-child(5) a { animation-delay: 0.6s; }
  
  /* hover */
  .nav-links a:hover {
    background: #4f46e5;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
  }
  
  /* HAMBURGER */
  .hamburger {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    color: #222;
    transition: transform 0.3s ease;
  }
  
  .hamburger:hover {
    transform: rotate(90deg);
  }
  
  /* =========================
     MOBILE
  ========================= */
  @media (max-width: 768px) {
  
    .hamburger {
      display: block;
    }
  
    .nav-links {
      position: absolute;
      top: 60px;
      right: 20px;
  
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
  
      width: 220px;
      padding: 15px;
  
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(15px);
  
      border-radius: 16px;
  
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  
      display: none;
    }
  
    .nav-links.active {
      display: flex;
    }
  }
  
  /* =========================
     ANIMATIONS
  ========================= */
  @keyframes navbarLoad {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes linkFade {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }









.programs{
    padding:100px 8%;
    background:#f8fafc;
}

.programs-heading{
    text-align:center;
    max-width:800px;
    margin:auto;
}

.programs-heading span{
    color:#f4b400;
    font-weight:700;
    letter-spacing:2px;
}

.programs-heading h2{
    font-size:48px;
    color:#17356f;
    margin:10px 0;
}

.programs-heading p{
    color:#666;
    line-height:1.7;
    font-size:18px;
}

.programs-container{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.program-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.5s;
}

.program-card:hover{
    transform:translateY(-15px);
}

.program-image{
    overflow:hidden;
}

.program-image img{
    width:100%;
    height:250px;
    object-fit:cover;

    transition:.8s;
}

.program-card:hover img{
    transform:scale(1.1);
}

.program-content{
    padding:25px;
}

.program-content h3{
    color:#17356f;
    margin-bottom:15px;
    font-size:24px;
}

.program-content p{
    color:#666;
    line-height:1.7;
}

/* Animation */

.program-card{
    animation:fadeUp 1s ease forwards;
}

.program-card:nth-child(2){
    animation-delay:.3s;
}

.program-card:nth-child(3){
    animation-delay:.6s;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(60px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Responsive */

@media(max-width:992px){

    .programs-container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){

    .programs-container{
        grid-template-columns:1fr;
    }

    .programs-heading h2{
        font-size:35px;
    }
}






/* footer starts here */

.footer {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: #ffffff;
    font-family: 'Arial', sans-serif;
  }
  
  .footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
  }
  
  .footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    position: relative;
  }
  
  .footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ffd700;
    border-radius: 2px;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-section ul li {
    margin-bottom: 12px;
  }
  
  .footer-section ul li:last-child {
    margin-bottom: 0;
  }
  
  .footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
  }
  
  .footer-section a:hover {
    color: #ffd700;
    padding-left: 5px;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
  }
  
  .contact-item i {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 24px;
    font-size: 12px;
    color: #ffd700;
  }
  
  .newsletter-form {
    display: flex;
    margin-top: 20px;
    gap: 10px;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
    outline: none;
    backdrop-filter: blur(10px);
  }
  
  .newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }
  
  .newsletter-form button {
    padding: 12px 20px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border: none;
    border-radius: 25px;
    color: #1e3c72;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  }
  
  .footer-bottom {
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.2);
  }
  
  .footer-bottom .footer-container {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
  }
  
  .social-links {
    display: flex;
    gap: 15px;
  }
  
  .social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
  }
  
  .social-links a:hover {
    background: #ffd700;
    color: #1e3c72;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
  }
  
  .footer-legal {
    display: flex;
    flex-direction: column;
    align-items: end;
    text-align: right;
    gap: 10px;
  }
  
  .footer-legal p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .legal-links {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .legal-links li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
  }
  
  .legal-links li a:hover {
    color: #ffd700;
  }