 
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: Arial, sans-serif; color: #333; font-family: poppins; }

  /* NAV */
  nav {
    background: #1a1a2e;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    height: 60px;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
  }
  .nav-logo .logo-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 18px; font-weight: 900;
  }
  .nav-links {
    display: flex;
    gap: 4px;
    list-style: none;
  }
  .nav-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    display: block;
  }
  .nav-links a:hover { background: #e74c3c; color: #fff; }
  .nav-links .btn-login {
    background: #e74c3c;
    color: #fff;
    border-radius: 4px;
    margin-left: 40px;
  }

  /* HERO SLIDER */
  .hero {
    position: relative;
    height: 450px;
    overflow: hidden;
  }
  .slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
  }
  .slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
  .nav-logo img{
    height: 40px;
} 
  .slide-1 { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); }
  .slide-2 { background: linear-gradient(135deg, #0f3460 0%, #533483 50%, #e94560 100%); }
  .slide h2 {font-size: 35px;color: #fff;margin-bottom: 14px;line-height: 1.3;text-shadow: 1px 1px 4px rgba(0,0,0,0.5);}
  .slide p { color: #ddd; font-size: 14px; max-width: 500px; }
  .slide .badge { background: #e74c3c; color: #fff; font-size: 11px; padding: 4px 14px; border-radius: 20px; margin-bottom: 12px; display: inline-block; letter-spacing: 1px; text-transform: uppercase; }
  .slide-dots {
    position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px;
  }
  .dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.4); cursor: pointer;
    transition: background 0.3s;
  }
  .dot.active { background: #e74c3c; }

  /* WELCOME */
  .welcome {
    background: #f8f9fa;
    padding: 70px 24px;
    /* text-align: center; */
    animation: fadeUp 0.6s ease both;
  }
  .welcome h3 {font-size: 25px;color: #1a1a2e;margin-bottom: 20px;}
  .welcome .tagline { color: #e74c3c; font-size: 14px; font-weight: bold; margin-bottom: 14px; letter-spacing: 1px; }
  .welcome p {color: #000;font-size: 14px;max-width: 700px;margin: 0 auto;line-height: 1.8;}

  /* SECTIONS */
  .section {padding: 80px 24px;}
  .section-title {
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    letter-spacing: 1px;
    position: relative;
    margin: 0 0 60px;
  }
  .section-title::after {
    content: '';
    display: block;
    width: 50px; height: 3px;
    background: #e74c3c;
    margin: 8px auto 30px;
    border-radius: 2px;
  }

  /* PROGRAMMES */
  .prog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
  }
  .prog-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px 10px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
    opacity: 0;
    transform: translateY(30px);
  }
  .prog-card.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .prog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(231,76,60,0.18);
    border-color: #e74c3c;
  }
  .prog-icon {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 10px;
    font-size: 22px;
    color: #fff;
    transition: transform 0.3s;
  }
  .prog-card:hover .prog-icon { transform: scale(1.15) rotate(5deg); }
  .prog-card p {font-size: 16px;color: #444;font-weight: 400;line-height: 1.4;margin: 20px 55px 0;}

  /* CREDENTIALS */
  .cred-bg { background: #1a1a2e; }
  .cred-bg .section-title { color: #fff; }
  .cred-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
  }
  .cred-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: background 0.3s, transform 0.3s;
    opacity: 0;
    transform: scale(0.85);
  }
  .cred-card.visible { opacity: 1; transform: scale(1); }
  .cred-card:hover { background: rgba(231,76,60,0.2); transform: translateY(-4px); }
  .cred-num {
    font-size: 22px; font-weight: 800;
    color: #e74c3c; display: block; margin-bottom: 4px;
  }
  .cred-label {font-size: 13px;color: #ccc;}
  .cred-icon { font-size: 26px; margin-bottom: 6px; }

  /* GALLERY */
  .gal-bg { background: #f8f9fa; }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 900px;
    margin: 0 auto;
  }
  .gal-item {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: #ddd;
    aspect-ratio: 4/3;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s, transform 0.5s, box-shadow 0.3s;
  }
  .gal-item.visible { opacity: 1; transform: scale(1); }
  .gal-item:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
  .gal-item:hover .gal-overlay { opacity: 1; }
  .gal-swatch {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    font-weight: 900;
    color: rgba(255,255,255,0.7);
  }
  .gal-overlay {
    position: absolute; inset: 0;
    background: rgba(231,76,60,0.6);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 28px; color: #fff;
  }

  /* FOOTER */
  footer {
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 20px;
    font-size: 12px;
  }
  footer a { color: #e74c3c; text-decoration: none; }

  /* COUNTER ANIM */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* SCROLL INDICATOR */
  .scroll-top {
    position: fixed;
    bottom: 20px; right: 20px;
    width: 38px; height: 38px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 18px; cursor: pointer;
    opacity: 0; transition: opacity 0.3s;
    border: none;
  }
  .scroll-top.show { opacity: 1; }
 .prog-card.active {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(231, 76, 60, 0.18);
    border-color: #e74c3c;
}
.lcontainer{
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}
.limg{width: 42%;}
img{max-width: 100%;}
.lcnt{ width: 50%;}
.nav-logo a{display: flex;
    gap: 20px;
    color: #fff;
    text-decoration: none;}
    .ftop{padding: 30px 100px;text-align: center;background: #000;color: #ffffff;font-size: 20px;font-weight: 300;}
    .ftop i{font-size: 40px;
    color: #b18b27;}