

:root{
  --navy:#0b2d6e;
  --navy-deep:#061840;
  --royal:#1a4fbd;
  --sky:#3b82d8;
  --sky-light:#5b9fe8;
  --pale:#eef4fc;
  --pale2:#f5f9ff;
  --gold:#c8991e;
  --gold-light:#e8b830;
  --white:#fff;
  --text:#0d1f40;
  --text-mid:#3a5075;
  --text-light:#6b88aa;
  --border:#d0e2f5;
}


html{scroll-behavior:smooth}
body{font-family:'DM Sans',sans-serif;color:var(--text);background:var(--white);overflow-x:hidden}

/* ─── TOPBAR ─── */
.topbar{background:#0e1d5d;color:rgba(255,255,255,.75);font-size:12px;padding:7px 48px;display:flex;justify-content:space-between;align-items:center;gap:10px}
.topbar-left{display:flex;gap:20px;align-items:center}
.topbar-left span{display:flex;align-items:center;gap:5px}
.topbar-right{display:flex;gap:4px}
.topbar-right a{color:rgba(255,255,255,.65);text-decoration:none;padding:4px 11px;border-radius:3px;border:1px solid rgba(255,255,255,.12);font-size:11.5px;transition:.2s}
.topbar-right a:hover{background:rgba(255,255,255,.1);color:#fff}
.topbar-right a.apply-top{background:var(--gold);color:var(--navy-deep);border-color:var(--gold);font-weight:600}
.topbar-right a.apply-top:hover{background:var(--gold-light)}


/* ─── UPDATED TICKER ─── */
 .ticker {
      background: var(--navy);
      display: flex;
      align-items: center;
      overflow: hidden;
      font-size: 12.5px;
    }

    .hero-ticker {
      /* Changed from absolute to fixed */
      position: fixed; 
      bottom: 0;
      left: 0;
      right: 0;
      
      /* High z-index ensures it stays above other content */
      z-index: 999; 
      
      background: rgba(6, 24, 64, 1);
      backdrop-filter: blur(6px);
      
      /* Ensures it spans the full viewport width */
      width: 100%; 
    }

    .ticker-badge {
      background: #f2b233;
      color: var(--navy-deep);
      font-weight: 700;
      font-size: 15px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 9px 16px;
      white-space: nowrap;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .ticker-badge::before {
      content: '📌';
      font-size: 12px;
    }

    .ticker-track {
      overflow: hidden;
      flex: 1;
    }

    .ticker-inner {
      display: flex;
      animation: scroll-ticker 32s linear infinite;
      white-space: nowrap;
      color: rgba(255, 255, 255, .85);
      font-size: 15px;
    }

    .ticker-inner span {
      padding: 9px 48px;
    }

    .ticker-inner span::after {
      content: '◆';
      margin-left: 48px;
      color: var(--gold);
      font-size: 8px;
    }

    /* --- Added Close Button CSS --- */
    .ticker-close-btn {
      background: #ef9301;
      color: rgba(6, 24, 64, 1);
      border: none;
      font-size: 22px;
      font-weight: bold;
      padding: 0 16px;
      cursor: pointer;
      align-self: stretch;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    /* --- Added Animation Keyframes --- */
    @keyframes scroll-ticker {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    /* --- Added Stop on Hover Rule --- */
    .ticker-track:hover .ticker-inner {
      animation-play-state: paused;
    }
/* ─── QUICK LINKS ─── */
.quicklinks{background: #d3d8df;padding:28px 48px;border-bottom:1px solid #c1daff}
.ql-inner{max-width:1180px;margin:0 auto;display:grid;grid-template-columns:repeat(8,1fr);gap:10px}
.ql-item{background:#fff;border:1px solid #8ebcfb;border-radius:10px;padding:14px 10px;text-decoration:none;color:var(--navy);display:flex;flex-direction:column;align-items:center;gap:7px;transition:.2s;font-weight:500;font-size:15px;text-align:center;line-height:1.3}
.ql-item:hover{background:#2e59d7;color:#fff;border-color:#2e59d7;transform:translateY(-3px);box-shadow:0 8px 24px rgba(26,79,189,.2)}
.ql-icon{font-size:22px}
.quick-links-section{
    padding:40px 0;
}

.quick-card1{
    background:#071a44;
    border:1px solid #061539;
    border-radius:12px;
    height:100px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    transition:all .3s ease;
    cursor:pointer;
}

.quick-card1:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.quick-card1 svg{
    width:36px;
    height:36px;
    margin-bottom:0px;
}

.quick-card1 h6{
    margin:0;
    color:#fff;
    font-size:0.8rem;
    font-weight:500;
}

@media(max-width:768px){
    .quick-card1{
        margin-bottom:15px;
    }
}

/* ─── SECTION BASICS ─── */
section{padding:80px 48px}
.container{max-width:1200px;}
.section-tag{display:inline-block;font-size:15px;font-weight:600;letter-spacing:2px;text-transform:uppercase;color:#f2b233;background:#061840;border:1px solid #c8ddf5;padding:5px 13px;border-radius:20px;margin-bottom:0px}
.section-title{font-family:'Playfair Display',serif;font-size:clamp(26px,3vw,40px);color:#0b2d6e;font-weight:700;line-height:1.2;margin-bottom:14px}
.section-sub{color:var(--text-mid);font-size:15px;max-width:750px;line-height:1.75;font-weight:300}
.text-center{text-align:center}
.text-center .section-sub{margin:0 auto}

/* ─── PROGRAMMES ─── */
.programmes{background-color:#fff}
.prog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:48px}
.prog-card{ background:#041e42;
            border: 1px solid var(--border);
            border-radius: 14px;
            padding: 30px 26px;
            position: relative;
            overflow: hidden;
            backface-visibility: hidden; /* Critical for smooth 3D transforms */
            
            /* --- STACKED DECK INITIAL STATE --- */
            opacity: 0;
            
            /* Each box starts "under" its neighbor to the left, scaled down, and rotated */
            transform-style: preserve-3d;
            transform: translateX(-100px) translateY(40px) scale(0.7) rotateY(30deg);
            
            /* Super smooth transitions */
            transition: opacity 1s ease-out, transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
            
            /* Set z-index to manage stack order (Card 1 is lowest in stack) */
            z-index: 1; }


.prog-card:nth-child(2) { z-index: 2; }
        .prog-card:nth-child(3) { z-index: 3; }
        .prog-card:nth-child(4) { z-index: 4; }
        .prog-card:nth-child(5) { z-index: 5; }
        .prog-card:nth-child(6) { z-index: 6; }

        /* --- THE CLASS TRIGGERED ON SCROLL --- */
        .prog-card.is-visible {
            opacity: 1;
            transform: translateX(0) translateY(0) scale(1) rotateY(0deg);
        }

         .prog-card::after {
            content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
            background: linear-gradient(90deg, var(--navy), var(--sky));
            transform: scaleX(0); transition: .3s; transform-origin: left;
        }

        .prog-card:hover {
            transform: translateY(-8px) scale(1.02) !important; /* Slight float override */
            box-shadow: 0 20px 40px rgba(10, 45, 107, 0.12);
            border-color: var(--sky);
        }

        .prog-card:hover::after { transform: scaleX(1); }



.prog-card::after{content:'';position:absolute;bottom:0;left:0;right:0;height:3px;background:linear-gradient(90deg,#0b2d6e,#55b1d9);transform:scaleX(0);transition:.3s;transform-origin:left}
.prog-card:hover{transform:translateY(-5px);box-shadow:0 20px 50px rgba(10,45,107,.1);border-color:rgba(59,130,216,.3)}
.prog-card:hover::after{transform:scaleX(1)}
.prog-icon-wrap{width:52px;height:52px;background:;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:24px;margin-bottom:18px;transition:.25s}
.prog-card:hover .prog-icon-wrap{transform:scale(1.05)}
.prog-card h3{font-family:'Playfair Display',serif;font-size:0.99rem;color:#f2b233;margin-bottom:9px;font-weight:700}
.prog-card p{font-size:0.8rem;color:#fff;line-height:1.65;margin-bottom:18px}
.prog-tags{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:16px}
.prog-tag{border: solid 1px rgba(255, 255, 255, 0.3);color:#d4af37;font-size:0.7rem;font-weight:600;padding:3px 9px;border-radius:5px;letter-spacing:.3px}
.prog-link{color:#f2b233;font-size:13px;font-weight:600;text-decoration:none;display:inline-flex;align-items:center;gap:5px}
.prog-link:hover{color:#0b2d6e}
.prog-link::after{content:'→';transition:.2s}
.prog-link:hover::after{transform:translateX(3px)}

 @keyframes slideUpFade {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }



.card {
          
        
        }



.btn-gold{background:#f2b233;color:var(--navy-deep);font-weight:700;font-size:15px;padding:14px 30px;border-radius:5px;text-decoration:none;transition:.2s;letter-spacing:.2px;display:inline-flex;align-items:center;gap:8px}
.btn-gold:hover{background:#f2b233;transform:translateY(-2px);box-shadow:0 8px 28px rgba(200,153,30,.4)}
.btn-ghost{border:1.5px solid rgba(255,255,255,.4);color:#fff;font-weight:500;font-size:14px;padding:14px 30px;border-radius:5px;text-decoration:none;transition:.2s;display:inline-flex;align-items:center;gap:8px}
.btn-ghost:hover{border-color:#fff;background:rgba(255,255,255,.08)}







.why{
  
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.why::before{
  content:'';
  position:absolute;
  inset:0;
  z-index:0;
}
.why .container{position:relative;z-index:1;}
.why .container{position:relative;z-index:1;}
.why-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;margin-top:48px}
.why-left .section-tag{display:block;width:fit-content}
.accent-bar{width:52px;height:4px;background:linear-gradient(90deg,#c8991e,#e8b830);border-radius:2px;margin:18px 0 22px}
.why-text p{font-size:15px;color:var(--text-mid);line-height:1.8;margin-bottom:16px;font-weight:300}
.why-pillars{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:28px}
.pillar{display:flex;align-items:flex-start;gap:12px;padding:16px;background:#f5f9ff;border-radius:10px;border:1px solid #d0e2f5}
.pillar-icon{font-size:20px;flex-shrink:0;margin-top:2px}
.pillar h4{font-size:16px;font-weight:600;color:var(--navy);margin-bottom:3px}
.pillar p{font-size:15px;color:var(--text-light);line-height:1.5}

.why-visual{display:grid;grid-template-columns:1fr 1fr;grid-template-rows:auto auto;gap:14px;padding: 1rem;}
.visual-main{grid-column:1/-1;background:linear-gradient(145deg,#061840,#0b2d6e);border-radius:16px;padding:36px;color:#fff;position:relative;overflow:hidden;min-height:200px;display:flex;flex-direction:column;justify-content:flex-end}
.visual-main::before{content:'';position:absolute;top:-30px;right:-30px;width:180px;height:180px;border-radius:50%;background:rgba(59,130,216,.15)}
.visual-main .big-num{font-family:'Playfair Display',serif;font-size:72px;font-weight:900;color:#e8b830;line-height:1;position:absolute;top:20px;right:28px;opacity:.6}
.visual-main h3{font-family:'Playfair Display',serif;font-size:2rem;margin-bottom:8px; color: #f2b233}
.visual-main p{font-size:15px;opacity:.7;line-height:1.6}
.visual-card{background:#f5f9ff;border:1px solid #d0e2f5;border-radius:14px;padding:22px 18px;display:flex;flex-direction:column;gap:6px}
.visual-card .vc-num{font-family:'Playfair Display',serif;font-size:40px;font-weight:700;color:var(--navy)}
.visual-card .vc-label{font-size:15px;color:var(--text-mid);line-height:1.4}


/* ─── RANKINGS ─── */
.rankings-section{background:#fff;color:#061840;position:relative;overflow:hidden}
.rankings-section::before{content:'';position:absolute;inset:0;background:repeating-linear-gradient(45deg,rgba(255,255,255,.01) 0px,rgba(255,255,255,.01) 1px,transparent 1px,transparent 40px)}
.rankings-section .section-tag{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.15);color:#f2b233}
.rankings-section .section-title{color:#fff}
.rankings-section .section-sub{color:rgba(255,255,255,.6)}
.ranks-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:48px}
.rank-card{background:#061840;border:1px solid rgba(255,255,255,.1);border-radius:14px;padding:32px 22px;text-align:center;transition:.25s;cursor:default}
.rank-card:hover{background:#061840;transform:translateY(-4px);border-color:rgba(200,153,30,.4)}
.rank-num{font-family:'Playfair Display',serif;font-size:52px;font-weight:900;color:#f2b233;line-height:1}
.rank-num sup{font-size:40px;vertical-align:super}
.rank-desc{font-size:15px;opacity:.65;margin-top:10px;line-height:1.6;color: #fff}
.rank-src{font-size:15px;letter-spacing:1px;text-transform:uppercase;opacity:.4;margin-top:8px;color: #fff}
.accreditation-strip{display:flex;justify-content:center;gap:18px;flex-wrap:wrap;margin-top:52px;padding-top:40px;border-top:1px solid rgba(255,255,255,.08)}
.accred-badge{background:#061840;border:1px solid rgba(255,255,255,.12);border-radius:10px;padding:14px 22px;display:flex;flex-direction:column;align-items:center;gap:5px; color: #fff}
.accred-badge .ab-val{font-family:'Playfair Display',serif;font-size:2.5rem;font-weight:700;color:#f2b233}
.accred-badge .ab-label{font-size:15px;opacity:.55;letter-spacing:.5px;text-align:center;line-height:1.4}

/* ─── ALUMNI ─── */
.alumni-section{background:#f5f9ff;overflow:hidden}
.alumni-scroll-wrapper{position:relative;margin-top:48px;overflow:hidden}
.alumni-scroll-wrapper::before,.alumni-scroll-wrapper::after{content:'';position:absolute;top:0;bottom:0;width:100px;z-index:2;pointer-events:none}
.alumni-scroll-wrapper::before{left:0;background:linear-gradient(to right,var(--pale2),transparent)}
.alumni-scroll-wrapper::after{right:0;background:linear-gradient(to left,var(--pale2),transparent)}
.alumni-track{display:flex;gap:24px;width:max-content;animation:scroll-alumni 38s linear infinite}
.alumni-track:hover{animation-play-state:paused}
@keyframes scroll-alumni{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
.alumni-card{background:#061840;border:1px solid var(--border);border-radius:18px;padding:28px 24px;text-align:center;width:230px;flex-shrink:0;transition:.25s;box-shadow:0 2px 12px rgba(10,45,107,.05)}
.alumni-card:hover{transform:translateY(-5px);box-shadow:0 16px 44px rgba(10,45,107,.13);border-color:var(--sky)}
.alumni-photo{border-radius:100%;width:130px;height:130px;margin:0 auto 16px;display:block;border:1px solid var(--border);transition:.25s}
.alumni-card:hover .alumni-photo{border-color:var(--sky)}
.alumni-avatar{width:88px;height:88px;border-radius:50%;background:linear-gradient(135deg,var(--navy),var(--sky));display:flex;align-items:center;justify-content:center;font-family:'Playfair Display',serif;font-size:28px;font-weight:700;color:#fff;margin:0 auto 16px;transition:.25s}
.alumni-card:hover .alumni-avatar{transform:scale(1.05)}
.alumni-card h4{font-size:15px;font-weight:700;color:#f2b233;margin-bottom:5px}
.alumni-card .role{font-size:13px;color:#fff;line-height:1.55}

/* ─── ANNOUNCEMENTS ─── */
.announcements{background:#fff}
.ann-layout{display:grid;grid-template-columns:1fr 1fr;gap:60px;margin-top:48px}
.ann-list{display:flex;flex-direction:column;gap:14px}
.ann-item{display:flex;gap:16px;padding:10px 20px;border:1px solid #d0e2f5;border-radius:12px;transition:.2s;text-decoration:none;color:inherit;align-items:flex-start}
.ann-item:hover{border-color:#0b2d6e;box-shadow:0 6px 24px rgba(10,45,107,.07);transform:translateX(3px)}
.ann-date{background:#0b2d6e;color:#fff;border-radius:8px;padding:9px 11px;text-align:center;font-size:10.5px;min-width:46px;flex-shrink:0;line-height:1.3}
.ann-date strong{display:block;font-family:'Playfair Display',serif;font-size:18px;font-weight:700}
.ann-new{display:inline-block;background:var(--gold);color:var(--navy-deep);font-size:13px;font-weight:700;padding:2px 6px;border-radius:3px;letter-spacing:.5px;margin-bottom:4px}
.ann-body h4{font-size:15px;font-weight:600;color:var(--navy);line-height:1.4;margin-bottom:3px}
.ann-body p{font-size:15px;color:var(--text-light);line-height:1.5}
.view-all-link{display:inline-flex;align-items:center;gap:6px;color:var(--royal);font-size:15px;font-weight:600;text-decoration:none;margin-top:12px; float: right;}
.view-all-link:hover{color:var(--navy)}

.events-column .section-title{font-size:clamp(26px,3vw,40px);}
.event-list{display:flex;flex-direction:column;gap:12px;margin-top:24px}
.event-item{display:flex;gap:14px;align-items:flex-start;padding:12px;background:#f5f9ff;border-radius:10px;border:1px solid #d0e2f5;transition:.2s}
.event-item:hover{border-color:var(--sky);background:#f0f7ff}
.event-dot{width:10px;height:10px;border-radius:50%;background:#1a4fbd;flex-shrink:0;margin-top:5px}
.event-item h4{font-size:15px;font-weight:600;color:var(--navy);margin-bottom:3px}
.event-item p{font-size:15px;color:var(--text-light)}

/* ─── RECRUITERS ─── */
.recruiters-section{background:#fff;overflow:hidden}
.recruiter-scroll-wrapper{position:relative;margin-top:48px;overflow:hidden}
.recruiter-scroll-wrapper::before,.recruiter-scroll-wrapper::after{content:'';position:absolute;top:0;bottom:0;width:100px;z-index:2;pointer-events:none}
.recruiter-scroll-wrapper::before{left:0;background:linear-gradient(to right,var(--pale2),transparent)}
.recruiter-scroll-wrapper::after{right:0;background:linear-gradient(to left,var(--pale2),transparent)}
.recruiter-track{display:flex;gap:20px;width:max-content;animation:scroll-recruiters 36s linear infinite;align-items:center}
.recruiter-track:hover{animation-play-state:paused}
@keyframes scroll-recruiters{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
.recruiter-logo-card{background:#fff;border:1px solid #d0e2f5;border-radius:12px;padding:18px 28px;display:flex;align-items:center;justify-content:center;height:80px;min-width:160px;transition:.2s;flex-shrink:0}
.recruiter-logo-card:hover{border-color:#1748ac;transform:translateY(-2px);box-shadow:0 8px 20px rgba(26,79,189,.1)}
.recruiter-logo-card img{max-height:60px;max-width:120px;object-fit:contain;transition:.3s}
.recruiter-logo-card:hover img{filter:grayscale(0%);opacity:1}
.recruiter-cta{text-align:center;margin-top:40px}

/* ─── INT'L COLLABORATIONS ─── */
.collab-section{background:#f5f9ff}

.collab-card{border:1px solid #b7cfe9;border-radius:14px;padding:24px 16px 18px;text-align:center;transition:.2s;display:flex;flex-direction:column;align-items:center;justify-content:flex-start;gap:10px;min-height:160px}
.collab-card:hover{border-color:var(--sky);transform:translateY(-3px);box-shadow:0 10px 28px rgba(10,45,107,.10)}
.collab-uni-logo{width:72px;height:72px;object-fit:contain;border-radius:10px;background:#f7f9fc;border:1px solid var(--border);padding:1px;flex-shrink:0}
.collab-uni-initials{width:72px;height:72px;border-radius:10px;background:linear-gradient(135deg,var(--navy),var(--sky));display:flex;align-items:center;justify-content:center;font-family:'Playfair Display',serif;font-size:20px;font-weight:700;color:#fff;flex-shrink:0;letter-spacing:1px}
.collab-name{font-size:15px;font-weight:600;color:var(--navy);line-height:1.4;text-align:center}
.collab-country{font-size:15px;color:var(--text-light);display:flex;align-items:center;justify-content:center;gap:5px}
.collab-flag{font-size:15px;line-height:1}

/* ─── FOOTER ─── */
footer{background:#04102a;color:rgba(255,255,255,.65);padding:45px 48px 50px;}
.footer-inner{max-width:1200px;margin:0 auto}
.footer-top{display:grid;grid-template-columns:2.2fr 1fr 1fr 1fr;gap:56px;margin-bottom: 30px;}
.footer-brand-logo{width:64px;height:64px;object-fit:contain;margin-bottom:16px;filter:brightness(1.2)}
.footer-brand-name{font-family:'Playfair Display',serif;font-size:clamp(26px,3vw,20px);color:#fff;margin-bottom:6px;font-weight:700}
.footer-brand-sub{font-size:15px;letter-spacing:.8px;text-transform:uppercase;color:rgba(255,255,255,.35);margin-bottom:16px}
.footer-brand-desc{font-size:15px;line-height:1.75;}
.footer-contact{margin-top:20px;display:flex;flex-direction:column;gap:7px;font-size:15px; margin-bottom: 12px}
.footer-contact a{color:var(--gold-light);text-decoration:none;font-size:15px;}
.footer-contact a:hover{color:#fff}
footer h5{color:#fff;font-size:clamp(26px,3vw,20px);font-family:'Playfair Display',serif;font-weight:700;margin-bottom:18px;padding-bottom:10px;border-bottom:1px solid rgba(255,255,255,.08)}
footer ul{list-style:none}
footer ul li{margin-bottom:9px}
footer ul li a{color:rgba(255,255,255,.95);text-decoration:none;font-size:15px;transition:.18s}
footer ul li a:hover{color:var(--gold-light);padding-left:4px}
.footer-bottom{border-top:1px solid rgba(255,255,255,.07);padding-top:22px;display:flex;justify-content:space-between;align-items:center;font-size:15px;flex-wrap:wrap;gap:10px}
.footer-bottom a{color:rgba(255,255,255,.35);text-decoration:none;margin-left:18px;transition:.15s;font-size:15px;}
.footer-bottom a:hover{color:var(--gold-light)}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp{from{opacity:0;transform:translateY(24px)}to{opacity:1;transform:translateY(0)}}
.hero-left>*{animation:fadeUp .65s ease forwards;opacity:0}
.hero-left>*:nth-child(1){animation-delay:.1s}
.hero-left>*:nth-child(2){animation-delay:.2s}
.hero-left>*:nth-child(3){animation-delay:.35s}
.hero-left>*:nth-child(4){animation-delay:.48s}
.hero-left>*:nth-child(5){animation-delay:.58s}
.hero-right{animation:fadeUp .7s .3s ease forwards;opacity:0}

/* ─── RESPONSIVE ─── */
@media(max-width:1024px){
  .hero-inner{grid-template-columns:1fr;gap:40px;padding:60px 32px}
  .why-grid,.ann-layout{grid-template-columns:1fr;gap:40px}
  .ranks-grid{grid-template-columns:repeat(2,1fr)}
  .alumni-grid{grid-template-columns:repeat(2,1fr)}
  .collab-grid{grid-template-columns:repeat(3,1fr)}
  .footer-top{grid-template-columns:1fr 1fr;gap:36px}
  nav{padding:0 24px}
  section{padding:60px 24px}
  .quicklinks{padding:24px 24px}
  .ql-inner{grid-template-columns:repeat(4,1fr)}
  .topbar{padding:7px 24px}
}
@media(max-width:720px){
  .prog-grid{grid-template-columns:1fr}
  .ranks-grid{grid-template-columns:repeat(2,1fr)}
  .alumni-grid{grid-template-columns:repeat(2,1fr)}
  .collab-grid{grid-template-columns:repeat(2,1fr)}
  .ql-inner{grid-template-columns:repeat(4,1fr)}
  .why-pillars{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr;gap:28px}
  .stats-row{grid-template-columns:repeat(2,1fr)}
  .hero h1{font-size:28px}
  .hero-inner{padding:0 24px}
  .footer-bottom{flex-direction:column;text-align:center}
}
@media(max-width:480px){
  .ql-inner{grid-template-columns:repeat(2,1fr)}
  .recruiter-logos{gap:8px}
  section{padding:48px 20px}
}

.main-card {
 width: 100%;
            background: #ffffff;
            border-radius: 24px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.05);
           margin: 12px auto;
        }

           /* Calendar Section */
        .calendar-section {
            background: #ffffff;
            border-radius: 18px;
            padding: 15px;
            border: 1px solid #f0f0f0;
            position: relative;
              overflow: hidden;
        }

        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        .calendar-title-wrap { display: flex; align-items: center; gap: 12px; }
        .calendar-title-wrap h3 { margin: 0; font-size: 1.1rem; color: #2d3436; }
        .calendar-title-wrap p { margin: 2px 0 0; font-size: 0.8rem; color: #b2bec3; }

        /* Slider Engine */
        .slider-outer {
            position: relative;
            margin: 10px 0;
            display: flex;
            align-items: center;
        }

        .slider-viewport {
            overflow: hidden;
            width: 100%;
            padding: 10px 0;
        }

        .slider-track {
             display: flex;
    gap: 15px;
    will-change: transform;
            transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* Event Cards */
        .event-card {
             flex: 0 0 calc(33.333% - 10px); /* ✅ 3 cards on desktop */
    min-width: 0;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.06);
        }

     /* TABLET */
@media (max-width: 1024px) {
    .event-card {
        flex: 0 0 calc(50% - 10px); /* 2 cards */
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .event-card {
        flex: 0 0 100%; /* 1 card */
    }
}

/* COLORS */
 .date-banner {
            padding: 8px 12px;
            color: white;
            font-size: 15px;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            text-align: center; 
        }

.blue .date-banner { background:#0b2d6e; }
.red .date-banner { background: #f06e6e; }
.green .date-banner { background: #58b19f; }

 .card-content { padding: 15px; text-align: left; }
 .date-banner span {text-align: left; }
        .card-content strong { display: block; font-size: 15px; color: #2d3436; margin-bottom: 8px; }
        .card-content hr { border: none; border-top: 1px solid #f1f2f6; margin-bottom: 8px; }
        .card-content span { font-size: 15px; color: #0b2d6e; font-style: italic; }

/* BUTTONS */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99;

    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    font-size: 14px;
}


/* DESKTOP */
.prev { left: -15px; }
.next { right: -15px; }

/* Mobile FIX */
@media(max-width:768px){
    .prev { left: 5px; }
    .next { right: 5px; }
}
.ann-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* Prevent overflow breaking gap */
.ann-layout > div {
    min-width: 0;
}

.ann-layout > div:first-child {
 flex: 0 0 54%;
    padding-right: 15px;
    max-width: 54%;
}

.events-column {
 flex: 0 0 46%;
     padding-left: 15px;
     max-width: 46%;
}

@media(max-width:768px){
    .ann-layout{
        flex-direction: column;
    }
 .date-banner {
            padding: 8px 12px;
            color: white;
            font-size: 0.85rem;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            text-align: center; 
        }
         .card-content { text-align: center; }
 .date-banner span {text-align: center; }
    .ann-layout > div:first-child,
    .events-column {
        flex: 100%;
        max-width: 100%;
    }
}
      

        .view-full { text-align: center; margin-top: 20px; font-size: 15px; font-weight: 500; cursor: pointer; }
 .testimonials-section {
      position: relative;
      background: url('DSC00055.JPG') center/cover no-repeat;
      padding: 80px 0;
      overflow: hidden;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    }

    /* Overlay for transparency */
    .testimonials-section::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    /* Ensure content stays above overlay */
    .testimonials-section * {
      position: relative;
      z-index: 1;
    }

    .testimonials-track-wrapper {
      overflow: hidden;
      position: relative;
      margin-top: 48px;
    }

    .testimonials-track-wrapper::before,
    .testimonials-track-wrapper::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 80px;
      z-index: 2;
      pointer-events: none;
    }

    .testimonials-track {
      display: flex;
      gap: 24px;
      width: max-content;
      /* Triggers the infinite linear animation */
      animation: scrollTestimonials 40s linear infinite; 
    }

    .testimonials-track:hover {
      animation-play-state: paused;
    }

    @keyframes scrollTestimonials {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .tcard {
      background: #061840;
      border: 1px solid var(--gold);
      border-radius: 16px;
      padding: 28px 24px;
      width: 300px;
      flex-shrink: 0;
      transition: .2s;
    }

    .tcard:hover {
      background: #061840;
      border-color: var(--gold);
    }

    .tcard-quote {
      font-size: 32px;
      color: #0b2b6c;
      line-height: 1;
      margin-bottom: 12px;
      font-family: 'Playfair Display', serif;
    }

    .tcard-text {
      font-size: 15px;
      color: #fff !important;
      line-height: 1.75;
      margin-bottom: 20px;
      font-style: italic;
    }

    .tcard-footer {
      align-items: center;
      gap: 12px;
    }

    .tcard-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--gold, #f2b233), var(--sky, #54b2e6));
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: #fff;
      font-size: 14px;
      flex-shrink: 0;
    }

    .tcard-name {
      font-size: 15px;
      font-weight: 600;
      color: #f2b233;
      float: none;
      text-align: center;
    }

    .tcard-batch {
      font-size: 15px;
      color: #f2b233;
      margin-top: 2px;
      letter-spacing: .4px;
      text-align: center;
    }

    /* Quick wrapper styles for centering the demo content */
    .text-center {
      text-align: center;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }
    .section-tag {
      display: inline-block;
      padding: 6px 16px;
      border-radius: 20px;
      font-weight: 600;
      font-size: 1.1rem;
      margin-bottom: 16px;
    }
    .section-title {
      font-size: 36px;
      margin: 0 0 10px 0;
    }
    .section-sub {
       font-size: 16px;
    font-weight: 500;
    color: #000;
    letter-spacing: -0.1px;
    line-height: 20px;
    }

.parallax {
    /* The magic ingredient: keeps the image fixed in the viewport */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
    /* Set a specific height for the parallax containers */
    height: auto; /* Takes up full viewport height */
    
    /* Flexbox to center the text caption */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Assign different background images to sections */
.bg-1 {
     background: fff;
}

.bg-2 {
    background: url('images/Student_Voice.png');
}


.bg-3 {
    position: relative;
    background: url('images/Students1.png');
    background-size: 100%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    /* Set a specific height for the parallax containers */
    height: auto;

    /* Flexbox to center the text caption */
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-3::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0,0, 0.3); /* Reduce/increase opacity here */
    pointer-events: none;
}

.bg-3 > * {
    position: relative;
    z-index: 1;
}
/* Style the text overlay captions */
.caption {
    text-align: center;
}

.caption .border {
    background-color: #111;
    color: #fff;
    padding: 18px;
    font-size: 25px;
    letter-spacing: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

/* Standard content sections between images */
.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.content h3 {
    font-size: 28px;
    color: #222;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.content p {
    line-height: 1.8;
    font-size: 16px;
}

/* Optional styling for a dark content section */
.content.dark {
    background-color: #282e34;
    color: #ddd;
    max-width: 100%; /* Spans full width */
    padding: 80px 10%;
}

.content.dark h3 {
    color: #fff;
}


.ethos-section{
    background:#0b2341;
    padding:70px 0;
    color:#fff;
}

.ethos-header{
    text-align:center;
    margin-bottom:50px;
}

.ethos-header h2{
    font-size:42px;
    font-weight:700;
    margin-bottom:10px;
}

.ethos-header h2 span{
    color:#f2b233;
}

.ethos-header h4{
    color:#f2b233;
    
    letter-spacing:1px;
    margin-bottom:15px;
}

.ethos-header p{
    color:#f2b233;
    font-style:italic;
    max-width:850px;
    margin:auto;
}

.ethos-row{
    margin-top:40px;
}

.ethos-box{
    text-align:center;
    padding:10px 30px;
    height:100%;
     box-sizing: border-box;
          
            
            /* Smooth transition handling the zoom effect */
            transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 0.3), 
                        box-shadow 0.4s ease, 
                        border-color 0.4s ease;
                          border:1px solid rgba(242,178,51,.3);
}

.ethos-box:hover {
            transform: scale(1.05); /* Zooms the box forward */
            border-color: #e29d3e; /* Highlights border with gold */
          
            
        }
.ethos-box.middle{
    
}

.ethos-box h3{
    font-size:28px;
    font-weight:600;
    margin-bottom:20px;
}

.ethos-box p{
    color:#d5dce6;
    line-height:1.8;
    font-size:16px;
}

.ethos-line{
    width:170px;
    height:1px;
    background:#f2b233;
    margin:5px auto 10px;
}

.ethos-footer{
    text-align:center;
    margin-top:60px;
}

.ethos-footer h4{
    color:#f2b233;
    font-weight:600;
    font-size:28px;
    font-style:italic;
}

@media(max-width:991px){

.ethos-box.middle{
    border:none;
}

.ethos-box{
    margin-bottom:40px;
}

.ethos-header h2{
    font-size:32px;
}

.ethos-footer h4{
    font-size:22px;
}

}


.sjcc-title{
   font-size:3.8rem;
    font-weight: 700;
    color: #f2b233;
   text-shadow: 0px 3px 6px rgba(0,0,0,0.18);

          }


/* --- Container Wrappers --- */
.principal-message-section {
    padding: 60px 0;
    background-color: rgba(255,255,255,0.3);
}

.message-wrapper {
    margin-top: 60px;
    position: relative;
}

/* --- Profile Image --- */
.principal-profile-container {
    position: absolute;
    top: -60px;
    left: 10px;
    z-index: 10;
    width: 220px;
    height: 220px;
    padding: 6px;
    border-radius: 4px;
    background: #fff;
}

.principal-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}


/* --- Text Card --- */
.message-content-card {
    padding: 60px 50px 50px 50px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    z-index: 1;
}


/* --- Heading Alignment --- */
.header-block {
    margin-left: 210px;
    margin-bottom: 45px;
    min-height: 100px;
    display: flex;
    align-items: flex-end;
}

.title-heading {
    font-size: 2.35rem;
    color: #000;
    font-weight: 700;
    margin: 0;
}

.message-body-text {
    font-size: 1.05rem;
    color: #000;
}

.message-body-text p {
    margin-bottom: 20px;
    text-align: left;
}

.message-body-text p:last-child {
    margin-bottom: 0;
}


/* -------- Tablet View Fix -------- */
@media (max-width: 1100px) {

    .principal-profile-container {
        width: 180px;
        height: 180px;
        top: -40px;
    }

    .header-block {
        margin-left: 210px;
    }

    .message-content-card {
        padding: 50px 35px;
    }

}


/* -------- Mobile View -------- */
@media (max-width: 767px) {

    .message-wrapper {
        margin-top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }


    .principal-profile-container {
        position: relative;
        top: 0;
        left: 0;
        width: 200px;
        height: 200px;
        margin-bottom: 25px;
    }


    .message-content-card {
        width: 100%;
        padding: 35px 25px;
    }


    .header-block {
        margin-left: 0;
        margin-bottom: 25px;
        min-height: auto;
        justify-content: center;
        text-align: center;
    }


    .title-heading {
        font-size: 1.85rem;
    }


    .message-body-text {
        font-size: 1rem;
    }

}


@media (max-width: 1200px) {

    .principal-profile-container {
        width: 190px;
        height: 190px;
        top: -50px;
    }

    .header-block {
        margin-top: 210px;
         display: inline;
    
    }

}


       .canvas-container {
            position: relative;
            width: 1250px;
            height: 120vh;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 5rem;
        }

        /* Center Section with exclusive rings and borders */
        .center-hub {
            position: absolute;
            width: 330px;
            height: 330px;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 30px;
            z-index: 10;
            box-shadow: 0 10px 40px rgba(13, 35, 71, 0.05);
            
            border: 2px solid #e2eaf2;
            outline: 6px solid #f0f4f8;
            outline-offset: -12px;
        }

        .center-inner-ring {
            position: absolute;
            width: 276px;
            height: 276px;
            border: 1px solid rgba(43, 90, 158, 0.15);
            border-radius: 50%;
            pointer-events: none;
        }

        .center-icon {
            color: #004693;
            font-size: 32px;
            margin-bottom: 12px;
        }

        .center-title {
            color: #061c3f;
            font-size: 2.3rem;
            font-weight: 800;
            letter-spacing: 0.5px;
            line-height: 1.4;
            text-transform: uppercase;
        }

        .center-status {
            color: #3b82f6;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 0px;
            margin-top: -10px;
            text-transform: uppercase;
        }

        /* Structural Wrapper for Outer Items - Handles Orbit Mechanics */
        .partner-wrapper {
            position: absolute;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            z-index: 5;
            width: 180px;
            height: 220px;
            text-align: center;
        }

        /* White Logo Circles */
        .logo-circle {
            width: 130px;
            height: 130px;
            background: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(13, 35, 71, 0.04);
            margin-bottom: 12px;
        }

        .logo-text {
            color: #004693;
            font-size: 16px;
            font-weight: 800;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        /* Text Block container */
        .info-text-block {
            width: 100%;
        }

        .node-name {
            color:#fff;
            font-size: 0.95rem;
            font-weight: 800;
            line-height: 1.3;
        }

        .node-country {
            color: #fff;
            font-size: 13px;
            margin-top: 2px;
            font-weight: 500;
        }

        /* Orbit Animations */
        .pos-1 { animation: orbit-1 120s linear infinite; } /* Top Center */
        .pos-2 { animation: orbit-2 120s linear infinite; } 
        .pos-3 { animation: orbit-3 120s linear infinite; } /* Right Center */
        .pos-4 { animation: orbit-4 120s linear infinite; } 
        .pos-5 { animation: orbit-5 120s linear infinite; } /* Bottom Center */
        .pos-6 { animation: orbit-6 120s linear infinite; } 
        .pos-7 { animation: orbit-7 120s linear infinite; } /* Left Center */
        .pos-8 { animation: orbit-8 120s linear infinite; } 

        /* Increased translate distance to 410px for significantly more spacing between nodes */
        @keyframes orbit-1 {
            from { transform: rotate(270deg) translate(410px) rotate(-270deg); }
            to   { transform: rotate(630deg) translate(410px) rotate(-630deg); }
        }
        @keyframes orbit-2 {
            from { transform: rotate(315deg) translate(410px) rotate(-315deg); }
            to   { transform: rotate(675deg) translate(410px) rotate(-675deg); }
        }
        @keyframes orbit-3 {
            from { transform: rotate(0deg) translate(410px) rotate(0deg); }
            to   { transform: rotate(360deg) translate(410px) rotate(-360deg); }
        }
        @keyframes orbit-4 {
            from { transform: rotate(45deg) translate(410px) rotate(-45deg); }
            to   { transform: rotate(405deg) translate(410px) rotate(-405deg); }
        }
        @keyframes orbit-5 {
            from { transform: rotate(90deg) translate(410px) rotate(-90deg); }
            to   { transform: rotate(450deg) translate(410px) rotate(-450deg); }
        }
        @keyframes orbit-6 {
            from { transform: rotate(135deg) translate(410px) rotate(-135deg); }
            to   { transform: rotate(495deg) translate(410px) rotate(-495deg); }
        }
        @keyframes orbit-7 {
            from { transform: rotate(180deg) translate(410px) rotate(-180deg); }
            to   { transform: rotate(540deg) translate(410px) rotate(-540deg); }
        }
        @keyframes orbit-8 {
            from { transform: rotate(225deg) translate(410px) rotate(-225deg); }
            to   { transform: rotate(585deg) translate(410px) rotate(-585deg); }
        }

        /* Responsive Collapse for mobile screens */
        @media (max-width: 850px) {
            .canvas-container {
                width: 100%;
                height: auto;
                display: flex;
                flex-direction: column;
                gap: 25px;
                padding: 40px 0;
            }
            .center-inner-ring {
                display: none;
            }
            .center-hub {
                position: static;
                width: 240px;
                height: 240px;
                margin-bottom: 10px;
            }
            .partner-wrapper {
                position: static !important;
                transform: none !important;
                animation: none !important;
                width: 100%;
                max-width: 280px;
                height: auto;
                background: #ffffff;
                padding: 20px;
                border-radius: 16px;
                box-shadow: 0 4px 15px rgba(13, 35, 71, 0.02);
            }
            .logo-circle {
                margin-bottom: 8px;
            }
        }
      .golden-box::before{
    content:"";
    position:absolute;
        top: 412px;
    left: 9px;
    width: 2px;
    height: 50%;
    background:linear-gradient(
        180deg,
        #e6c96b 0%,
        #c89d35 25%,
        #b88712 50%,
        #d4af37 75%,
        #f1db87 100%
    );
}

/* Bottom Gold Strip */

.golden-box::after{
     border-radius:20px;
    content:"";
    position:absolute;
    left:9px;
    bottom:39px;
    width:46%;
    height:2px;
    background:linear-gradient(
        90deg,
        #e6c96b 0%,
        #c89d35 25%,
        #b88712 50%,
        #d4af37 75%,
        #f1db87 100%
    );
   

}
  

   .card-container {
      width: 100%;
      max-width: 72rem; /* 1152px */
      background-color: #0A2256;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 1.5rem; /* 24px */
      padding: 2.5rem 2rem;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    }

    @media (min-width: 768px) {
      .card-container {
        padding: 3rem 2.5rem;
      }
    }

    .wrapper {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    /* ==========================================================================
       Header Section
       ========================================================================== */
    

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      border: 1px solid rgba(251, 191, 36, 0.3);
      background-color: #061840;
      color: #fcd34d;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 0.25rem 1rem;
      border-radius: 9999px;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .badge-dot {
      width: 0.5rem;
      height: 0.5rem;
      border-radius: 9999px;
      background-color: #fbbf24;
    }

    .title {
      font-size: 1.875rem;
      font-weight: 800;
      letter-spacing: -0.025em;
      color: #ffffff;
      line-height: 1.25;
    }

    @media (min-width: 768px) {
      .title {
        font-size: 2.25rem;
      }
    }

    .subtitle {
      color: #cbd5e1;
      font-size: 0.875rem;
      line-height: 1.5;
      max-width: 36rem;
    }

    /* ==========================================================================
       Single-Row Statistics Grid
       ========================================================================== */
    .stats-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      max-width: 74rem;
      margin: 10px auto;
      width: 100%;
    }

    @media (min-width: 768px) {
      .stats-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .stat-card {
      background-color: #061840;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 0.75rem;
      padding: 1.25rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: border-color 0.2s ease;
    }

    .stat-card:hover {
      border-color: rgba(251, 191, 36, 0.5);
    }

    .stat-info {
      display: flex;
      flex-direction: column;
      gap: 0.125rem;
    }

    .stat-label {
      font-size: 0.625rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #94a3b8;
    }

    .stat-value {
      font-size: 1.75rem;
      font-weight: 800;
      color: #fbbf24;
      letter-spacing: -0.025em;
      line-height: 1.2;
    }

    @media (min-width: 768px) {
      .stat-value {
        font-size: 1.875rem;
      }
    }

    .stat-value .alt-color {
      color: #ffffff;
    }

    .stat-value .unit {
      font-size: 0.75rem;
      font-weight: 600;
      color: #e2e8f0;
    }

    .stat-desc {
      color: #e2e8f0;
      font-weight: 600;
      font-size: 0.75rem;
    }


     .recruiters-section {
      padding-top: 1.5rem;
      border-top: 0px solid rgba(255, 255, 255, 0.1);
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .divider-header {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
    }

    .line {
      height: 1px;
      background-color: rgba(255, 255, 255, 0.1);
      width: 4rem;
    }

    .divider-title {
      font-size: 0.6875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #94a3b8;
      text-align: center;
    }