/* =========================
   ROOT + BASIC RESET
========================= */
:root{
  --navy:#061B3A;
  --deep:#020B1F;
  --blue:#0B5CFF;
  --gold:#FDB515;
  --text:#071832;
  --muted:#64748b;
  --shadow:0 20px 55px rgba(6,27,58,.13);
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Inter,Arial,sans-serif;
  background:#f6f9ff;
  color:var(--text);
  line-height:1.55;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
}

.container{
  max-width:1120px;
  margin:0 auto;
  padding:0 24px;
}


/* =========================
   HEADER + NAVBAR
========================= */
.site-header{
  background:#020B1F;
  position:sticky;
  top:0;
  z-index:999;
  box-shadow:0 12px 35px rgba(0,0,0,.18);
}

.nav-wrap{
  height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  background:transparent ;
}

.brand-logo{
  width:58px;
  height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:transparent ;
}

.brand-logo img{
  width:100%;
  height:100%;
  background:transparent ;
}

.brand-text strong{
  display:block;
  font-size:28px;
  line-height:.9;
}

.brand-text span{
  display:block;
  font-size:9px;
  text-transform:uppercase;
  opacity:.85;
}

.main-menu{
  display:flex;
  align-items:center;
  gap:25px;
}

.main-menu a{
  color:#fff;
  font-size:13px;
  font-weight:700;
  position:relative;
}

.main-menu a.active{
  color:var(--gold);
}

.main-menu a.active:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-18px;
  height:3px;
  background:var(--gold);
  border-radius:20px;
}

.menu-toggle{
  display:none;
  color:#fff;
  background:none;
  border:0;
  font-size:30px;
}


/* =========================
   BUTTONS
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:999px;
  padding:13px 26px;
  font-weight:800;
  transition:.35s ease;
  border:1px solid transparent;
  white-space:nowrap;
}

.btn:hover{
  transform:translateY(-3px);
}

.btn-gold{
  background:linear-gradient(135deg,#ffc93d,#ffae00);
  color:#061B3A;
}

.btn-outline{
  color:#fff;
  border-color:rgba(255,255,255,.55);
  background:rgba(255,255,255,.06);
}


/* =========================
   HERO SECTION
========================= */
.hero{
  color:#fff;
  overflow:hidden;
  position:relative;
  background:
    radial-gradient(circle at 13% 32%,rgba(0,194,255,.18),transparent 28%),
    radial-gradient(circle at 75% 50%,rgba(11,92,255,.25),transparent 34%),
    linear-gradient(115deg,#020B1F 0%,#061B3A 46%,#0B2B66 100%);
}

.hero:before{
  content:"";
  position:absolute;
  inset:0;
  opacity:.24;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px);
  background-size:38px 38px;
}

.hero:after{
  content:"";
  position:absolute;
  left:-5%;
  right:-5%;
  bottom:-50px;
  height:145px;
  background:linear-gradient(90deg,transparent,rgba(0,194,255,.3),rgba(11,92,255,.8),transparent);
  filter:blur(8px);
  transform:rotate(-2deg);
}

.hero-grid{
  min-height:520px;
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  align-items:center;
  gap:30px;
  position:relative;
  z-index:2;
}

.hero-content h1{
  font-size:53px;
  line-height:1.04;
  font-weight:900;
  margin-bottom:14px;
}

.hero-content h1 span{
  display:block;
  color:var(--gold);
}

.hero-content h3{
  font-size:18px;
  margin-bottom:13px;
}

.hero-content p{
  font-size:16px;
  color:rgba(255,255,255,.9);
  max-width:470px;
  line-height:1.8;
  margin-bottom:25px;
}

.hero-actions{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.hero-visual{
  height:465px;
  position:relative;
  align-self:end;
}

.hero-building{
  position:absolute;
  right:0;
  bottom:0;
  width:110%;
  height:108%;
  object-fit:cover;
  border-radius:30px 0 0 30px;
  box-shadow:0 30px 80px rgba(0,0,0,.35);
}

.hero-doctors{
  position:absolute;
  left:2%;
  bottom:0;
  width:70%;
  height:90%;
  object-fit:contain;
  filter:drop-shadow(0 30px 45px rgba(0,0,0,.4));
}


/* =========================
   FLOATING CARDS
========================= */
.floating-card{
  position:absolute;
  background:rgba(255,255,255,.93);
  color:#061B3A;
  border-radius:13px;
  padding:13px 15px;
  box-shadow:0 18px 44px rgba(0,0,0,.23);
  display:flex;
  align-items:center;
  gap:10px;
  animation:float 4s ease-in-out infinite;
}

.floating-card.one{
  left:5%;
  top:170px;
}

.floating-card.two{
  right:4%;
  bottom:105px;
  animation-delay:.8s;
}

.floating-card b{
  display:block;
  font-size:15px;
}

.floating-card small{
  display:block;
  font-size:10px;
  color:#475569;
}

.mini-icon{
  width:32px;
  height:32px;
  border-radius:50%;
  background:#eef4ff;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.mini-icon img{
  width:65%;
  height:65%;
  object-fit:contain;
}

@keyframes float{
  0%,100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-10px);
  }
}


/* =========================
   STATS CARD
========================= */
.stats-card{
  margin-top:-32px;
  background:#fff;
  border-radius:12px;
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:repeat(4,1fr);
  padding:26px 28px;
  gap:0;
  position:relative;
  z-index:5;
}

.stat-item{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:8px 16px;
  align-items:center;
  border-right:1px solid #e6edf6;
  padding:0 22px;
}

.stat-item:last-child{
  border-right:0;
}

.round-icon{
  grid-row:span 2;
  width:60px;
  height:60px;
  border-radius:50%;
  background:#f1f5ff;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.round-icon img{
  width:58%;
  height:58%;
  object-fit:contain;
}

.stat-item strong{
  font-size:26px;
  color:#071957;
  line-height:1;
}

.stat-item span{
  font-size:13px;
  color:#45536a;
  line-height:1.35;
}


/* =========================
   COMMON SECTIONS
========================= */
.section{
  padding:72px 0;
}

.section-title{
  text-align:center;
  margin-bottom:30px;
}

.section-title.left{
  text-align:left;
}

.section-title span,
.why-box span,
.rector-box span,
.story-heading span,
.marquee-head span{
  display:block;
  color:#0B5CFF;
  font-weight:900;
  letter-spacing:1.3px;
  text-transform:uppercase;
  font-size:12px;
  margin-bottom:7px;
}

.section-title h2,
.story-heading h2,
.marquee-head h2{
  font-size:34px;
  line-height:1.18;
  color:#071957;
}


/* =========================
   PROGRAM CARDS
========================= */
.program-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.program-card{
  background:#fff;
  border-radius:8px;
  padding:34px 28px;
  border-top:4px solid var(--gold);
  box-shadow:0 12px 36px rgba(6,27,58,.08);
  transition:.35s ease;
  position:relative;
  overflow:hidden;
}

.program-card:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 55px rgba(6,27,58,.16);
}

.program-icon{
  width:66px;
  height:66px;
  border-radius:50%;
  background:#062b77;
  border:2px solid var(--gold);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:22px;
  overflow:hidden;
}

.program-icon img{
  width:58%;
  height:58%;
  object-fit:contain;
  filter:brightness(0) invert(1);
}

.program-card h3{
  font-size:22px;
  line-height:1.15;
  margin-bottom:16px;
  color:#071957;
}

.program-card p{
  font-size:14px;
  line-height:1.75;
  color:#334155;
  margin-bottom:20px;
}

.program-card a{
  font-weight:900;
  color:#0B5CFF;
}


/* =========================
   SPLIT SECTION
========================= */
.split-section{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow);
}

.why-box{
  min-height:330px;
  padding:34px 32px;
  color:#fff;
  background:
    linear-gradient(90deg,rgba(2,11,31,.92),rgba(6,27,58,.74)),
    url('../images/building.jpg') center/cover;
}

.why-box span{
  color:var(--gold);
}

.why-box h2,
.rector-box h2{
  font-size:25px;
  line-height:1.2;
  margin:10px 0 16px;
}

.why-box ul{
  list-style:none;
  margin-bottom:24px;
}

.why-box li{
  font-size:14px;
  margin:10px 0;
  display:flex;
  gap:9px;
}

.why-box li:before{
  content:"✓";
  width:19px;
  height:19px;
  border-radius:50%;
  background:var(--gold);
  color:#071957;
  display:grid;
  place-items:center;
  font-size:12px;
  font-weight:900;
  flex:0 0 auto;
}


/* =========================
   RECTOR BOX
========================= */
.rector-box{
  display:grid;
  grid-template-columns:1fr 190px;
  gap:20px;
  align-items:end;
  padding:34px 30px;
}

.rector-box span{
  color:#A17000;
}

.rector-text p{
  font-size:14px;
  line-height:1.7;
  color:#334155;
  margin-bottom:15px;
}

.signature{
  font-family:cursive;
  font-size:28px;
  color:#111;
  margin:4px 0;
}

.rector-text small{
  display:block;
  color:#64748b;
}

.rector-box img{
  height:285px;
  width:100%;
  object-fit:cover;
  object-position:top;
  border-radius:16px;
}


/* =========================
   CAMPUS CARDS
========================= */
.campus-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.campus-card{
  min-height:260px;
  border-radius:12px;
  color:#fff;
  padding:24px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  background-size:cover;
  background-position:center;
  position:relative;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.campus-card:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(2,11,31,.05),rgba(2,11,31,.9));
}

.campus-card>*{
  position:relative;
  z-index:1;
}

.campus-icon{
  width:54px;
  height:54px;
  border-radius:50%;
  background:#0B5CFF;
  display:grid;
  place-items:center;
  font-size:24px;
  margin-bottom:12px;
}

.campus-card h3{
  font-size:21px;
  margin-bottom:7px;
}

.campus-card p{
  font-size:14px;
  line-height:1.55;
  color:rgba(255,255,255,.9);
  margin-bottom:12px;
}

.campus-card a{
  display:inline-flex;
  width:max-content;
  background:#0B5CFF;
  color:#fff;
  padding:9px 15px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
}


/* =========================
   TESTIMONIALS
========================= */
.stories-section{
  background:#f7faff;
  padding-top:45px;
}

.stories-grid{
  display:grid;
  grid-template-columns:1.1fr repeat(3,1fr);
  gap:18px;
}

.story-heading h2{
  font-size:26px;
}

.quote-mark{
  font-size:80px;
  line-height:.7;
  color:#0B5CFF;
}

.testimonial{
  background:#fff;
  border-radius:10px;
  padding:22px;
  box-shadow:0 12px 30px rgba(6,27,58,.07);
}

.testimonial img{
  width:48px;
  height:48px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:12px;
}

.testimonial p{
  font-size:13px;
  color:#475569;
  line-height:1.65;
  margin-bottom:14px;
}

.testimonial b{
  display:block;
  font-size:14px;
}

.testimonial small{
  color:#64748b;
}


/* =========================
   EVENTS
========================= */
.events-section{
  padding-top:30px;
}

.event-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
}

.event-card{
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 12px 28px rgba(6,27,58,.08);
  position:relative;
  transition:.35s ease;
}

.event-card:hover{
  transform:translateY(-7px);
}

.event-card img{
  height:130px;
  width:100%;
  object-fit:cover;
}

.event-card h3{
  font-size:14px;
  line-height:1.35;
  padding:14px 14px 8px;
}

.event-card a{
  display:block;
  color:#0B5CFF;
  font-weight:900;
  font-size:13px;
  padding:0 14px 15px;
}

.date{
  position:absolute;
  top:10px;
  left:10px;
  background:#fff;
  color:#0B5CFF;
  border-radius:7px;
  padding:8px 10px;
  font-weight:900;
  text-align:center;
  line-height:1.05;
  box-shadow:0 7px 18px rgba(0,0,0,.12);
  z-index:2;
}

.date small{
  font-size:10px;
}


/* =========================
   CAMPUS MARQUEE
========================= */
.campus-marquee-section{
  background:#061B3A;
  color:#fff;
  padding:42px 0 50px;
  overflow:hidden;
}

.marquee-head{
  margin-bottom:20px;
}

.marquee-head span{
  color:var(--gold);
}

.marquee-head h2{
  color:#fff;
}

.marquee{
  overflow:hidden;
  width:100%;
}

.marquee-track{
  display:flex;
  gap:12px;
  width:max-content;
  animation:scrollMarquee 30s linear infinite;
}

.marquee:hover .marquee-track{
  animation-play-state:paused;
}

.marquee-track img{
  width:200px;
  height:120px;
  object-fit:contain;
  object-position:center;
  background:#fff;
  padding:5px;
  border-radius:10px;
  box-shadow:0 10px 25px rgba(0,0,0,.2);
  transition:.3s ease;
}

.marquee-track img:hover{
  transform:scale(1.05);
}

@keyframes scrollMarquee{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(-50%);
  }
}


/* =========================
   CTA BAND
========================= */
.cta-band{
  background:linear-gradient(135deg,#062b77,#061B3A);
  color:#fff;
  padding:38px 0;
}

.cta-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.cta-grid h2{
  font-size:31px;
  line-height:1.2;
  margin-bottom:6px;
}

.cta-grid p{
  color:rgba(255,255,255,.84);
}

.cta-actions{
  display:flex;
  gap:13px;
  flex-wrap:wrap;
}


/* =========================
   FOOTER
========================= */
.site-footer{
  background:#020B1F;
  color:#fff;
  padding-top:45px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.1fr;
  gap:35px;
  padding-bottom:35px;
}

.footer-brand{
  margin-bottom:14px;
}

.site-footer p{
  font-size:14px;
  line-height:1.7;
  color:rgba(255,255,255,.75);
}

.site-footer h4{
  margin-bottom:14px;
}

.site-footer a{
  display:block;
  color:rgba(255,255,255,.75);
  font-size:14px;
  margin:9px 0;
}

.socials{
  display:flex;
  gap:9px;
  margin-top:12px;
}

.socials span{
  width:34px;
  height:34px;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  display:grid;
  place-items:center;
  font-size:12px;
}

.copyright{
  text-align:center;
  border-top:1px solid rgba(255,255,255,.1);
  padding:16px;
  color:rgba(255,255,255,.68);
  font-size:13px;
}


/* =========================
   INNER PAGE HERO
========================= */
.page-hero{
  background:linear-gradient(135deg,#020B1F,#062b77);
  color:#fff;
  text-align:center;
  padding:82px 20px;
}

.page-hero h1{
  font-size:44px;
  margin-bottom:10px;
}

.page-hero p{
  color:rgba(255,255,255,.82);
}

.simple-content{
  padding:70px 0;
}

.simple-card{
  background:#fff;
  border-radius:14px;
  box-shadow:var(--shadow);
  padding:36px;
}

.simple-card h2{
  font-size:30px;
  margin-bottom:14px;
}

.simple-card p{
  font-size:17px;
  line-height:1.85;
  color:#475569;
}


/* =========================
   REVEAL ANIMATION
========================= */
.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:all .75s ease;
}

.reveal.visible{
  opacity:1;
  transform:translateY(0);
}


/* =========================
   BACKGROUND CARD OVERLAY
========================= */
.bg-card{
  position:relative;
  background-size:cover;
  background-position:center;
  overflow:hidden;
}

.bg-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(5,38,52,.85);
  z-index:1;
}

.bg-card *{
  position:relative;
  z-index:2;
}


/* =========================
   RESPONSIVE - TABLET
========================= */
@media(max-width:1050px){

  .main-menu{
    display:none;
    position:absolute;
    top:76px;
    left:0;
    right:0;
    background:#020B1F;
    flex-direction:column;
    align-items:flex-start;
    padding:24px;
    gap:18px;
  }

  .main-menu.show{
    display:flex;
  }

  .main-menu a.active:after{
    display:none;
  }

  .menu-toggle{
    display:block;
  }

  .nav-apply{
    display:none;
  }

  .hero-grid{
    grid-template-columns:1fr;
    text-align:center;
    padding-top:50px;
  }

  .hero-content p{
    margin-left:auto;
    margin-right:auto;
  }

  .hero-actions{
    justify-content:center;
  }

  .hero-visual{
    height:410px;
  }

  .hero-building{
    width:100%;
    border-radius:28px;
  }

  .hero-doctors{
    left:50%;
    transform:translateX(-50%);
    width:62%;
  }

  .event-grid{
    grid-template-columns:repeat(3,1fr);
  }

  .stories-grid{
    grid-template-columns:1fr 1fr;
  }
}


/* =========================
   RESPONSIVE - SMALL TABLET
========================= */
@media(max-width:820px){

  .stats-card,
  .program-grid,
  .split-section,
  .campus-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .stat-item{
    border-right:0;
    border-bottom:1px solid #e6edf6;
    padding:16px 0;
  }

  .stat-item:last-child{
    border-bottom:0;
  }

  .rector-box{
    grid-template-columns:1fr;
  }

  .rector-box img{
    height:340px;
  }

  .event-grid{
    grid-template-columns:1fr 1fr;
  }

  .cta-grid{
    flex-direction:column;
    text-align:center;
  }
}


/* =========================
   RESPONSIVE - MOBILE
========================= */
@media(max-width:560px){

  .container{
    padding:0 16px;
  }

  .nav-wrap{
    height:70px;
  }

  .brand-logo{
    width:48px;
    height:48px;
    background:transparent ;
  }

  .brand-logo img{
    background:transparent ;
    object-fit:contain;
  }

  .brand-text strong{
    font-size:22px;
  }

  .brand-text span{
    font-size:7.5px;
  }

  .hero-content h1{
    font-size:35px;
  }

  .hero-content h3{
    font-size:15px;
  }

  .hero-content p{
    font-size:14px;
  }

  .btn{
    width:100%;
    padding:13px 20px;
  }

  .hero-actions,
  .cta-actions{
    width:100%;
  }

  .hero-visual{
    height:305px;
  }

  .hero-doctors{
    width:75%;
  }

  .floating-card{
    padding:9px 10px;
  }

  .floating-card.one{
    left:0;
    top:95px;
  }

  .floating-card.two{
    right:0;
    bottom:55px;
  }

  .section{
    padding:52px 0;
  }

  .section-title h2,
  .marquee-head h2{
    font-size:28px;
  }

  .stories-grid,
  .event-grid{
    grid-template-columns:1fr;
  }

  .marquee-track img{
    width:250px;
    height:145px;
  }

  .cta-grid h2{
    font-size:26px;
  }
 
}
.programs-main-hero{
  background:linear-gradient(135deg,#052634,#073747);
  color:white;
  padding:80px 0;
  overflow:hidden;
}

.programs-hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:45px;
  align-items:center;
}

.programs-main-hero span{
  color:#5df28d;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1px;
}

.programs-main-hero h1{
  font-size:46px;
  line-height:1.1;
  margin:15px 0;
}

.programs-main-hero p{
  font-size:17px;
  line-height:1.8;
  color:rgba(255,255,255,.85);
  margin-bottom:25px;
}

.programs-hero-img img{
  height:360px;
  width:100%;
  object-fit:cover;
  border-radius:22px;
  box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.programs-page-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.program-page-card{
  min-height:430px;
  border-radius:18px;
  overflow:hidden;
  position:relative;
  color:white;
  box-shadow:0 18px 45px rgba(5,38,52,.14);
  transition:.35s ease;
}

.program-page-card:hover{
  transform:translateY(-10px);
}

.program-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transition:.5s ease;
}

.program-page-card:hover .program-bg{
  transform:scale(1.08);
}

.program-page-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(5,38,52,.2),rgba(5,38,52,.95));
}

.program-content{
  position:absolute;
  inset:0;
  z-index:2;
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

.program-content .program-icon{
  width:60px;
  height:60px;
  border-radius:50%;
  background:linear-gradient(135deg,#5df28d,#15d89a);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  margin-bottom:18px;
}

.program-content h3{
  font-size:25px;
  line-height:1.2;
  margin-bottom:12px;
}

.program-content p{
  font-size:14px;
  line-height:1.7;
  color:rgba(255,255,255,.9);
  margin-bottom:18px;
}

.program-content span{
  color:#5df28d;
  font-weight:900;
}

.program-benefits{
  background:white;
  border-radius:16px;
  box-shadow:0 18px 45px rgba(5,38,52,.12);
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
  padding:35px;
  margin-bottom:60px;
}

.program-benefits h3{
  color:#052634;
  font-size:20px;
  margin-bottom:8px;
}

.program-benefits p{
  color:#64748b;
  line-height:1.6;
}

@media(max-width:900px){
  .programs-hero-grid,
  .programs-page-grid,
  .program-benefits{
    grid-template-columns:1fr;
  }

  .programs-main-hero h1{
    font-size:34px;
  }

  .programs-hero-img img{
    height:280px;
  }
}
.ug-hero{
  background:linear-gradient(135deg,#052634,#073747);
  color:white;
  padding:85px 0;
  overflow:hidden;
}

.ug-hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:45px;
  align-items:center;
}

.ug-hero span,
.ug-main-card span,
.ug-split span,
.ug-practical span{
  color:#5df28d;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:1px;
}

.ug-hero h1{
  font-size:48px;
  line-height:1.1;
  margin:15px 0;
}

.ug-hero p{
  font-size:17px;
  line-height:1.8;
  color:rgba(255,255,255,.86);
  margin-bottom:25px;
}

.ug-hero-img img,
.ug-image-card img{
  width:100%;
  height:380px;
  object-fit:cover;
  border-radius:24px;
  box-shadow:0 25px 60px rgba(0,0,0,.25);
}
.ug-hero-img3 img,
.ug-image-card3 img{
  width:550%;
  height:380px;
  object-fit:contain;
  border-radius:24px;
  box-shadow:0 25px 60px rgba(0,0,0,.25);
}
.ug-image-card2 img{
  width:100%;
  height:680px;
  object-fit:cover;
  border-radius:24px;
  box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.ug-overview{
  display:grid;
  grid-template-columns:1.4fr .8fr;
  gap:28px;
}

.ug-main-card,
.ug-info-card,
.ug-feature-card{
  background:white;
  border-radius:18px;
  padding:34px;
  box-shadow:0 18px 45px rgba(5,38,52,.12);
}

.ug-main-card h2,
.ug-split h2,
.ug-practical h2{
  font-size:34px;
  line-height:1.2;
  margin:12px 0 18px;
  color:#071832;
}

.ug-main-card p,
.ug-split p,
.ug-practical p{
  font-size:16px;
  line-height:1.8;
  color:#475569;
  margin-bottom:14px;
}

.ug-info-card{
  background:linear-gradient(145deg,#052634,#073747);
  color:white;
}

.ug-info-card h3{
  font-size:24px;
  margin-bottom:18px;
}

.ug-info-card p{
  margin:12px 0;
  color:rgba(255,255,255,.86);
}

.ug-dark-section{
  background:#052634;
}

.ug-dark-section .section-title h2{
  color:white;
}

.ug-feature-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.ug-feature-card{
  transition:.35s ease;
}

.ug-feature-card:hover{
  transform:translateY(-8px);
}

.ug-icon{
  width:62px;
  height:62px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,#5df28d,#15d89a);
  font-size:28px;
  margin-bottom:18px;
}

.ug-feature-card h3{
  font-size:21px;
  margin-bottom:10px;
  color:#071832;
}

.ug-feature-card p{
  color:#64748b;
  font-size:14px;
  line-height:1.7;
}

.ug-split,
.ug-practical-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:45px;
  align-items:center;
}

.ug-list{
  list-style:none;
  padding:0;
  margin-top:22px;
}

.ug-list li{
  position:relative;
  padding-left:34px;
  margin:13px 0;
  color:#334155;
}

.ug-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  width:22px;
  height:22px;
  border-radius:50%;
  background:#5df28d;
  color:#052634;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:12px;
}

.ug-practical{
  background:#f7fafc;
}

.mbbs-chart{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:35px;
}

.mbbs-year{
  background:white;
  border-radius:18px;
  padding:28px;
  box-shadow:0 18px 45px rgba(5,38,52,.12);
  border-top:5px solid #5df28d;
  transition:.35s ease;
  position:relative;
  overflow:hidden;
}

.mbbs-year::after{
  content:"";
  position:absolute;
  right:-45px;
  top:-45px;
  width:110px;
  height:110px;
  border-radius:50%;
  background:rgba(93,242,141,.12);
}

.mbbs-year:hover{
  transform:translateY(-8px);
}

.mbbs-year span{
  display:inline-block;
  background:linear-gradient(135deg,#5df28d,#15d89a);
  color:#052634;
  font-weight:900;
  padding:8px 15px;
  border-radius:30px;
  margin-bottom:16px;
}

.mbbs-year h3{
  font-size:22px;
  color:#052634;
  margin-bottom:12px;
}

.mbbs-year p{
  color:#64748b;
  line-height:1.7;
  font-size:15px;
}

.ug-outcomes{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.ug-outcomes div{
  background:white;
  border-left:5px solid #5df28d;
  border-radius:14px;
  padding:22px;
  box-shadow:0 14px 35px rgba(5,38,52,.09);
  color:#334155;
  font-weight:600;
  line-height:1.6;
}

@media(max-width:900px){
  .ug-hero-grid,
  .ug-overview,
  .ug-feature-grid,
  .ug-split,
  .ug-practical-grid,
  .ug-outcomes,
  .mbbs-chart{
    grid-template-columns:1fr;
  }

  .ug-hero h1{
    font-size:36px;
  }

  .ug-hero-img img,
  .ug-image-card img{
    height:280px;
  }
}

.testimonial-slider{
  overflow:hidden;
  margin-top:40px;
}

.testimonial-track{
  display:flex;
  gap:20px;
  width:max-content;
  animation:scrollTestimonial 25s linear infinite;
}

.testimonial{
  min-width:300px;
  max-width:320px;
  background:#fff;
  padding:20px;
  border-radius:15px;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.testimonial p{
  font-size:14px;
  line-height:1.6;
  color:#333;
}

.testimonial b{
  display:block;
  margin-top:10px;
  color:#0056b3;
}

.testimonial small{
  color:#777;
}

/* Animation */
@keyframes scrollTestimonial{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(-50%);
  }
}

/* Pause on hover */
.testimonial-slider:hover .testimonial-track{
  animation-play-state:paused;
}

/* Dropdown container */
.dropdown{
  position:relative;
  display:inline-block;
}

/* Dropdown menu */
.dropdown-content{
  position:absolute;
  top:100%;
  left:0;
  background:#fff;
  min-width:220px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:.3s;
  z-index:1000;
}

/* Links inside dropdown */
.dropdown-content a{
  display:block;
  padding:12px 18px;
  color:#333;
  text-decoration:none;
  font-size:14px;
}

.dropdown-content a:hover{
  background:#f0f6ff;
  color:#005bbb;
}

/* Show on hover */
.dropdown:hover .dropdown-content{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.academics-hero{
  background:linear-gradient(135deg,#003b8e,#0077d9);
  color:#fff;
  padding:90px 0;
}

.academics-hero span{
  background:rgba(255,255,255,.18);
  padding:8px 18px;
  border-radius:30px;
  font-weight:700;
}

.academics-hero h1{
  font-size:45px;
  margin:20px 0 12px;
}

.academics-hero p{
  max-width:750px;
  font-size:18px;
  line-height:1.7;
}

.department-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:22px;
}

.department-card{
  background:#fff;
  padding:25px;
  border-radius:20px;
  box-shadow:0 12px 35px rgba(0,45,100,.12);
  border-top:5px solid #0077d9;
  transition:.3s;
}

.department-card:hover{
  transform:translateY(-7px);
}

.department-card h3{
  color:#003b8e;
  margin-bottom:10px;
}

.department-card p{
  color:#555;
  line-height:1.6;
}

/* ===== CREATIVE AIU HEADER ===== */

.site-header{
  position:sticky;
  top:0;
  z-index:999;
  background:linear-gradient(135deg,rgba(255,255,255,.96),rgba(239,248,255,.94));
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(0,91,187,.12);
  box-shadow:0 12px 35px rgba(0,40,100,.10);
  overflow:visible;
}

.header-glow{
  position:absolute;
  top:-80px;
  right:10%;
  width:220px;
  height:220px;
  background:radial-gradient(circle,rgba(0,151,255,.20),transparent 70%);
  pointer-events:none;
}

.nav-wrap{
  height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:relative;
}

/* BRAND */
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
  min-width:max-content;
}

.brand-logo{
  width:58px;
  height:58px;
  border-radius:20px;
  background:linear-gradient(145deg,#ffffff,#eaf5ff);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:
    0 12px 28px rgba(0,91,187,.16),
    inset 0 0 0 1px rgba(255,255,255,.8);
  position:relative;
}

.brand-logo::after{
  content:"";
  position:absolute;
  inset:-4px;
  border-radius:24px;
  border:1px solid rgba(0,119,217,.20);
}

.brand-logo img{
  width:42px;
  height:42px;
  object-fit:contain;
}

.brand-text strong{
  display:block;
  font-size:17px;
  letter-spacing:.8px;
  color:#002b66;
  font-weight:900;
  line-height:1;
}

.brand-text span{
  display:block;
  margin-top:4px;
  font-size:12px;
  color:#60758f;
  font-weight:600;
}

/* MENU */
.main-menu{
  display:flex;
  align-items:center;
  gap:7px;
  background:rgba(255,255,255,.72);
  padding:9px;
  border-radius:40px;
  box-shadow:inset 0 0 0 1px rgba(0,91,187,.08);
}

.main-menu a{
  text-decoration:none;
  color:#003b7a;
  font-size:14px;
  font-weight:800;
  padding:11px 14px;
  border-radius:30px;
  transition:.3s ease;
  white-space:nowrap;
}

.main-menu > a:hover,
.dropdown > a:hover,
.main-menu a.active{
  background:linear-gradient(135deg,#005bbb,#0097ff);
  color:#fff;
  box-shadow:0 8px 20px rgba(0,91,187,.22);
}

/* DROPDOWN */
.dropdown{
  position:relative;
}

.dropdown-content{
  position:absolute;
  top:115%;
  left:0;
  min-width:260px;
  background:#fff;
  border-radius:22px;
  padding:12px;
  box-shadow:0 25px 60px rgba(0,35,90,.18);
  border:1px solid #e1efff;
  opacity:0;
  visibility:hidden;
  transform:translateY(14px) scale(.96);
  transition:.28s ease;
}

.dropdown-content::before{
  content:"";
  position:absolute;
  top:-8px;
  left:28px;
  width:16px;
  height:16px;
  background:#fff;
  transform:rotate(45deg);
  border-left:1px solid #e1efff;
  border-top:1px solid #e1efff;
}

.dropdown-content a{
  display:block;
  padding:12px 15px;
  border-radius:14px;
  color:#003b7a;
  font-size:14px;
  font-weight:700;
}

.dropdown-content a:hover{
  background:#eef7ff;
  color:#005bbb;
  box-shadow:none;
}

.dropdown:hover .dropdown-content{
  opacity:1;
  visibility:visible;
  transform:translateY(0) scale(1);
}

/* APPLY BUTTON */
.nav-apply{
  padding:13px 22px;
  border-radius:40px;
  font-weight:900;
  text-decoration:none;
  background:linear-gradient(135deg,#f5b400,#ffcf4d);
  color:#102b55;
  box-shadow:0 12px 25px rgba(245,180,0,.30);
  white-space:nowrap;
}

.nav-apply:hover{
  transform:translateY(-2px);
}

/* MOBILE BUTTON */
.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:0;
  border-radius:15px;
  background:linear-gradient(135deg,#005bbb,#0097ff);
  color:#fff;
  font-size:23px;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(0,91,187,.26);
}

/* MOBILE VIEW */
@media(max-width:1050px){

  .nav-wrap{
    height:78px;
  }

  .brand-logo{
    width:50px;
    height:50px;
    border-radius:17px;
  }

  .brand-logo img{
    width:36px;
    height:36px;
  }

  .brand-text strong{
    font-size:15px;
  }

  .brand-text span{
    font-size:11px;
  }

  .menu-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .nav-apply{
    display:none;
  }

  .main-menu{
    position:absolute;
    top:88px;
    left:15px;
    right:15px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    padding:18px;
    border-radius:26px;
    background:rgba(255,255,255,.98);
    box-shadow:0 25px 70px rgba(0,35,90,.22);
    border:1px solid #dcecff;
  }

  .main-menu.active{
    display:flex;
  }

  .main-menu a,
  .dropdown > a{
    width:100%;
    display:block;
    padding:14px 16px;
    border-radius:16px;
    background:#f4f9ff;
  }

  .main-menu a.active{
    background:linear-gradient(135deg,#005bbb,#0097ff);
    color:#fff;
  }

  .dropdown-content{
    position:static;
    min-width:100%;
    opacity:1;
    visibility:visible;
    transform:none;
    display:none;
    margin-top:8px;
    box-shadow:none;
    border:1px solid #e2efff;
    background:#ffffff;
    border-radius:18px;
  }

  .dropdown:hover .dropdown-content{
    display:block;
  }

  .dropdown-content::before{
    display:none;
  }

  .dropdown-content a{
    background:#fff;
    padding:12px 14px;
  }
}

@media(max-width:480px){

  .nav-wrap{
    height:74px;
  }

  .brand{
    gap:10px;
  }

  .brand-logo{
    width:46px;
    height:46px;
  }

  .brand-logo img{
    width:32px;
    height:32px;
  }

  .brand-text strong{
    font-size:13px;
  }

  .brand-text span{
    font-size:10px;
  }

  .menu-toggle{
    width:42px;
    height:42px;
    font-size:21px;
  }

  .main-menu{
    top:82px;
    left:10px;
    right:10px;
    padding:14px;
  }
}
.mission-pathway{
  margin-top:-60px;
  position:relative;
  z-index:6;
  background:linear-gradient(135deg,#ffffff,#f3f8ff);
  border-radius:34px;
  padding:36px;
  box-shadow:0 20px 50px rgba(0,0,0,.12);
  border:1px solid #dcecff;
}

.pathway-head{
  text-align:center;
  max-width:760px;
  margin:0 auto 32px;
}

.pathway-head span{
  color:#4f8cff;
  font-weight:800;
  text-transform:uppercase;
  font-size:13px;
  letter-spacing:1px;
}

.pathway-head h2{
  color:#0b3c91;
  font-size:36px;
  margin:8px 0 10px;
}

.pathway-head p{
  color:#6b7280;
  font-size:16px;
}

.pathway-flow{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.path-step{
  flex:1;
  text-align:center;
  padding:10px;
}

.path-number{
  width:72px;
  height:72px;
  margin:0 auto 14px;
  border-radius:50%;
  background:linear-gradient(135deg,#0b3c91,#1e5bb8);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  font-weight:900;
  box-shadow:0 14px 28px rgba(11,60,145,.25);
}

.path-step h3{
  color:#0b3c91;
  font-size:23px;
  margin-bottom:8px;
}

.path-step p{
  color:#4b5563;
  font-size:15px;
  line-height:1.7;
}

.path-arrow{
  font-size:42px;
  color:#4f8cff;
  font-weight:900;
}

@media(max-width:800px){
  .pathway-flow{
    flex-direction:column;
  }

  .path-arrow{
    transform:rotate(90deg);
  }

  .pathway-head h2{
    font-size:29px;
  }
}
.doc-text-slider{
  margin-top:-55px;
  position:relative;
  z-index:6;
  height:140px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:#fff;
  border-radius:30px;
  box-shadow:0 18px 45px rgba(0,0,0,.12);
  overflow:hidden;
}

.doc-text{
  position:absolute;
  opacity:0;
  transform:translateY(20px);
  transition:all .7s ease;
  width:100%;
  padding:20px;
}

.doc-text.active{
  opacity:1;
  transform:translateY(0);
}

.doc-text h2{
  color:#0b3c91;
  font-size:28px;
  margin-bottom:6px;
  font-weight:900;
}

.doc-text p{
  color:#6b7280;
  font-size:15px;
}

/* mobile */
@media(max-width:560px){
  .doc-text-slider{
    height:150px;
    margin-top:-40px;
  }

  .doc-text h2{
    font-size:20px;
  }

  .doc-text p{
    font-size:13px;
  }
}