
    :root {
      --navy:    #0d1b3e;
      --navy2:   #162350;
      --gold:    #c9952a;
      --gold2:   #e8b84b;
      --cream:   #fdf8f0;
      --white:   #ffffff;
      --text:    #1a1a2e;
      --muted:   #6b7280;
      --radius:  16px;
      --trans:   0.38s cubic-bezier(.4,0,.2,1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    
    html,
    body{
        max-width:100%;
        overflow-x:hidden;
    }

    html { scroll-behavior: smooth; }

    body {
      position: relative;
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5 {
      letter-spacing: -0.01em;
    }
    
    .mobileNavLink{
        
    }
    
    #mobileProgramsCollapse .nav-link-custom{
        
    }
/* =========================================
   MODERN TOPBAR
========================================= */

.topbar-modern{
    background: linear-gradient(90deg,#07152f,#0d1b3e);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 5px 0;
    position: relative;
    z-index: 999;
    overflow: hidden;
}

.topbar-modern::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.06),
        transparent
    );
    animation: topbarshine 6s linear infinite;
}

@keyframes topbarshine{
    100%{
        left:100%;
    }
}

.topbar-flex{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    position:relative;
    z-index:2;
}

/* LEFT */

.topbar-left{
    display:flex;
    align-items:center;
    gap:22px;
    flex-wrap:wrap;
}

.topbar-left a{
    color:rgba(255,255,255,0.88);
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    display:flex;
    align-items:center;
    gap:8px;
    transition:0.3s ease;
}

.topbar-left a:hover{
    color:#f5c542;
    transform:translateY(-1px);
}

.topbar-left i{
    color:#f5c542;
    font-size:13px;
}

/* CENTER */

.topbar-center {
    background: linear-gradient(135deg,#f5c542,#ffdb7a);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 18px rgba(245,197,66,0.25);
    white-space: nowrap;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow{
    0%{
        box-shadow:0 0 0 0 rgba(245,197,66,0.5);
    }
    70%{
        box-shadow:0 0 0 12px rgba(245,197,66,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(245,197,66,0);
    }
}

/* RIGHT */

.topbar-right{
    display:flex;
    align-items:center;
    gap:10px;
}

.topbar-right a{
    width:34px;
    height:34px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:14px;
    text-decoration:none;
    transition:0.3s ease;
}

.topbar-right a:hover{
    background:#f5c542;
    color:#000;
    transform:translateY(-3px);
}

/* =========================================
   MOBILE VIEW
========================================= */

@media(max-width:767px){

    .topbar-modern{
        padding:8px 0;
    }

    .topbar-flex{
        justify-content:space-between;
        gap:10px;
    }

    .desktop-only{
        display:none !important;
    }

    .topbar-left a{
        font-size:13px;
        gap:6px;
    }

    .topbar-left i{
        font-size:12px;
    }

    .topbar-center{
        font-size:11px;
        padding:7px 12px;
    }

}

    /* ── NAVBAR ── */
    .navbar-main {
      background: rgba(255,255,255,.96);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 2px 30px rgba(13,27,62,.1);
      padding: 4px 0;
      position: sticky;
      top: 0;
      z-index: 1030;
      transition: var(--trans);
    }
    .navbar-main.scrolled {
      padding: 8px 0;
      box-shadow: 0 4px 40px rgba(13,27,62,.15);
    }
    .navbar-brand img { height: 52px; }
    .brand-text {
      line-height: 1.1;
    }
    .brand-text .name {
      font-size: 1.45rem;
      font-weight: 700;
      color: var(--navy);

    }
    .brand-text .sub {
      font-size: 0.65rem;
      font-weight: 600;
      color: var(--gold);
 
      text-transform: uppercase;
    }
    .nav-link-custom {
     font-weight: 500;
        font-size: 01rem;
        /*letter-spacing: .04em;*/
        color: #000;
        padding: 6px 12px !important;
        border-radius: 8px;
        transition: var(--trans);
        position: relative;
        text-decoration: none;
    }
    .nav-link-custom::after {
      content: '';
      position: absolute;
      bottom: 2px; left: 50%; right: 50%;
      height: 2px;
      background: var(--gold);
      border-radius: 2px;
      transition: var(--trans);
    }
    .nav-link-custom:hover::after,
    .nav-link-custom.active::after {
      left: 16px; right: 16px;
    }
    .nav-link-custom:hover { color: var(--gold) !important; }
    .btn-enroll {
      background: orange;
      color: #fff !important;
      font-weight: 600;
      font-size: 0.85rem;

      padding: 6px 18px !important;
      border-radius: 50px !important;
      box-shadow: 0 4px 20px rgba(201,149,42,.4);
      transition: var(--trans);
      border: none;
    }
    .btn-enroll:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(201,149,42,.5);
      color: #fff !important;
    }

    /* offcanvas */
    .offcanvas { width: 300px !important; }
    .offcanvas-header { background: var(--navy); }
    .offcanvas-body { background: var(--cream); }
    .offcanvas .nav-link-custom {
      padding: 12px 20px !important;
      border-bottom: 1px solid rgba(13,27,62,.07);
      border-radius: 0;
    }
    .offcanvas .nav-link-custom::after { display: none; }
    .offcanvas ul li{
   padding: 0px 0px 0px 0px !important;
    margin: 5px 0px 0px -36px !important;
    list-style: none;
    border: 1px solid #ccc;
    display: flex;
    }
    .offcanvas ul li a{
      font-size: 15px !important;
      line-height: 1.2;
    }
    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      background: var(--navy);
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 80% 50%, rgba(201,149,42,.18) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 10% 80%, rgba(201,149,42,.1) 0%, transparent 60%),
        linear-gradient(135deg, #0d1b3e 0%, #162350 60%, #1e2e5c 100%);
    }
    .hero-pattern {
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(201,149,42,.08) 1px, transparent 1px);
      background-size: 40px 40px;
    }
    .hero-lines {
      position: absolute; inset: 0;
      overflow: hidden;
    }
    .hero-lines span {
      position: absolute;
      display: block;
      background: linear-gradient(90deg, transparent, rgba(201,149,42,.15), transparent);
      height: 1px;
      width: 100%;
      animation: lineSweep 6s linear infinite;
    }
    .hero-lines span:nth-child(1) { top: 20%; animation-delay: 0s; }
    .hero-lines span:nth-child(2) { top: 50%; animation-delay: 2s; }
    .hero-lines span:nth-child(3) { top: 80%; animation-delay: 4s; }
    @keyframes lineSweep {
      0%   { transform: translateX(-100%); opacity: 0; }
      10%  { opacity: 1; }
      90%  { opacity: 1; }
      100% { transform: translateX(100%); opacity: 0; }
    }

    .hero-content { position: relative; z-index: 2; }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(201,149,42,.15);
      border: 1px solid rgba(201,149,42,.4);
      color: var(--gold2);
      font-size: 0.75rem;
      font-weight: 600;

      text-transform: uppercase;
      padding: 8px 18px;
      border-radius: 50px;
      margin-bottom: 28px;
      backdrop-filter: blur(10px);
    }
    .hero-title {
      font-size: clamp(2.8rem, 6vw, 5.5rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.08;
      margin-bottom: 14px;
    }
    .hero-title .accent {
      background: linear-gradient(90deg, var(--gold), var(--gold2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-tagline {
      font-style: italic;
      color: rgba(255,255,255,.65);
      font-size: 1.25rem;
      margin-bottom: 24px;
    }
    .hero-desc {
      color: rgba(255,255,255,.7);
      font-size: 1rem;
      line-height: 1.75;
      max-width: 520px;
      margin-bottom: 40px;
    }
    .hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn-hero-primary {
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      color: var(--navy) !important;
      font-weight: 700;
      font-size: 0.9rem;

      padding: 14px 36px;
      border-radius: 50px;
      box-shadow: 0 6px 30px rgba(201,149,42,.5);
      transition: var(--trans);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-hero-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(201,149,42,.6);
      color: var(--navy) !important;
    }
    .btn-hero-secondary {
      background: rgba(255,255,255,.08);
      border: 1.5px solid rgba(255,255,255,.3);
      color: #fff !important;
      font-weight: 600;
      font-size: 0.9rem;

      padding: 14px 36px;
      border-radius: 50px;
      backdrop-filter: blur(10px);
      transition: var(--trans);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-hero-secondary:hover {
      background: rgba(255,255,255,.18);
      transform: translateY(-3px);
    }
    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 56px;
      flex-wrap: wrap;
    }
    .hero-stat { text-align: left; }
    .hero-stat .num {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--gold2);
      line-height: 1;
    }
    .hero-stat .lbl {
      font-size: 0.75rem;
      color: rgba(255,255,255,.55);

      text-transform: uppercase;
      margin-top: 4px;
    }

    .hero-card-wrap {
      position: relative;
      z-index: 2;
    }
    .hero-img-card {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(201,149,42,.25);
      border-radius: 24px;
      overflow: hidden;
      backdrop-filter: blur(10px);
      box-shadow: 0 30px 80px rgba(0,0,0,.5);
    }
    .hero-img-card img {
      width: 100%;
      height: 500px;
      object-fit: cover;
      object-position: center top;
    }
    .hero-float-badge {
      position: absolute;
      bottom: -20px;
      left: -20px;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      color: var(--navy);
      padding: 20px 28px;
      border-radius: 16px;
      font-weight: 700;
      font-size: 0.82rem;
      
      box-shadow: 0 10px 40px rgba(201,149,42,.5);
    }
    .hero-float-badge .big {
      font-size: 2rem;
      line-height: 1;
      display: block;
    }

    /* ── SECTION COMMON ── */
    section { padding: 50px 0; }
    .section-tag {
      display: inline-block;
      background: rgba(201,149,42,.1);
      color: var(--gold);
      font-size: 0.72rem;
      font-weight: 700;
     
      text-transform: uppercase;
      padding: 7px 18px;
      border-radius: 50px;
      border: 1px solid rgba(201,149,42,.3);
      margin-bottom: 16px;
    }
    .section-title {
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 700;
      color: var(--navy);
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .section-title .accent {
      background: orange;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .section-divider {
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--gold2));
      border-radius: 3px;
      margin: 0 auto 24px;
    }
    .section-divider.left { margin-left: 0; }

    /* ── ABOUT ── */
    #about { background: var(--cream); }
    .about-img-wrap {
      position: relative;
    }
    .about-img-main {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(13,27,62,.15);
    }
    .about-img-main img {
      width: 100%;
      /*height: 480px;*/
      object-fit: cover;
    }
    .about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 174px;
    background: linear-gradient(135deg, var(--navy), var(--navy2));
    border: 4px solid var(--gold);
    border-radius: 16px;
    padding: 11px 7px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(13, 27, 62, .3);
    }
    .about-img-accent .big {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--gold2);
      line-height: 1;
    }
    .about-img-accent p { color: rgba(255,255,255,.8); font-size: 0.75rem; margin: 0; }
    .about-feature {
      display: flex;
      gap: 16px;
      margin-bottom: 20px;
      align-items: flex-start;
    }
    .about-feature-icon {
      flex-shrink: 0;
      width: 48px; height: 48px;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--navy);
      font-size: 1.2rem;
      box-shadow: 0 4px 16px rgba(201,149,42,.3);
    }
    .about-feature h6 {
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--navy);
      margin-bottom: 4px;
    }
    .about-feature p { font-size: 0.83rem; color: var(--muted); margin: 0; }

    /* ── PROGRAMS ── */
    #programs { background: var(--white); }
    .program-card {
      background: var(--white);
      border: 1.5px solid rgba(13,27,62,.08);
      border-radius: var(--radius);
      padding: 5px 10px;
      transition: var(--trans);
      height: 100%;
      position: relative;
      overflow: hidden;
    }
    .program-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--gold), var(--gold2));
      transform: scaleX(0);
      transform-origin: left;
      transition: var(--trans);
    }
    .program-card:hover {
      transform: translateY(-8px);
      border-color: rgba(201,149,42,.4);
      box-shadow: 0 20px 60px rgba(13,27,62,.1);
      background: var(--navy);
      color: #fff;
    }
    .program-card:hover h5{
      color:orange;
    }
    .program-card:hover p{
      color:#eee;
    }
    .program-card:hover::before { transform: scaleX(1); }
    .program-icon {
      width: 60px; height: 60px;
      background: linear-gradient(135deg, rgba(201,149,42,.15), rgba(232,184,75,.1));
      border: 1.5px solid rgba(201,149,42,.3);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
      font-size: 1.5rem;
      margin-bottom: 20px;
      transition: var(--trans);
    }
    .program-card:hover .program-icon {
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      color: var(--navy);
      box-shadow: 0 6px 24px rgba(201,149,42,.4);
    }
    .program-card h5 {
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
      margin-top: 10px;
    }

     .program-card img{
      border-radius: 8px;
      height: 181px;
       object-fit: cover;
     }
    .program-card p { font-size: 0.84rem; color: var(--muted); margin-bottom: 16px; }
    .program-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--navy);
      color: #eee;
      font-size: 0.72rem;
      font-weight: 700;
     
      padding: 6px 14px;
      border-radius: 50px;
    }

    /* ── VISION MISSION ── */
    #vision { background: var(--navy); overflow: hidden; position: relative; }
    #vision::before {
      content: '';
      position: absolute;
      top: -50%; right: -20%;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,149,42,.12) 0%, transparent 70%);
    }
    .vm-card {
      background: rgba(255,255,255,.05);
      border: 1.5px solid rgba(201,149,42,.25);
      border-radius: 24px;
      padding: 48px 40px;
      backdrop-filter: blur(10px);
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: var(--trans);
    }
    .vm-card:hover {
      border-color: rgba(201,149,42,.5);
      background: rgba(255,255,255,.07);
    }
    .vm-card .vm-icon {
      width: 72px; height: 72px;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: var(--navy);
      margin-bottom: 28px;
      box-shadow: 0 8px 30px rgba(201,149,42,.4);
    }
    .vm-card h3 {
      font-size: 1.8rem;
      color: var(--gold2);
      margin-bottom: 16px;
    }
    .vm-card p { color: rgba(255,255,255,.75); line-height: 1.8; font-size: 0.95rem; }
    .vm-list { list-style: none; padding: 0; margin-top: 20px; }
    .vm-list li {
      display: flex;
      gap: 12px;
      color: rgba(255,255,255,.75);
      font-size: 0.9rem;
      margin-bottom: 14px;
      align-items: flex-start;
    }
    .vm-list li .dot {
      flex-shrink: 0;
      width: 22px; height: 22px;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--navy);
      font-size: 0.6rem;
      margin-top: 1px;
    }

    /* ── WHY SKILLPRO ── */
    #why { background: var(--cream); }
    .why-card {
      background: var(--white);
      border-radius: var(--radius);
      padding: 36px 28px;
      text-align: center;
      border: 1.5px solid rgba(13,27,62,.07);
      transition: var(--trans);
      height: 100%;
    }
    .why-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 60px rgba(13,27,62,.1);
      border-color: var(--gold2);
    }
    .why-icon {
      width: 80px; height: 80px;
      margin: 0 auto 24px;
      background: linear-gradient(135deg, var(--navy), var(--navy2));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: var(--gold2);
      box-shadow: 0 8px 30px rgba(13,27,62,.2);
      transition: var(--trans);
    }
    .why-card:hover .why-icon {
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      color: var(--navy);
      box-shadow: 0 10px 35px rgba(201,149,42,.4);
    }
    .why-card h5 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
    }
    .why-card p { font-size: 0.83rem; color: var(--muted); }

    /* ── FACILITIES ── */
    #facilities { background: var(--white); }
    .facility-card {
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      height: 280px;
      cursor: pointer;
    }
    .facility-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .6s cubic-bezier(.4,0,.2,1);
    }
    .facility-card:hover img { transform: scale(1.08); }
    .facility-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(0deg, rgb(14 14 14 / 65%) 0%, rgba(13, 27, 62, .3) 60%, transparent 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 28px 24px;
      transition: var(--trans);
    }
    .facility-overlay .fac-icon {
      width: 48px; height: 48px;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--navy);
      font-size: 1.2rem;
      margin-bottom: 12px;
      transform: translateY(8px);
      opacity: 0;
      transition: var(--trans);
    }
    .facility-card:hover .fac-icon {
      transform: translateY(0);
      opacity: 1;
    }
    .facility-overlay h5 {
      color: #fff;
      font-size: 1.5rem;
      margin: 0;
      font-weight: 700;
    }
    .facility-overlay p {
      color: rgba(255,255,255,.7);
      font-size: 0.8rem;
      margin: 6px 0 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease, opacity .4s ease;
      opacity: 0;
    }
    .facility-card:hover .facility-overlay p {
      max-height: 80px;
      opacity: 1;
    }

    /* ── HIGHLIGHTS ── */
    #highlights { background: var(--cream); }
    .highlight-item {
      text-align: center;
      padding: 15px 24px;
      background: var(--white);
      border-radius: var(--radius);
      border: 1.5px solid rgba(13,27,62,.06);
      transition: var(--trans);
      height: 100%;
    }
    .highlight-item:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(13,27,62,.1);
      border-color: rgba(201,149,42,.4);
    }
    .highlight-item .hi-icon {
      font-size: 2.5rem;
      margin-bottom: 20px;
      display: block;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .highlight-item h5 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--navy);
      text-transform: uppercase;
    
    }

    /* ── COUNTERS ── */
    #counters {
      background: linear-gradient(135deg, var(--navy) 0%, #1e2e5c 100%);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }
    #counters::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(201,149,42,.07) 1px, transparent 1px);
      background-size: 30px 30px;
    }
    .counter-item {
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .counter-num {
      font-size: clamp(3rem, 6vw, 5rem);
      font-weight: 700;
      color: var(--gold2);
      line-height: 1;
    }
    .counter-label {
      color: rgba(255,255,255,.65);
      font-size: 0.82rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-top: 8px;
    }
    .counter-divider {
      width: 1px;
      background: rgba(201,149,42,.3);
      align-self: stretch;
    }

    /* ── CONTACT ── */
    #contact { background: var(--white); }
    .contact-card {
      background: var(--navy);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(13,27,62,.2);
    }
    .contact-info {
      padding: 60px 48px;
      background: linear-gradient(135deg, var(--navy), var(--navy2));
      position: relative;
      overflow: hidden;
    }
    .contact-info::before {
      content: '';
      position: absolute;
      bottom: -60px; right: -60px;
      width: 300px; height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,149,42,.15) 0%, transparent 70%);
    }
    .contact-info h3 {
      color: #fff;
      font-size: 2rem;
      margin-bottom: 30px;
    }
    .contact-detail {
      display: flex;
      gap: 16px;
      margin-bottom: 24px;
      align-items: flex-start;
    }
    .contact-detail .ci-icon {
      flex-shrink: 0;
      width: 44px; height: 44px;
      background: rgba(201,149,42,.15);
      border: 1px solid rgba(201,149,42,.35);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold2);
      font-size: 1.1rem;
    }
    .contact-detail .ci-text span {
      display: block;
      font-size: 0.72rem;
      color: rgba(255,255,255,.5);
      text-transform: uppercase;
   
      margin-bottom: 3px;
    }
    .contact-detail .ci-text a, .contact-detail .ci-text p {
      color: rgba(255,255,255,.88);
      font-size: 0.92rem;
      text-decoration: none;
      margin: 0;
    }
    .contact-detail .ci-text a:hover { color: var(--gold2); }
    .contact-form-wrap {
      padding: 60px 48px;
      background: var(--cream);
    }
    .contact-form-wrap h3 {
      font-size: 1.8rem;
      color: var(--navy);
      margin-bottom: 28px;
    }
    .form-control-custom, .form-select-custom {
      border: 1.5px solid rgba(13,27,62,.15);
      border-radius: 12px;
      padding: 14px 18px;
      font-size: 0.9rem;
      color: var(--text);
      background: var(--white);
      transition: var(--trans);
      width: 100%;
      outline: none;
      margin-bottom: 16px;
    }
    .form-control-custom:focus, .form-select-custom:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(201,149,42,.15);
    }
    textarea.form-control-custom { resize: vertical; min-height: 120px; }
    .btn-submit {
      background: linear-gradient(135deg, var(--navy), var(--navy2));
      color: var(--gold2);
      font-weight: 700;
      font-size: 0.9rem;
   
      padding: 14px 40px;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      transition: var(--trans);
      box-shadow: 0 6px 24px rgba(13,27,62,.25);
      width: 100%;
    }
    .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 36px rgba(13,27,62,.35);
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      color: var(--navy);
    }

    /* ── FOOTER ── */
    footer {
      background: #080f22;
      color: rgba(255,255,255,.65);
      padding: 60px 0 28px;
    }
    .footer-logo .name {
      font-size: 1.6rem;
      font-weight: 700;
      color: #fff;
    }
    .footer-logo .sub {
      font-size: 0.65rem;
      color: var(--gold);
  
      text-transform: uppercase;
    }
    footer p { font-size: 0.85rem; line-height: 1.75; margin-top: 12px; }
    .footer-heading {
      color: var(--gold2);
      font-weight: 700;
      font-size: 0.82rem;
    
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
      color: rgba(255,255,255,.6);
      text-decoration: none;
      font-size: 0.87rem;
      transition: var(--trans);
    }
    .footer-links a:hover { color: var(--gold2); padding-left: 4px; }
    .footer-social {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }
    .social-btn {
      width: 40px; height: 40px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,.7);
      text-decoration: none;
      font-size: 1rem;
      transition: var(--trans);
    }
    .social-btn:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--navy);
      transform: translateY(-3px);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.07);
      margin-top: 50px;
      padding-top: 24px;
      font-size: 0.8rem;
      text-align: center;
      color: rgba(255,255,255,.4);
    }
    .footer-bottom span { color: var(--gold2); }

    /* ── FLOATING ENQUIRE ── */
    .floating-enquire {
      position: fixed;
      left: 24px;
      bottom: 24px;
      z-index: 999;
      background: linear-gradient(135deg, var(--gold), var(--gold2));
      color: var(--navy);
      font-weight: 700;
      font-size: 0.82rem;
 
      padding: 14px 24px;
      border-radius: 50px;
      text-decoration: none;
      box-shadow: 0 6px 30px rgba(201,149,42,.5);
      display: flex;
      align-items: center;
      gap: 8px;
      transition: var(--trans);
      animation: pulse 2s ease-in-out infinite;
    }
    .floating-enquire:hover {
      transform: translateY(-4px) scale(1.04);
      color: var(--navy);
      box-shadow: 0 14px 40px rgba(201,149,42,.6);
      animation: none;
    }
    @keyframes pulse {
      0%, 100% { box-shadow: 0 6px 30px rgba(201,149,42,.5); }
      50% { box-shadow: 0 6px 40px rgba(201,149,42,.8), 0 0 0 10px rgba(201,149,42,.1); }
    }

    /* ── BACK TO TOP ── */
    #backTop {
      position: fixed;
      right: 24px;
      bottom: 82px;
      z-index: 999;
      width: 44px; height: 44px;
      background: var(--navy);
      color: var(--gold2);
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(13,27,62,.3);
      transition: var(--trans);
      opacity: 0;
      pointer-events: none;
    }
    #backTop.show { opacity: 1; pointer-events: all; }
    #backTop:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }

    /* ── MISC UTILITY ── */
    .text-gold { color: var(--gold) !important; }
    .bg-navy { background: var(--navy) !important; }

    @media (max-width: 991px) {
      section { padding: 70px 0; }
      .about-img-accent { bottom: -16px; right: -10px; width: 160px; padding: 18px 16px; }
      .contact-info, .contact-form-wrap { padding: 40px 28px; }
    }
    @media (max-width: 767px) {
      .hero-img-card { display: none; }
      .hero-float-badge { display: none; }
      .hero-stats { gap: 24px; }
      .counter-divider { display: none; }
      .contact-info, .contact-form-wrap { padding: 32px 24px; }
    }


    /* ── MEGA DROPDOWN SYSTEM ── */
    .mega-dropdown:hover .mega-menu-content {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    
    .mega-menu-content {
      display: block !important;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      /*width: 100vw;
      max-width: 100%;*/
      margin: 0 auto;
      max-width: 1100px;
      background: var(--white);
      box-shadow: 0 15px 40px rgba(13, 27, 62, 0.12);
      border-top: 3px solid var(--gold) !important;
      border-radius: 0 0 var(--radius) var(--radius) !important;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
      z-index: 1000;
    }

    .mega-menu-heading {

      font-size: 0.78rem !important;
      font-weight: 700;
      text-transform: uppercase;
   
      color: var(--navy);
      margin-bottom: 18px;
      padding-bottom: 8px;
      border-bottom: 1px solid rgba(13, 27, 62, 0.06);
    }

    .mega-menu-links li {
      margin-bottom: 14px;
    }

    .mega-menu-links a {
      display: block;
      text-decoration: none;
      transition: var(--trans);
      padding: 4px 8px;
      border-radius: 6px;
      margin-left: -8px;
    }

    .mega-menu-links a:hover {
      background-color: var(--cream);
    }

    .mega-menu-links strong {
      display: block;
      font-size: 0.88rem;
      color: var(--navy);
      transition: color 0.2s ease;
    }

    .mega-menu-links a:hover strong {
      color: var(--gold);
    }

    .mega-menu-links span {
      display: block;
      font-size: 0.72rem;
      color: var(--muted);
      margin-top: 1px;
    }

    /* Utility resets for Bootstrap components */
    .no-caret::after {
      display: none !important;
    }
    .style-chevron {
      transition: transform 0.3s ease;
      display: inline-block;
    }
    .mega-dropdown:hover .style-chevron {
      transform: rotate(180deg);
    }

    /* ── MOBILE DROPDOWN SYSTEM ── */
    .style-mobile-sub {
font-size: 0.95rem !important;
    font-weight: 500 !important;
    color: rgba(13, 27, 62, 0.85) !important;
    margin-left: -21px;
    /* display: revert; */
    border-bottom: 0px !important;
    }
    
    /* Rotate the trailing arrow smoothly when the area shifts to visible */
    [aria-expanded="true"] .mobile-dropdown-caret {
      transform: rotate(180deg);
      color: var(--gold);
    }

    /* =========================================
       DESKTOP & MOBILE BANNER RESPONSIVE CSS
    ========================================= */

   /* Default */
.desktop-banner{
    display:block;
    width:100%;
}

.mobile-banner{
    display:none;
    width:100%;
}

/* Desktop image */
.desktop-banner img{
    width:100%;
    height:auto;
    display:block;
}

/* Mobile image */
.mobile-banner img{
    width:100%;
    height:auto;
    display:block;
}

/* Mobile Devices */
@media only screen and (max-width: 767px){

    .desktop-banner{
        display:none !important;
    }

    .mobile-banner{
        display:block !important;
    }

    .program-card img{
        border-radius:20px;
        height:auto;
        object-fit:cover;
    }
}

    .skillpro-admission-banner{
    position: relative;
    overflow: hidden;
    background: #0a3b73;
    /*margin: 50px 0;*/
}

.skillpro-admission-banner .banner-img{
    height: 320px;
    overflow: hidden;
}

.skillpro-admission-banner .banner-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.skillpro-admission-banner .banner-img img:hover{
    transform: scale(1.05);
}

.skillpro-admission-banner .banner-content{
    padding: 60px 70px;
    color: #fff;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        linear-gradient(rgba(10,59,115,0.95), rgba(10,59,115,0.95)),
        url('images/pattern.png');
    background-size: cover;
}

.skillpro-admission-banner .sub-title{
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
    color: #f5c542;
    font-weight: 600;
}

.skillpro-admission-banner h2{
    font-size: 52px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 30px;
}

.skillpro-admission-banner .apply-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 14px 30px;
    background: #f5c542;
    color: #000;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: 0.4s ease;
}

.skillpro-admission-banner .apply-btn:hover{
    background: #fff;
    transform: translateY(-3px);
}

.skillpro-admission-banner .apply-btn span{
    font-size: 22px;
}

@media(max-width:991px){

    .skillpro-admission-banner .banner-content{
        padding: 50px 25px;
        text-align: center;
        align-items: center;
        height: auto;
    }

    .skillpro-admission-banner h2{
        font-size: 38px;
    }

    .skillpro-admission-banner .banner-img{
        height: 250px;
    }
}

@media(max-width:576px){

    .skillpro-admission-banner h2{
        font-size: 30px;
    }

    .skillpro-admission-banner .apply-btn{
        font-size: 16px;
        padding: 12px 24px;
    }
}

.desktopOpen{
    display: block;
}

.mobileOpen{
    display: none;
}

/* Mobile View */
@media only screen and (max-width: 767px){

    .desktopOpen{
        display: none;
    }

    .mobileOpen{
        display: block;
    }
}



/* ==========================================
   PLACEMENT PARTNERS SECTION
========================================== */

.placement-section{
    background: #eee;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.placement-tag{
    display: inline-block;
    background: rgba(201,149,42,.12);
    color: #c9952a;
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.placement-title{
    font-size: 46px;
    font-weight: 800;
    color: #0d1b3e;
    margin-bottom: 15px;
}

.placement-subtitle{
    max-width: 750px;
    margin: auto;
    color: #6b7280;
    font-size: 17px;
    line-height: 1.8;
}

/* Desktop Grid */
.placement-grid{
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
}

/* Partner Card */
.partner-card{
    background: #fff;
    border-radius: 0px;
    padding: 10px;
  
    display: flex;
    align-items: center;
    justify-content: center;
    /*border: 1px solid rgba(13,27,62,.08);*/
    transition: 0.4s ease;
    box-shadow: 0 4px 18px rgba(0,0,0,.04);
}

.partner-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(13,27,62,.12);
    border-color: rgba(201,149,42,.35);
}

.partner-card img{
    width: 100%;
    object-fit: contain;
    transition: 0.4s ease;
}

.partner-card:hover img{
    transform: scale(1.05);
}

/* Mobile Slider */
.mobile-placement{
    display: none;
}

/* ==========================================
   MOBILE VIEW
========================================== */

@media(max-width:767px){

    .desktop-placement{
        display: none;
    }

    .mobile-placement{
        display: block;
    }

    .placement-title{
        font-size: 32px;
    }

    .placement-subtitle{
        font-size: 15px;
    }

    .partner-card{
        height: 100px;
        padding: 15px;
    }

    .partner-card img{
        max-height: 50px;
    }

    .carousel-control-prev,
    .carousel-control-next{
        width: 40px;
    }

}
.about-feature{

  border: 1px solid #ccc;
    padding: 15px 17px;
    border-radius: 10px;
}


<!-- ===============================
     POPUP CSS
================================ -->
<style>

.lead-modal-content{
    overflow:hidden;
    border-radius:24px;
    background:#fff;
    box-shadow:0 25px 80px rgba(0,0,0,0.25);
}

.lead-modal-left{
    background:
    linear-gradient(rgba(8,25,56,0.92),
    rgba(8,25,56,0.92)),
    url('images/course.png');

    background-size:cover;
    background-position:center;
    height:100%;
    padding:50px 35px;
    color:#fff;
    position:relative;
}

.lead-popup-logo{
    width:180px;
    margin-bottom:30px;
    background:#fff;
    padding:10px;
    border-radius:14px;
}

.lead-badge{
    display:inline-block;
    background:#c9952a;
    color:#081938;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    margin-bottom:20px;
}

.lead-modal-left h2{
    font-size:20px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:18px;
}

.lead-modal-left p{
    color:rgba(255,255,255,0.85);
line-height: 1.4;
    font-size: 12px;
}

.lead-points{
    margin-top:30px;
}

.lead-points div{
    margin-bottom:15px;
    font-size:15px;
    font-weight:600;
}

.lead-points i{
    color:#c9952a;
    margin-right:10px;
}

.lead-modal-form-wrap{
    padding: 20px 25px;
    background: #fff;
}

.lead-form-title{
    font-size:27px;
    font-weight:800;
    color:#081938;
    margin-bottom:10px;
}

.lead-form-subtitle{
    color:#666;
    font-size:12px;
}

.lead-input{
    border-radius: 14px;
    border: 1px solid #ccc;
    font-size: 13px;
    padding-left: 12px;
    box-shadow: none !important;
}

.lead-input:focus{
    border-color:#c9952a;
}

.lead-submit-btn{
    width:100%;
    height:58px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#c9952a,#e7b547);
    color:#081938;
    font-weight:800;
    font-size:16px;
    transition:.3s;
}

.lead-submit-btn:hover{
    transform:translateY(-2px);
}

.lead-contact-info{
    display:flex;
    justify-content:center;
    gap:25px;
    margin-top:25px;
    flex-wrap:wrap;
}

.lead-contact-info a{
    text-decoration:none;
    color:#081938;
    font-size:14px;
    font-weight:700;
}

.lead-contact-info i{
    color:#c9952a;
    margin-right:7px;
}

.lead-close-btn{
    position:absolute;
    right:18px;
    top:18px;
    z-index:9;
    background-color:#fff !important;
    border-radius:50%;
    opacity:1;
    padding:10px;
}

.modal-backdrop.show{
    opacity:0.75;
}

@media(max-width:991px){

    .lead-modal-form-wrap{
        padding:30px 20px;
    }

    .lead-form-title{
        font-size:28px;
    }

    .lead-modal-content{
        border-radius:18px;
    }

}
.lead-textarea{
    height:auto !important;
    min-height:120px;
    padding-top:15px;
    resize:none;
}



.program-hero{
    position:relative;
    overflow:hidden;
    background:
    linear-gradient(rgba(8,25,56,.82),rgba(8,25,56,.85)),
    url('images/dihm.webp');

    background-size:cover;
    background-position:center;
    padding:120px 0 90px;
}

.program-hero h1{
    color:#fff;
    font-size:58px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
}

.program-hero p{
    color:rgba(255,255,255,.85);
    font-size:17px;
    line-height:1.9;
}

.program-badge-hero{
    display:inline-block;
    background:#c9952a;
    color:#081938;
    padding:10px 22px;
    border-radius:50px;
    font-weight:700;
    margin-bottom:20px;
    font-size:14px;
}

.hero-btns{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-top:30px;
}

.btn-gold{
    background:#c9952a;
    color:#081938;
    border:none;
    padding:14px 28px;
    border-radius:12px;
    font-weight:700;
    text-decoration:none;
}

.btn-outline-light-custom{
    border:1px solid rgba(255,255,255,.4);
    color:#fff;
    padding:14px 28px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
}

.program-info-card{
    background: transparent;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
    height: 100%;
    border: 1px solid #ccc;
}

.program-info-card i{
    font-size:45px;
    color:#c9952a;
    margin-bottom:20px;
}

.program-info-card h4{
    font-weight:800;
    color:#eee;
    margin-bottom:15px;
}

.program-info-card p{
    color:#eee;
    line-height:1.3;
}

.highlight-box{
    background:#fff;
    border-radius:18px;
    padding:25px;
    height:100%;
    border:1px solid rgba(0,0,0,.06);
    transition:.3s;
}

.highlight-box:hover{
    transform:translateY(-6px);
}

.highlight-box i{
    font-size:38px;
    color:#c9952a;
    margin-bottom:15px;
}

.highlight-box h5{
    font-weight:700;
    color:#081938;
}

.highlight-box p{
    color:#666;
    font-size:15px;
    line-height:1.8;
}

.career-card{
    background:#081938;
    color:#fff;
    border-radius:20px;
    padding:25px;
    height:100%;
}

.career-card i{
    color:#c9952a;
    font-size:35px;
    margin-bottom:15px;
}

.career-card h5{
    font-weight:700;
}

.career-card p{
    color:rgba(255,255,255,.75);
}

.curriculum-list{
    list-style:none;
    padding:0;
    margin:0;
}

.curriculum-list li{
    padding:16px 20px;
    background:#fff;
    border-radius:14px;
    margin-bottom:15px;
    font-weight:600;
    color:#081938;
    border-left:5px solid #c9952a;
}

.program-image{
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.program-image img{
    width:100%;
}

@media(max-width:991px){

    .program-hero{
        padding:90px 0 70px;
    }

    .program-hero h1{
        font-size:38px;
    }

}


.consent-box{
    padding:12px;
    border:1px solid #dee2e6;
    border-radius:8px;
    background:#f8f9fa;
}

.consent-box .form-check-input{
    margin-top:6px;
}

.consent-box .form-check-label{
       font-size: 10px;
    line-height: 1.4;
    color: #333;
}




.topbar-modern{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    /*z-index:9998;*/
}

.navbar-main{
    position:fixed;
    top:42px; /* topbar height */
    left:0;
    width:100%;
    /*z-index:9999;*/
    background:#fff;
}

body{
    padding-top:120px;
}

@media(max-width:991px){
    body{
        padding-top:100px;
    }
}