:root {
  --navy: #720303;
  --blue: #070456;
  --gold: #c79a45;
  --cream: #fbf7ef;
  --soft: #f5f0e8;
  --ink: #1f2533;
  --muted: #6f7586;
  --white: #fff;
  --shadow: 0 25px 70px rgba(20, 29, 55, .16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: jura,"Cormorant Garamond", serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.preloader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: grid;
  place-items: center;
  color: #fff;
  transition: .5s;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.crest,
.brand-mark {
  width: 46px;
  height: 46px;
}
border-radius:50%;
display: grid;
place-items: center;
background: linear-gradient(135deg, var(--gold), #f2d79b);
color: var(--navy);
font-weight: 900;
box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.preloader .crest {
  width: 78px;
  height: 78px;
  font-size: 26px;
}

.preloader span {
  margin-top: 90px;
  position: absolute;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
}

.topbar {
  background: var(--navy);
  color: #f8e8c1;
  font-size: 13px;
}

.topbar-inner {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 247, 239, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(16, 29, 63, .08);
}

.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
}
align-items: center;
gap: 12px;
}

.brand b {
  display: block;
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
}

.brand small {
  display: block;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 10px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  border: 0;
  background: transparent;
  padding: 14px 12px;
  border-radius: 16px;
  color: #233052;
  font-weight: 700;
  cursor: pointer;
  font-family: jura,"Cormorant Garamond", serif;
  font-size: 15px;
}

.nav-link:hover,
.nav-link.active {
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 29, 63, .08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 4px;
  font-weight: 800;
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  box-shadow: 0 18px 35px rgba(16, 29, 63, .2);
}

.has-mega {
  position: relative;
}

.mega-menu {
  position: absolute;
  right: -180px;
  top: 58px;
  width: 760px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  background: #fff;
  border: 1px solid rgba(16, 29, 63, .08);
  border-radius: 4px;
  padding: 22px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: .25s;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-intro {
  background: linear-gradient(145deg, var(--navy), #203d72);
  color: #fff;
  border-radius: 2px;
  padding: 24px;
}

.mega-intro strong {
  font-size: 24px;
}

.mega-intro p {
  color: #d9e3ff;
}

.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mega-grid a {
  padding: 16px;
  border-radius: 18px;
  background: #fbfaf7;
  border: 1px solid #eee5d7;
  transition: .2s;
}

.mega-grid a:hover {
  background: #fff7e5;
  transform: translateY(-2px);
}

.mega-grid b {
  display: block;
  color: var(--navy);
}

.mega-grid span {
  font-size: 13px;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  border: 0;
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px;
}/* ===== MOBILE DRAWER ===== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 13, 29, .45);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transition: .25s;
}

.mobile-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  right: -360px;
  top: 0;
  height: 100vh;
  width: min(340px, 88vw);
  background: #fff;
  z-index: 1300;
  padding: 20px;
  box-shadow: -30px 0 80px rgba(0, 0, 0, .25);
  transition: .32s;
  overflow: auto;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.drawer-head button {
  border: 0;
  background: var(--cream);
  font-size: 34px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
}

.mobile-drawer > a,
.mobile-drawer summary {
  display: block;
  padding: 15px 12px;
  border-bottom: 1px solid #eee;
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

.mobile-drawer details a {
  display: block;
  padding: 12px 24px;
  color: var(--muted);
  border-bottom: 1px dashed #eee;
}

.drawer-cta {
  margin-top: 18px !important;
  text-align: center;
  border-radius: 999px !important;
  background: var(--navy) !important;
  color: #fff !important;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, #ffe9b9, transparent 24%),
    linear-gradient(135deg, #fffaf0, #eff4ff);
  padding: 88px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f3e5c6;
  color: #6e0715;
  font-weight: 300;
  letter-spacing: .12em;
  text-transform: sentence-case;
  font-size: 14px;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(30px, 4vw, 35px);
  line-height: .98;
  margin: 20px 0;
  color: var(--navy);
}

.hero p {
  font-size: 19px;
  color: var(--muted);
  max-width: 650px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.btn-light {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 18px 35px rgba(16, 29, 63, .1);
}

/* ===== HERO CARD ===== */
.hero-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  position: relative;
}

.campus-visual {
  height: 420px;
  border-radius: 22px;
  background:
    linear-gradient(150deg, rgba(16,29,63,.85), rgba(199,154,69,.25)),
    url('../images/campus-main.svg') center/cover;
  display: flex;
  align-items: end;
  padding: 24px;
  color: #fff;
}

/* ===== STATS ===== */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.stat {
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(16,29,63,.08);
}

.stat b {
  font-size: 30px;
  color: var(--navy);
  display: block;
}

/* ===== SECTION ===== */
.section {
  padding: 78px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 30px;
}

.section-head h2 {
  font-size: clamp(30px, 4vw, 35px);
  line-height: 2.05;
  margin: 0;
  color: var(--navy);
}

.section-head p {
  color: var(--muted);
  max-width: 470px;
}

/* ===== GRID ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ===== CARD ===== */
.card {
  background: #fff;
  border: 1px solid rgba(16,29,63,.08);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 18px 50px rgba(16,29,63,.07);
  transition: .25s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff4dc, #f0c978);
  display: grid;
  place-items: center;
  color: var(--navy);
  font-weight: 900;
  font-size: 22px;
}

.card h3 {
  color: var(--navy);
  font-size: 24px;
}

.card p,
.text-muted {
  color: var(--muted);
}/* ===== FEATURE BAND ===== */
.feature-band {
  background: linear-gradient(135deg, var(--navy), #203d72);
  color: #fff;
  border-radius: 34px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.feature-band h2 {
  font-size: 44px;
  line-height: 1;
  margin: 0;
}

.feature-band p {
  color: #dbe5ff;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 10px 14px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
}

/* ===== TIMELINE ===== */
.timeline {
  display: grid;
  gap: 16px;
}

.time-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  align-items: start;
}

.time-dot {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--navy);
  font-weight: 900;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background:  #720303;   
  padding: 84px 0;
  color: #fff;
}

.page-hero h1 {
  color: #fff;
}

.page-hero p {
  max-width: 760px;
  color: #e2e9ff;
  font-size: 19px;
}

/* ===== CONTENT ===== */
.content-block {
  background: #fff;
  border-radius: 34px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.list li {
  padding: 13px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  gap: 12px;
}

.list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 900;
}

/* ===== FORM ===== */
.form {
  display: grid;
  gap: 14px;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 16px;
  border: 1px solid #e7dfd1;
  border-radius: 16px;
  background: #fff;
  font: inherit;
}

.form textarea {
  min-height: 130px;
}

/* ===== NOTICE ===== */
.notice {
  padding: 16px;
  border-radius: 18px;
  background: #eaf8ef;
  color: #155d31;
  font-weight: 800;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.gallery-grid div {
  height: 180px;
  border-radius: 22px;
  background: linear-gradient(135deg, #dde8ff, #fff4da);
  box-shadow: 0 12px 30px rgba(16,29,63,.08);
}

/* ===== FOOTER ===== */
.mega-footer {
  background: #09142d;
  color: #fff;
  margin-top: 60px;
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 32px;
}

.footer-grid h4,
.footer-grid h3 {
  color: #fff;
}

.footer-grid a {
  display: block;
  color: #cbd6ee;
  margin: 9px 0;
}

.footer-grid p {
  color: #cbd6ee;
}

.big {
  width: 64px;
  height: 64px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: grid;
  place-items: center;
}

.mini-btn {
  display: inline-block !important;
  background: var(--gold);
  color: #111 !important;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 38px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  color: #aebbd5;
  font-size: 14px;
}

/* ===== ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: .7s;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .desktop-nav { display: none; }
  .nav-toggle { display: block; }

  .hero-grid,
  .grid-3,
  .grid-2,
  .feature-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero { padding-top: 50px; }

  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head { display: block; }

  .campus-visual { height: 300px; }

  .hide-sm { display: none; }

  .footer-bottom { display: block; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .topbar-inner { justify-content: center; }

  .brand b { font-size: 16px; }

  .nav-wrap { height: 72px; }

  .hero h1,
  .page-hero h1 {
    font-size: 38px;
  }

  .stat-row { grid-template-columns: 1fr; }

  .feature-band { padding: 28px; }

  .content-block { padding: 26px; }

  .gallery-grid { grid-template-columns: 1fr; }

  .mobile-drawer { right: -100%; }
}


/* =========================================================
   SGGI ULTRA PREMIUM LANDING PAGE UPDATE
   Added for: Video Hero, About, Animated Hierarchy,
   Management Team, Client Response, CTA and better mobile fit
   ========================================================= */

/* Premium video hero */
.sggi-hero-video{
  position:relative;
  min-height:95vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  isolation:isolate;
  border-bottom-left-radius:0px;
  border-bottom-right-radius:404px;
  background:var(--navy);
}

.hero-video-bg{
  position:absolute;
  inset:0;
  z-index:-2;
}

.hero-video-bg video,
.hero-video-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform:scale(1.04);
}

.hero-overlay{
  position:absolute;
  inset:0;
  z-index:-1;
  background:
    radial-gradient(circle at 78% 18%, rgba(199,154,69,.42), transparent 34%),
    radial-gradient(circle at 18% 72%, rgba(7,4,86,.45), transparent 36%),
    linear-gradient(115deg, rgba(12,14,30,.93) 0%, rgba(114,3,3,.78) 48%, rgba(12,14,30,.48) 100%);
}

.hero-video-content{
  max-width:880px;
  color:#fff;
  padding:140px 0 92px;
}

.hero-video-content .eyebrow{
  background:#8b1e2d;
  color:#f7d893;
  border:1px solid rgba(255,255,255,.2);
  backdrop-filter:blur(10px);
}

.hero-video-content h1{
  font-size:clamp(30px,5vw,45px);
  line-height:.98;
  margin:22px 0;
  letter-spacing:.6px;
  color:#fff;
  text-shadow:0 18px 45px rgba(0,0,0,.28);
}

.hero-video-content p{
  max-width:760px;
  font-size:19px;
  line-height:1.85;
  color:rgba(255,255,255,.86);
  margin:0;
}

.sggi-hero-video .btn-light{
  background:rgba(255,255,255,.92);
  color:var(--navy);
}

.sggi-hero-video .btn-primary{
  background:linear-gradient(135deg,var(--gold),#f2d79b);
  color:#201608;
  box-shadow:0 18px 45px rgba(199,154,69,.25);
}

/* About section */
.sggi-about{
  background:#fff
}

.about-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:58px;
  align-items:center;
}

.about-image{
  position:relative;
  overflow:hidden;
  border-radius:4px;
  box-shadow:var(--shadow);
  background:#fff;
}

.about-image:after{
  content:"";
  position:absolute;
  inset:18px;
  border:1px solid rgba(255,255,255,.5);
  border-radius:26px;
  pointer-events:none;
}

.about-image img{
  width:100%;
  height:540px;
  object-fit:cover;
  display:block;
  transition:transform .75s ease;
}

.about-image:hover img{
  transform:scale(1.06);
}

.about-content h2,
.hierarchy-section h2,
.management-section h2,
.response-section h2,
.final-cta h2{
  font-size:clamp(30px,4vw,35px);
  line-height:1.02;
  margin:16px 0;
  color:#7c0606;
  letter-spacing:-1.5px;
}

.about-content p{
  color:var(--muted);
  font-size:17px;
  line-height:1.9;
}

.about-points{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:28px;
}

.about-points div{
  background:#fff;
  border:1px solid rgba(16,29,63,.07);
  border-radius:24px;
  padding:24px 20px;
  box-shadow:0 18px 50px rgba(16,29,63,.08);
}

.about-points b{
  display:block;
  font-size:34px;
  line-height:1;
  color:var(--navy);
}

.about-points span{
  display:block;
  margin-top:8px;
  color:var(--muted);
  font-size:13px;
  font-weight:800;
}

/* Shared centered section heading */
.section-head.center{
  display:block;
  text-align:center;
  max-width:820px;
  margin:0 auto 46px;
}

.section-head.center p{
  margin:14px auto 0;
  max-width:680px;
}

/* Animated hierarchy tree */
.hierarchy-section{
  background:
    radial-gradient(circle at 10% 15%, rgba(199,154,69,.16), transparent 26%),
    linear-gradient(180deg,#fff,#f7f1e8);
  overflow:hidden;
}

.hierarchy-tree{
  text-align:center;
  position:relative;
  padding:10px 0 4px;
}

.tree-root{
  position:relative;
  z-index:2;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:76px;
  padding:24px 44px;
  border-radius:30px;
  background:linear-gradient(135deg,var(--navy),var(--blue));
  color:#fff;
  font-size:20px;
  font-weight:900;
  box-shadow:0 28px 85px rgba(20,29,55,.22);
  animation:treeFloat 4s ease-in-out infinite;
}

.tree-root:before,
.tree-root:after{
  content:"";
  position:absolute;
  inset:-8px;
  border-radius:36px;
  border:1px solid rgba(199,154,69,.45);
  opacity:.75;
}

.tree-root:after{
  inset:-16px;
  opacity:.25;
}

.tree-line{
  width:2px;
  height:72px;
  margin:0 auto;
  background:linear-gradient(var(--gold),rgba(199,154,69,.08));
  transform-origin:top;
  animation:lineGrow 1.2s ease both;
}

.tree-branches{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  position:relative;
}

.tree-branches:before{
  content:"";
  position:absolute;
  top:0;
  left:12.5%;
  right:12.5%;
  height:2px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
  opacity:.75;
}

.tree-card{
  position:relative;
  background:rgba(255,255,255,.94);
  border:1px solid rgba(16,29,63,.08);
  border-radius:30px;
  padding:34px 24px 30px;
  box-shadow:0 24px 70px rgba(16,29,63,.09);
  text-align:center;
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  animation:cardUp .8s ease both;
}

.tree-card:nth-child(2){animation-delay:.1s}
.tree-card:nth-child(3){animation-delay:.2s}
.tree-card:nth-child(4){animation-delay:.3s}

.tree-card:before{
  content:"";
  position:absolute;
  top:-34px;
  left:50%;
  width:2px;
  height:34px;
  background:rgba(199,154,69,.7);
}

.tree-card span{
  width:48px;
  height:48px;
  display:inline-grid;
  place-items:center;
  border-radius:50%;
  background:linear-gradient(135deg,#fff4dc,#e7c477);
  color:var(--navy);
  font-weight:900;
  box-shadow:0 10px 28px rgba(199,154,69,.25);
}

.tree-card h3{
  margin:18px 0 8px;
  color:var(--navy);
  font-size:23px;
  line-height:1.15;
}

.tree-card p{
  margin:0;
  color:var(--muted);
  font-size:15px;
}

.tree-card:hover{
  transform:translateY(-12px);
  box-shadow:0 34px 95px rgba(16,29,63,.15);
  border-color:rgba(199,154,69,.35);
}

/* Management team */
.management-section{
  background:var(--cream);
}

.management-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.team-card{
  background:#fff;
  border:1px solid rgba(16,29,63,.08);
  border-radius:32px;
  overflow:hidden;
  box-shadow:0 22px 65px rgba(16,29,63,.08);
  transition:transform .35s ease, box-shadow .35s ease;
}

.team-card:hover{
  transform:translateY(-10px);
  box-shadow:var(--shadow);
}

.team-card img{
  width:100%;
  height:330px;
  object-fit:cover;
  display:block;
  background:linear-gradient(135deg,#f1e7d8,#fff);
}

.team-card div{
  padding:26px;
}

.team-card h3{
  margin:0 0 8px;
  color:var(--navy);
  font-size:25px;
}

.team-card p{
  margin:0;
  color:var(--muted);
}

/* Client / parent response */
.response-section{
  position:relative;
  background:
    radial-gradient(circle at 15% 20%, rgba(199,154,69,.20), transparent 24%),
    linear-gradient(135deg,#071027,#111b35);
  color:#fff;
  overflow:hidden;
}

.response-section .section-head h2,
.response-section .section-head p{
  color:#fff;
}

.response-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.response-card{
  position:relative;
  padding:36px 32px;
  border-radius:32px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  backdrop-filter:blur(14px);
  box-shadow:0 24px 70px rgba(0,0,0,.16);
}

.response-card:before{
  content:"“";
  position:absolute;
  top:10px;
  right:24px;
  font-size:82px;
  color:rgba(199,154,69,.35);
  line-height:1;
}

.response-card p{
  position:relative;
  margin:0;
  color:rgba(255,255,255,.86);
  font-size:17px;
  line-height:1.85;
}

.response-card h4{
  margin:24px 0 4px;
  color:#fff;
  font-size:18px;
}

.response-card span{
  color:rgba(255,255,255,.62);
  font-size:14px;
}



/* Extra mobile drawer hard fix */
body.drawer-open{
  overflow:hidden;
}

.mobile-overlay.show{
  opacity:1!important;
  visibility:visible!important;
}

.mobile-drawer.open{
  right:0!important;
}

@media(max-width:1100px){
  .mega-menu{
    right:-90px;
    width:680px;
  }
}

@media(max-width:992px){
  .sggi-hero-video{
    min-height:86vh;
    border-bottom-left-radius:30px;
    border-bottom-right-radius:30px;
  }

  .hero-video-content{
    padding:120px 0 78px;
  }

  .about-grid,
  .management-grid,
  .response-grid{
    grid-template-columns:1fr;
  }

  .about-image img{
    height:420px;
  }

  .tree-branches{
    grid-template-columns:1fr 1fr;
  }

  .tree-branches:before{
    display:none;
  }
}

@media(max-width:640px){
  .sggi-hero-video{
    min-height:82vh;
    border-bottom-left-radius:22px;
    border-bottom-right-radius:22px;
  }

  .hero-video-content{
    padding:96px 0 58px;
  }

  .hero-video-content h1{
    font-size:38px;
    line-height:1.08;
    letter-spacing:-1px;
  }

  .hero-video-content p{
    font-size:15px;
    line-height:1.75;
  }

  .about-points,
  .tree-branches{
    grid-template-columns:1fr;
  }

  .about-image img{
    height:310px;
  }

  .tree-root{
    width:100%;
    padding:22px 20px;
    font-size:17px;
  }

  .tree-line{
    height:42px;
  }

  .tree-card:before{
    display:none;
  }

  .team-card img{
    height:280px;
  }

  .response-card{
    padding:30px 24px;
  }

  .cta-box{
    border-radius:30px;
    padding:52px 22px;
  }
}

@keyframes treeFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
}

@keyframes lineGrow{
  from{transform:scaleY(0);opacity:0}
  to{transform:scaleY(1);opacity:1}
}

@keyframes cardUp{
  from{opacity:0;transform:translateY(22px)}
  to{opacity:1;transform:translateY(0)}
}


/* ================= SGGI NETWORK ================= */

.sggi-network-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fbf7ef, #ffffff);
  overflow: hidden;
}

.sggi-network-wrap {
  width: min(1240px, 94%);
  margin: auto;
}

.sggi-network-title {
  text-align: center;
  margin-bottom: 34px;
}

.sggi-network-title span {
  color: #c79a45;
  font-size: 13px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #f3e5c6;
    color: #6e0715;
    font-weight: 300;
    letter-spacing: .12em;
    text-transform: sentence-case;
    font-size: 16px;
}

.sggi-network-title h2 {
  margin: 10px 0 8px;
 color: rgb(124, 6, 6);
  font-family: jura,"Cormorant Garamond", serif;
  font-size: clamp(30px, 4vw, 35px);
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.5px;

 }

.sggi-network-title p {
  margin: 0 auto;
  max-width: 650px;
  color: #6f7586;
  font-size: 17px;
}

.college-title {
  margin-top: 52px;
}

/* PANEL */
.sggi-panel {
  position: relative;
  display: grid;
  min-height: 470px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(16,29,63,.08);
  border-radius: 32px;
  box-shadow: 0 24px 70px rgba(16,29,63,.10);
  overflow: hidden;
}

.sggi-school-panel {
  grid-template-columns: 350px 1fr;
}

.sggi-college-panel {
  grid-template-columns: 1fr 390px;
  background: linear-gradient(135deg, #fff, #f5f7ff);
}

/* SIDE IMAGE */
.sggi-side-visual {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.school-visual {
  
  border-radius: 0 52% 52% 0;
  border-right: 3px solid #c79a45;
}

.college-visual {
  background-image: url("uploads/images/college-campus.png");
  border-radius: 52% 0 0 52%;
  border-left: 3px solid #c79a45;
}

.sggi-side-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(71, 3, 3, 0.098), rgba(43, 8, 1, 0.078)),
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.30), transparent 35%);
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
}

.brand-logo{
  width:52px;
  height:52px;
  object-fit:contain;
  display:block;
}

.brand b{
  display:block;
  font-size:20px;
  line-height:1.1;
  color:#1d1d1d;
}

.brand small{
  display:block;
  font-size:12px;
  letter-spacing:.5px;
  color:#f1ac22;
}

.sggi-side-text {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 42px;
  z-index: 3;
  color: #fff;
}

.sggi-side-text small {
  display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    
    color: #6e0715;
    font-weight: 300;
    letter-spacing: .12em;
    text-transform: sentence-case;
    font-size: 14px;
}

.sggi-side-text h3 {
  margin: 0 0 12px;
  color: #0e0d0d;
  font-family: jura,"Cormorant Garamond", serif;
  font-size: clamp(20px, 4vw, 28px);
  line-height: 1;
  font-weight: 500;
}

.sggi-side-text h3 span {
  color: #860202;
}

.sggi-side-text p {
  margin: 0;
  color: #aa0202;
  max-width: 300px;
  font-size: 15px;
}

.college-text {
  text-align: center;
}

.college-text p {
  margin-left: auto;
}

.sggi-round-icon {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 99px;
  height: 99px;
  border-radius: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  background: #020939;
  border: 4px solid #f0cc7a;
  color: #f0cc7a;
  font-size: 34px;
  box-shadow: 0 18px 40px rgba(7,4,86,.24);
}

.college-icon {
  left: 46px;
  right: auto;
}

/* CARDS */
.sggi-card-row {
  padding: 78px 38px;
  display: grid;
  grid-template-columns: repeat(5, minmax(135px, 1fr));
  gap: 20px;
  align-items: stretch;
}

.sggi-card {
  position: relative;
  min-height: 330px;
  padding: 54px 18px 24px;
  text-align: center;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(16,29,63,.09);
  border-radius: 2px;
  box-shadow: 0 14px 38px rgba(16,29,63,.07);
  color: #070456;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transition: .35s ease;
}

.sggi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 65px rgba(16,29,63,.14);
  border-color: rgba(198, 130, 3, 0.806);
}

.sggi-number {
  position: absolute;
  top: -23px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #070456;
  color: #fff;
  font-weight: 900;
  font-size: 17px;
  box-shadow: 0 12px 24px rgba(7,4,86,.18);
}

.sggi-card:nth-child(even) .sggi-number {
  background: #c79a45;
}

.sggi-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f5f0e8;
  font-size: 30px;
  margin-bottom: 24px;
}

.sggi-card h4 {
  margin: 0 0 14px;
  color: #8b1e2d;
  font-family: jura,"Cormorant Garamond", serif;
  font-size: 20px;
  line-height: 1.22;
  font-weight: 500;
}

.sggi-card p {
  margin: 0;
  color: #4f5a73;
  font-size: 14px;
  line-height: 1.55;
  min-height: 66px;
}

.sggi-card span {
  margin-top: auto;
  padding-top: 18px;
  width: 100%;
  border-top: 1px solid rgba(16,29,63,.08);
  color: #070456;
  font-size: 12px;
  line-height: 1.35;
  word-break: break-word;
}

/* COLLEGE CARDS */
.sggi-college-card {
  min-height: 345px;
  border-radius: 2px;
}

.sggi-college-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: -1px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #c79a45, transparent);
  border-radius: 999px;
}

/* ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: .8s ease;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

/* RESPONSIVE */
@media (max-width: 1150px) {
  .sggi-school-panel,
  .sggi-college-panel {
    grid-template-columns: 1fr;
  }

  .school-visual,
  .college-visual {
    min-height: 340px;
    border-radius: 32px 32px 48% 48%;
    border: 0;
  }

  .sggi-round-icon,
  .college-icon {
    left: 50%;
    right: auto;
    top: auto;
    bottom: -46px;
    transform: translateX(-50%);
  }

  .sggi-card-row {
    grid-template-columns: repeat(3, 1fr);
    padding-top: 92px;
  }
}

@media (max-width: 760px) {
  .sggi-network-section {
    padding: 54px 0;
  }

  .sggi-card-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 92px 22px 34px;
  }

  .sggi-card {
    min-height: 300px;
  }

  .sggi-side-text {
    left: 26px;
    right: 26px;
    bottom: 34px;
  }
}

@media (max-width: 520px) {
  .sggi-card-row {
    grid-template-columns: 1fr;
  }

  .sggi-card {
    min-height: auto;
  }

  .school-visual,
  .college-visual {
    min-height: 310px;
  }

  .college-text {
    text-align: left;
  }

  .college-text p {
    margin-left: 0;
  }
}


/* ===== SOFT CLASSY MANAGEMENT SECTION ===== */

.management-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(199,154,69,.12), transparent 28%),
    linear-gradient(180deg, #fff, #fbf7ef);
  position: relative;
  overflow: hidden;
}

.management-head {
  align-items: center;
}

.management-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 36px;
}

.team-card {
  position: relative;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(16,29,63,.08);
  border-radius: 34px;
  padding: 14px;
  box-shadow: 0 18px 55px rgba(16,29,63,.08);
  overflow: hidden;
  transition: .35s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 75px rgba(16,29,63,.14);
}

.team-photo {
  height: 310px;
  border-radius: 26px;
  overflow: hidden;
  background: #f5f0e8;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .7s ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.05);
}

.team-info {
  position: relative;
  margin: -58px 18px 8px;
  padding: 22px 22px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(199,154,69,.20);
  box-shadow: 0 18px 38px rgba(16,29,63,.10);
}

.team-info span {
  position: absolute;
  right: 20px;
  top: -18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  border: 3px solid #fff;
}

.team-info h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: jura, "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 500;
}

.team-info p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .management-grid {
    grid-template-columns: 1fr;
  }

  .team-photo {
    height: 360px;
  }
}

@media (max-width: 520px) {
  .team-photo {
    height: 300px;
  }

  .team-info {
    margin: -48px 12px 6px;
  }
}


/* ===== RESPONSE SECTION ===== */

.response-section {
  background:
    radial-gradient(circle at 90% 20%, rgba(199,154,69,.10), transparent 28%),
    linear-gradient(180deg, #fff, #fbf7ef);
  position: relative;
  overflow: hidden;
}

.response-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 38px;
}

/* CARD */
.response-card {
  position: relative;
  padding: 36px 28px 30px;
  border-radius: 30px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(16,29,63,.08);
  box-shadow: 0 18px 50px rgba(16,29,63,.08);
  transition: .35s ease;
  overflow: hidden;
}

.response-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(16,29,63,.14);
}

/* QUOTE ICON */
.quote-mark {
  position: absolute;
  top: 18px;
  left: 22px;
  font-size: 54px;
  font-family: jura, "Cormorant Garamond", serif;
  color: rgba(199,154,69,.25);
  line-height: 1;
}

/* TEXT */
.response-card p {
  margin: 26px 0 24px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  font-style: italic;
}

/* META */
.response-meta h4 {
  margin: 0;
  font-size: 18px;
  font-family: jura, "Cormorant Garamond", serif;
  color: var(--navy);
  font-weight: 500;
}

.response-meta span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: .05em;
}

/* subtle divider */
.response-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199,154,69,.4), transparent);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .response-grid {
    grid-template-columns: 1fr;
  }

  .response-card {
    padding: 32px 22px;
  }
}


/* ===== FINAL CTA ===== */

.final-cta {
  background:
    radial-gradient(circle at 20% 20%, rgba(199,154,69,.12), transparent 30%),
    linear-gradient(180deg, #fbf7ef, #ffffff);
  padding: 80px 0;
}

.h2{
  color: #fff;
  font-family: jura, "Cormorant Garamond", serif;
  font-weight: 500;
}
.cta-box {
  position: relative;
  padding: 40px 30px;
  border-radius: 4px;
  text-align: center;
  background:
    linear-gradient(135deg, rgb(4, 0, 61), rgba(128, 1, 1, 0.85));
    
  color: #fff;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(16,29,63,.18);
}

/* overlay for softness */
.cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(106, 108, 2, 0.368), transparent 40%);
}

/* eyebrow */
.cta-box .eyebrow {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  color: #f3d48e;
  font-size: 12px;
  letter-spacing: .14em;
}

/* heading */
.cta-box h2 {
  margin: 22px 0 16px;
  font-size: clamp(30px, 4vw, 45px);
  line-height: 1.1;
  font-family: jura, "Cormorant Garamond", serif;
  font-weight: 500;
}

.cta-box h2 span {
  color: #f3d48e;
}

/* text */
.cta-box p {
  margin: 0 auto 28px;
  max-width: 620px;
  color: #e2e9ff;
  font-size: 17px;
}

/* buttons */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* primary button */
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #f1d08c);
  color: #111;
  box-shadow: 0 18px 40px rgba(0,0,0,.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

/* light button */
.btn-light {
  background: rgba(255,255,255,.9);
  color: var(--navy);
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}

.btn-light:hover {
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cta-box {
    padding: 50px 24px;
    border-radius: 30px;
  }

  .cta-box h2 {
    font-size: 30px;
  }

  .cta-box p {
    font-size: 15px;
  }
}


/* about section */

/* ================= ULTRA PREMIUM ABOUT PAGE ================= */

.about-lux-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #070456;
  color: #fff;
}

.about-lux-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(7,4,86,.92), rgba(114,3,3,.72)),
    url("../assets/images/campus-main.jpg") center/cover;
  transform: scale(1.04);
}

.about-lux-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 25%, rgba(255,255,255,.14), transparent 26%),
    radial-gradient(circle at 78% 35%, rgba(199,154,69,.22), transparent 24%);
}

.about-lux-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
}

.about-lux-hero h1 {
  margin: 20px 0 16px;
  font-family: jura, "Cormorant Garamond", serif;
  font-size: clamp(54px, 8vw, 108px);
  line-height: .9;
  font-weight: 500;
  letter-spacing: -.04em;
}

.about-lux-hero p {
  margin: auto;
  max-width: 720px;
  color: #e7ecff;
  font-size: 19px;
}

/* STORY */
.lux-story-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 70px;
  align-items: start;
}

.lux-story-left {
  position: sticky;
  top: 120px;
}

.vertical-label {
  display: inline-block;
  color: var(--gold);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 20px;
}

.lux-story-left h2 {
  margin: 0;
  color: var(--navy);
  font-family: jura, "Cormorant Garamond", serif;
  font-size: clamp(40px, 5vw, 70px);
  line-height: .98;
  font-weight: 500;
}

.lux-story-right {
  padding: 42px;
  border-radius: 36px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(16,29,63,.08);
  box-shadow: 0 22px 70px rgba(16,29,63,.09);
}

.lux-story-right p {
  margin: 0;
  color: #3f4658;
  font-size: 19px;
  line-height: 1.85;
}

.lux-mini-points {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.lux-mini-points span {
  padding: 10px 15px;
  border-radius: 999px;
  background: #fbf7ef;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  border: 1px solid rgba(199,154,69,.20);
}

/* VISUAL */
.lux-visual-wrap {
  position: relative;
  min-height: 560px;
  border-radius: 46px;
  overflow: hidden;
  box-shadow: 0 35px 95px rgba(16,29,63,.16);
}

.lux-visual-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lux-visual-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,4,86,.84), transparent 65%),
    linear-gradient(180deg, transparent, rgba(7,4,86,.36));
}

.lux-visual-card {
  position: absolute;
  left: 46px;
  bottom: 46px;
  z-index: 2;
  width: min(470px, 82%);
  padding: 34px;
  border-radius: 30px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(18px);
  color: #fff;
}

.lux-visual-card span {
  color: #f3d48e;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
}

.lux-visual-card h3 {
  margin: 14px 0 12px;
  font-family: jura, "Cormorant Garamond", serif;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 500;
}

.lux-visual-card p {
  margin: 0;
  color: #e6ecff;
}

/* VALUES */
.lux-value-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px;
}

.lux-value-intro h2 {
  margin: 14px 0 0;
  color: var(--navy);
  font-family: jura, "Cormorant Garamond", serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  font-weight: 500;
}

.lux-value-flow {
  position: relative;
  min-height: 420px;
}

.lux-value-flow::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199,154,69,.75), transparent);
}

.lux-value-card {
  position: absolute;
  width: 260px;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(16,29,63,.08);
  box-shadow: 0 20px 60px rgba(16,29,63,.09);
  transition: .35s ease;
}

.lux-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(16,29,63,.15);
}

.lux-value-card:nth-child(1) {
  left: 3%;
  top: 18px;
}

.lux-value-card:nth-child(2) {
  left: 29%;
  top: 145px;
}

.lux-value-card:nth-child(3) {
  right: 29%;
  top: 25px;
}

.lux-value-card:nth-child(4) {
  right: 3%;
  top: 150px;
}

.lux-value-card span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
  font-weight: 900;
  margin-bottom: 22px;
}

.lux-value-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-family: jura, "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 500;
}

.lux-value-card p {
  margin: 0;
  color: var(--muted);
}

/* VISION */
.lux-vision-box {
  padding: 58px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 90% 18%, rgba(199,154,69,.18), transparent 30%),
    linear-gradient(135deg, #fff, #fbf7ef);
  box-shadow: var(--shadow);
  border: 1px solid rgba(16,29,63,.08);
}

.lux-vision-title {
  max-width: 720px;
}

.lux-vision-title h2 {
  margin: 14px 0 34px;
  color: var(--navy);
  font-family: jura, "Cormorant Garamond", serif;
  font-size: clamp(40px, 5vw, 68px);
  line-height: .98;
  font-weight: 500;
}

.lux-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.lux-vision-grid div {
  padding: 30px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(16,29,63,.08);
  box-shadow: 0 16px 44px rgba(16,29,63,.06);
}

.lux-vision-grid span {
  color: var(--gold);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.lux-vision-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
}

/* JOURNEY */
.lux-journey-head {
  text-align: center;
  margin-bottom: 52px;
}

.lux-journey-head h2 {
  margin: 14px auto 0;
  color: var(--navy);
  font-family: jura, "Cormorant Garamond", serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  font-weight: 500;
}

.lux-journey-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.lux-journey-line::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.journey-step {
  position: relative;
  z-index: 2;
  padding: 28px 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(16,29,63,.08);
  box-shadow: 0 16px 45px rgba(16,29,63,.07);
}

.journey-step b {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fbf7ef;
  border: 1px solid rgba(199,154,69,.35);
  color: var(--navy);
  margin-bottom: 22px;
}

.journey-step h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-family: jura, "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 500;
}

.journey-step p {
  margin: 0;
  color: var(--muted);
}

/* MESSAGE */
.lux-message-box {
  position: relative;
  text-align: center;
  padding: 76px 54px;
  border-radius: 46px;
  background:
    linear-gradient(135deg, rgba(7,4,86,.94), rgba(32,61,114,.86)),
    url("../assets/images/campus-main.jpg") center/cover;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 35px 95px rgba(16,29,63,.18);
}

.lux-message-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(255,255,255,.13), transparent 30%),
    radial-gradient(circle at 85% 35%, rgba(199,154,69,.20), transparent 24%);
}

.lux-message-box > * {
  position: relative;
  z-index: 2;
}

.lux-quote {
  font-size: 86px;
  line-height: .5;
  color: #f3d48e;
  font-family: jura, "Cormorant Garamond", serif;
}

.lux-message-box h2 {
  max-width: 900px;
  margin: 18px auto;
  color: #fff;
  font-family: jura, "Cormorant Garamond", serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  font-weight: 500;
}

.lux-message-box p {
  max-width: 780px;
  margin: 0 auto 24px;
  color: #e3e9ff;
  font-size: 17px;
}

.lux-message-box span {
  color: #f3d48e;
  font-weight: 800;
}

/* CTA */
.lux-cta-box {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding: 46px;
  border-radius: 38px;
  background: #fff;
  border: 1px solid rgba(16,29,63,.08);
  box-shadow: var(--shadow);
}

.lux-cta-box h2 {
  margin: 14px 0 8px;
  color: var(--navy);
  font-family: jura, "Cormorant Garamond", serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  font-weight: 500;
}

.lux-cta-box p {
  margin: 0;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .lux-story-grid,
  .lux-vision-grid,
  .lux-journey-line {
    grid-template-columns: 1fr;
  }

  .lux-story-left {
    position: relative;
    top: auto;
  }

  .lux-value-flow {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .lux-value-flow::before {
    display: none;
  }

  .lux-value-card {
    position: relative;
    width: auto;
    inset: auto !important;
  }

  .lux-cta-box {
    display: block;
    text-align: center;
  }

  .lux-cta-box .btn {
    margin-top: 24px;
  }
}

@media (max-width: 620px) {
  .about-lux-hero {
    min-height: 430px;
  }

  .lux-story-right,
  .lux-vision-box,
  .lux-message-box,
  .lux-cta-box {
    padding: 34px 24px;
    border-radius: 30px;
  }

  .lux-visual-wrap {
    min-height: 430px;
    border-radius: 32px;
  }

  .lux-visual-card {
    left: 22px;
    right: 22px;
    bottom: 22px;
    width: auto;
    padding: 24px;
  }

  .lux-value-flow {
    grid-template-columns: 1fr;
  }

  .lux-journey-line::before {
    display: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: .8s ease;
}

.reveal.show {
  opacity: 1;
  transform: none;
}




<!--about-->

.about-hero-premium{
  position:relative;
  background:#20262d;
  padding:34px 16px 46px;
  overflow:hidden;
}

.about-hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top, rgba(255,255,255,.08), transparent 35%),
    linear-gradient(135deg, rgba(255,255,255,.05), transparent);
  pointer-events:none;
}

.about-campus-gallery{
  position:relative;
  z-index:2;
  max-width:1450px;
  margin:auto;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:30px 48px;
}

.premium-campus-frame{
  width:220px;
  background:#f7f7f7;
  padding:9px;
  border:1px solid rgba(255,255,255,.45);
  box-shadow:0 18px 42px rgba(0,0,0,.28);
  transition:.35s ease;
}

.premium-campus-frame:hover{
  transform:translateY(-6px);
}

.premium-campus-frame img{
  width:100%;
  height:128px;
  object-fit:cover;
  display:block;
}

.premium-campus-frame div{
  text-align:center;
  padding-top:9px;
  color:#8b1e2d;
  font-size:12px;
  line-height:1.25;
  font-weight:300;
  text-transform:uppercase;
}

.premium-campus-frame span{
  color:#8b1e2d;
  font-family:serif;
  font-style:italic;
}

.about-title-bar{
  background:#d6a33a;
  padding:18px 16px;
}

.about-title-bar .container{
  max-width:1180px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
}

.about-title-bar span{
  font-size:12px;
  font-weight:300;
  text-transform:uppercase;
  letter-spacing:1.5px;
  color:#6b1b25;
}

.about-title-bar h1{
  margin:2px 0 0;
  font-size:25px;
  font-weight:850;
  color:#111827;
  text-transform:uppercase;
}

.about-title-bar nav{
  display:flex;
  gap:9px;
  align-items:center;
  font-size:13px;
  font-weight:200;
  text-transform:uppercase;
}

.about-title-bar nav a,
.about-title-bar nav b,
.about-title-bar nav span{
  color:#111827;
  text-decoration:none;
  letter-spacing:0;
}

.we-are-sggi-section{
  background:linear-gradient(135deg,#ffffff,#f8f4f5);
  padding:44px 16px 78px;
  font-family:jura, "Cormorant Garamond", serif;
}

.we-are-sggi-section .container{
  max-width:1180px;
  margin:auto;
}

.we-sggi-layout{
  display:grid;
  grid-template-columns:310px 1fr;
  gap:28px;
}

.we-sggi-sidebar{
  background:linear-gradient(311deg, #8b1e2d, #8b1e2d);
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 24px 65px rgba(16,46,115,.18);
}

.we-sggi-title{
  padding:32px 28px 24px;
  color:#fff;
}

.we-sggi-title span{
  color:#f3bd09;
  font-size:14px;
  font-weight:300;
  letter-spacing:2px;
  text-transform:sentence-case;
}

.we-sggi-title h3{
  margin:7px 0 0;
  font-size:29px;
  font-weight:300;
}

.we-tab{
  width:100%;
  border:0;
  background:transparent;
  color:#fff;
  text-align:left;
  padding:18px 28px;
  font-size:16px;
  font-weight:300;
  text-transform:sentence-case;
  cursor:pointer;
  border-top:1px solid rgba(104, 1, 1, 0.941);
  transition:.3s ease;
  letter-spacing: 1.5;
}

.we-tab:hover,
.we-tab.active{
  background:rgba(255,255,255,.12);
  color:#d6a33a;
  padding-left:34px;
  box-shadow:inset 5px 0 0 #d6a33a;
}

.we-sggi-content{
  position:relative;
  background:rgba(255,255,255,.9);
  border:1px solid rgba(139,30,45,.08);
  border-radius:4px;
  padding:42px;
  min-height:420px;
  box-shadow:0 22px 60px rgba(24,43,70,.08);
  overflow:hidden;
}

.we-sggi-content::after{
  content:"SGGI";
  position:absolute;
  right:24px;
  bottom:-22px;
  font-size:112px;
  font-weight:900;
  color:rgba(139,30,45,.045);
}

.we-panel{
  display:none;
  animation:softFade .35s ease;
  position:relative;
  z-index:2;
}

.we-panel.active{
  display:block;
}

.panel-tag{
  display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f3e5c6;
    color: #6e0715;
    font-weight: 300;
    letter-spacing: .12em;
    text-transform: sentence-case;
    font-size: 14px;
}

.we-panel h2{
  color:#172b45;
  font-size:34px;
  line-height:1.28;
  font-weight:760;
  margin:0 0 18px;
}

.we-panel p{
  color:#657181;
  font-size:15px;
  line-height:1.85;
  margin:0 0 15px;
}


.about-premium-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, #c79a45, #f2d79b);
    color: #111;
  text-decoration:none;
  padding:13px 24px;
  border-radius:40px;
  font-size:14px;
  font-weight:700;
  box-shadow:0 16px 35px rgba(139,30,45,.2);
}

@keyframes softFade{
  from{opacity:0; transform:translateY(12px);}
  to{opacity:1; transform:translateY(0);}
}

@media(max-width:900px){
  .we-sggi-layout{
    grid-template-columns:1fr;
  }

  .we-sggi-sidebar{
    border-radius:24px;
  }
}

@media(max-width:575px){
  .about-campus-gallery{
    gap:18px;
  }

  .premium-campus-frame{
    width:43%;
    padding:7px;
  }

  .premium-campus-frame img{
    height:88px;
  }

  .premium-campus-frame div{
    font-size:9px;
  }

  .about-title-bar .container{
    flex-direction:column;
    align-items:flex-start;
  }

  .about-title-bar h1{
    font-size:22px;
  }

  .about-title-bar nav{
    flex-wrap:wrap;
    font-size:11px;
  }

  .we-sggi-content{
    padding:28px 22px;
    border-radius:4px;
    min-height:auto;
  }

  .we-panel h2{
    font-size:25px;
  }

  .we-panel p{
    font-size:14px;
  }

  
}

.leaders-head{
  text-align:center;
  margin-bottom:28px;
}

.leaders-head h2{
  color:#102e73;
  font-size:18px;
  font-weight:850;
  text-transform:uppercase;
  margin:0;
  letter-spacing:.3px;
}

.leaders-head span{
  display:block;
  width:135px;
  height:2px;
  background:#f3bd09;
  margin:8px auto 0;
}

.board-members-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.board-member-card{
  position:relative;
  min-height:430px;
  background:#f6f7fa;
  overflow:hidden;
  border-radius:2px;
  box-shadow:0 18px 45px rgba(16,46,115,.08);
}

.board-member-card img{
  width:100%;
  height:100%;
  min-height:430px;
  object-fit:cover;
  object-position:top center;
  display:block;
  transition:.4s ease;
}

.board-member-card:hover img{
  transform:scale(1.04);
}

.leader-info{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  background:rgba(243,189,9,.86);
  padding:12px 14px;
  backdrop-filter:blur(6px);
}

.leader-info h4{
  margin:0 0 3px;
  color:#111827;
  font-size:14px;
  font-weight:900;
  text-transform:uppercase;
}

.leader-info p{
  margin:0;
  color:#111827;
  font-size:10px;
  font-weight:800;
  text-transform:uppercase;
}

@media(max-width:900px){
  .board-members-grid{
    grid-template-columns:1fr;
  }

  .board-member-card{
    min-height:460px;
  }

  .board-member-card img{
    min-height:460px;
  }
}

@media(max-width:575px){
  .leaders-head h2{
    font-size:16px;
  }

  .board-member-card{
    min-height:360px;
  }

  .board-member-card img{
    min-height:360px;
  }
}

/* HERO */
.team-hero {
  padding: 110px 0 90px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(7,4,86,.92), rgba(114,3,3,.75)),
    url("../assets/images/campus-main.jpg") center/cover;
  color: #fff;
}

.team-hero h1 {
  font-size: 64px;
  margin: 18px 0;
  font-family: jura, "Cormorant Garamond", serif;
}

.team-hero p {
  max-width: 600px;
  margin: auto;
  color: #e6ecff;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* CTA */
.team-cta {
  padding: 80px 0;
  background: #fbf7ef;
}

.cta-inner {
  text-align: center;
  padding: 60px;
  border-radius: 36px;
  background: linear-gradient(135deg, #070456, #203d72);
  color: #fff;
  box-shadow: 0 30px 80px rgba(16,29,63,.2);
}

.cta-inner h2 {
  margin: 18px 0 14px;
  font-size: 38px;
  font-family: jura, "Cormorant Garamond", serif;
}

.cta-inner p {
  max-width: 620px;
  margin: auto;
  color: #e2e9ff;
}

.cta-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn {
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, #c79a45, #f2d79b);
  color: #111;
}

.btn-light {
  background: #fff;
  color: #070456;
}

/* RESPONSIVE */
@media(max-width:768px){
  .team-hero h1 {
    font-size: 40px;
  }

  .cta-inner {
    padding: 40px 20px;
  }
}


/* ================= SOFT TEAM PAGE ================= */

.soft-team-hero {
  padding: 72px 0 56px;
  background: linear-gradient(180deg, #ffffff, #fbf7ef);
}

.soft-team-hero-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 46px;
  align-items: center;
}

.soft-label {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f3e5c6;
    color: #6e0715;
    font-weight: 300;
    letter-spacing: .12em;
    text-transform: sentence-case;
    font-size: 14px;


  
  
}

.soft-hero-content h1 {
  margin: 14px 0 16px;
  color: #750101;
  font-size: clamp(30px, 4vw, 35px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -.04em;
}

.soft-hero-content p {
  max-width: 560px;
  color: #8b8f97;
  font-size: 17px;
}

.soft-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.soft-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: .25s ease;
}

.soft-btn-primary {
  color: rgb(17, 17, 17);
    background: linear-gradient(135deg, rgb(199, 154, 69), rgb(242, 215, 155));
}

.soft-btn-light {
  background: #fff;
  color: #555;
  border: 1px solid #e6e6e6;
}

.soft-btn:hover {
  transform: translateY(-2px);
}

.soft-hero-image {
  height: 340px;
  border-radius: 34px;
  overflow: hidden;
  background: #f5f5f5;
  box-shadow: 0 24px 70px rgba(20,29,55,.10);
}

.soft-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEAM */
.team-strip-section {
  padding: 70px 0 90px;
  background: #fff;
  overflow: hidden;
}

.team-strip-head {
  margin-bottom: 42px;
}

.team-strip-head h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
  color: #45484d;
  font-weight: 900;
  letter-spacing: -.04em;
}

.team-strip-head h2 span {
  color: #910202;
}

.team-strip-head p {
  margin: 8px 0 12px;
  color: #a0a3a8;
  font-size: 14px;
}

.team-strip-head::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: #8fbf62;
}

.team-strip {
  position: relative;
  min-height: 520px;
}

.strip-member {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 18px;
  transition: .3s ease;
}

.strip-member:hover {
  transform: translateY(-5px);
}

.member-text {
  width: 178px;
  text-align: right;
}

.member-text h3 {
  margin: 0;
  color: #767a80;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 900;
}

.member-text p {
  margin: 3px 0 0;
  color: #b4b7bb;
  font-size: 13px;
  line-height: 1.2;
}

.member-photo {
  position: relative;
  width: 152px;
  height: 78px;
  transform: skewX(-16deg);
  overflow: hidden;
  background: #f2f2f2;
}

.member-photo::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 0;
  width: 8px;
  height: 100%;
  background: #9bcf70;
  z-index: 2;
}

.member-photo img {
  width: 124%;
  height: 100%;
  object-fit: cover;
  transform: skewX(16deg) translateX(-13px);
}

/* scattered layout like reference */
.pos-1 {
  left: 250px;
  top: 26px;
}

.pos-2 {
  right: 125px;
  top: 26px;
}

.pos-3 {
  left: 35px;
  top: 170px;
}

.pos-4 {
  left: 390px;
  top: 172px;
}

.pos-5 {
  right: 35px;
  top: 170px;
}

.pos-6 {
  left: 185px;
  top: 335px;
}

.pos-7 {
  right: 265px;
  top: 335px;
}

/* CTA */
.soft-team-cta {
  padding: 70px 0;
  background: linear-gradient(180deg, #fff, #fbf7ef);
}

.soft-cta-box {
  text-align: center;
  padding: 56px 34px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid #ececec;
  box-shadow: 0 24px 70px rgba(20,29,55,.10);
}

.soft-cta-box h2 {
  margin: 14px auto 12px;
  max-width: 760px;
  color: #45484d;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.03em;
}

.soft-cta-box p {
  max-width: 650px;
  margin: auto;
  color: #8b8f97;
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 1050px) {
  .soft-team-hero-grid {
    grid-template-columns: 1fr;
  }

  .team-strip {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .strip-member {
    position: relative;
    inset: auto !important;
  }
}

@media (max-width: 640px) {
  .soft-team-hero {
    padding-top: 50px;
  }

  .team-strip {
    grid-template-columns: 1fr;
  }

  .strip-member {
    justify-content: space-between;
  }

  .member-text {
    width: auto;
    flex: 1;
  }

  .member-photo {
    width: 145px;
  }

  .soft-hero-image {
    height: 260px;
  }
}



/* ===== INSTITUTIONS PAGE ===== */

.institutions-hero {
  padding: 110px 0 90px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(120, 2, 2, 0.9), rgb(103, 1, 1));
  color: #fff;
}

.institutions-hero h1 {
  margin: 18px 0 14px;
  font-family: jura, "Cormorant Garamond", serif;
  font-size: clamp(30px, 4vw, 35px);
  line-height: .95;
  font-weight: 700;
}

.institutions-hero p {
  max-width: 680px;
  margin: auto;
  color: #e7ecff;
  font-size: 18px;
}

.institutions-section {
  background: linear-gradient(180deg, #fbf7ef, #fff);
}

.section-head.center {
  text-align: center;
  display: block;
}

.section-head.center p {
  margin: 14px auto 0;
}

.institutions-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.institution-image-card {
  position: relative;
  min-height: 260px;
  border-radius: 1px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 22px 60px rgb(255, 255, 255);
  border: 1px solid rgb(194, 191, 191);
  transition: .35s ease;
}

.institution-image-card:hover {
  transform: translateY(-1.2px);
  box-shadow: 0 34px 85px rgba(16,29,63,.16);
}

.institution-image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .8s ease;
}

.institution-image-card:hover img {
  transform: scale(1.07);
}

.institution-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, #720303),
    radial-gradient(circle at 80% 20%, rgba(199,154,69,.22), transparent 28%);
}

.institution-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  color: #fff;
}

.institution-content span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.26);
  color: #f3d48e;
  font-weight: 900;
  margin-bottom: 14px;
}

.institution-content h3 {
  margin: 0 0 8px;
  font-family: jura, "Cormorant Garamond", serif;
  font-size: 20px;
  line-height: 1.05;
  font-weight: 300;
}

.institution-content p {
  margin: 0;
  color: #e6ecff;
  font-size: 14px;
}

.institution-highlight-section {
  background: #fff;
}

.institution-highlight {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding: 48px;
  border-radius: 1px;
  background:
    radial-gradient(circle at 90% 20%, rgba(199,154,69,.16), transparent 28%),
    linear-gradient(135deg, #fff, #fbf7ef);
  box-shadow: var(--shadow);
  border: 1px solid rgba(16,29,63,.08);
}

.institution-highlight h2 {
  margin: 14px 0;
  color: var(--navy);
  font-family: jura, "Cormorant Garamond", serif;
  font-size: clamp(30px, 4vw, 35px);
  line-height: 1.05;
  font-weight: 700;
}

.institution-highlight p {
  color: var(--muted);
}

.highlight-points {
  display: grid;
  gap: 16px;
}

.highlight-points div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border-radius: 1px;
  background: #fff;
  border: 1px solid rgba(16,29,63,.08);
  box-shadow: 0 14px 34px rgba(16,29,63,.06);
}

.highlight-points b {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #fff;
}

.highlight-points span {
  color: var(--navy);
  font-weight: 800;
}

.institution-cta-section {
  background: linear-gradient(180deg, #fff, #fbf7ef);
}

.institution-cta {
  text-align: center;
  padding: 60px 30px;
  border-radius: 0px;
  background:
     linear-gradient(135deg, rgb(82, 1, 1), rgb(106, 1, 1));
    
  color: #fff;
  box-shadow: var(--shadow);
}

.institution-cta h2 {
  margin: 16px 0 10px;
  font-family: jura, "Cormorant Garamond", serif;
  font-size: clamp(30px, 4vw, 35px);
  line-height: 1;
  font-weight: 700;
}

.institution-cta p {
  margin: 0 auto 26px;
  max-width: 620px;
  color: #e2e9ff;
}

/* Responsive */
@media (max-width: 960px) {
  .institutions-grid,
  .institution-highlight {
    grid-template-columns: 1fr;
  }

  .institution-image-card {
    min-height: 320px;
  }
}

@media (max-width: 560px) {
  .institutions-hero {
    padding: 80px 0 64px;
  }

  .institution-highlight {
    padding: 30px 22px;
    border-radius: 28px;
  }

  .institution-image-card {
    min-height: 300px;
    border-radius: 26px;
  }
}

/* ================= VISION PAGE ================= */

.vision-hero {
  padding: 120px 0 90px;
  background:
    linear-gradient(135deg, #720303,#720303),
    url("assets/images/campus-main.jpg") center/cover;
  color: #fff;
  text-align: center;
}

.vision-hero-inner {
  max-width: 820px;
}

.vision-hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(30px, 4vw, 35px);
  line-height: .95;
  font-family: jura, "Cormorant Garamond", serif;
  font-weight: 700;
}

.vision-hero p {
  color: #e7ecff;
  font-size: 18px;
}

/* MAIN SECTION */
.vision-main-section {
  background: linear-gradient(180deg,#fbf7ef,#fff);
}

.vision-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: stretch;
}

.vision-large-card {
  padding: 28px;
  border-radius: 1px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(16,29,63,.08);
  box-shadow: 0 24px 70px rgba(16,29,63,.08);
}

.small-tag {
  display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f3e5c6;
    color: #6e0715;
    font-weight: 300;
    letter-spacing: .12em;
    text-transform: sentence-case;
    font-size: 14px;
}

.vision-large-card h2 {
  margin: 18px 0 18px;
  color: var(--navy);
  font-size: clamp(30px,4vw,35px);
  line-height: 1;
  font-family: jura, "Cormorant Garamond", serif;
  font-weight: 700;
}

.vision-large-card p {
  color: var(--muted);
  font-size: 17px;
}

.vision-points {
  margin-top: 34px;
  display: grid;
  gap: 18px;
}

.vision-point {
  display: flex;
  gap: 18px;
  align-items: start;
  padding: 20px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(16,29,63,.06);
}

.vision-point span {
  width: 36px;
  height: 36px;
  
  display: grid;
  place-items: center;
  background: #8b1e2d;
  color: #fff;
  font-weight: 900;
  flex-shrink: 0;
}

.vision-point h4 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 18px;
}

.vision-point p {
  margin: 0;
  font-size: 14px;
}

/* RIGHT CARDS */
.vision-side-grid {
  display: grid;
  gap: 24px;
}

.vision-soft-card {
  padding: 28px;
  border-radius: 1px;
  background:
    radial-gradient(circle at top right, rgba(199,154,69,.14), transparent 34%),
    #fff;
  border: 1px solid rgba(16,29,63,.08);
  box-shadow: 0 22px 60px rgba(16,29,63,.08);
}

.vision-icon {
  width: 28px;
  height: 28px;
  border-radius: 1px;
  display: grid;
  place-items: center;
  background: #fbf7ef;
  color: var(--gold);
  font-size: 26px;
  margin-bottom: 18px;
}

.vision-soft-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 25px;
  font-family: jura, "Cormorant Garamond", serif;
  font-weight: 700;
}

.vision-soft-card p {
  margin: 0;
  color: var(--muted);
}

/* IMAGE STRIP */
.vision-image-strip {
  position: relative;
  height: 460px;
  overflow: hidden;
  border-radius: 42px;
  box-shadow: 0 30px 90px rgba(16,29,63,.14);
}

.vision-image-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-image-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,4,86,.88), transparent 70%);
}

.vision-image-content {
  position: absolute;
  left: 50px;
  bottom: 50px;
  z-index: 2;
  max-width: 520px;
  color: #fff;
}

.vision-image-content h2 {
  margin: 16px 0 0;
  font-size: clamp(34px,4vw,54px);
  line-height: 1;
  font-family: jura, "Cormorant Garamond", serif;
  font-weight: 500;
}

/* QUOTE */
.vision-quote-box {
  position: relative;
  text-align: center;
  padding: 70px 50px;
  border-radius: 42px;
  background:
    linear-gradient(135deg,#fff,#fbf7ef);
  border: 1px solid rgba(16,29,63,.08);
  box-shadow: 0 24px 70px rgba(16,29,63,.08);
}

.quote-mark {
  font-size: 80px;
  line-height: .5;
  color: rgba(199,154,69,.35);
  font-family: Georgia, serif;
}

.vision-quote-box h2 {
  margin: 10px auto 20px;
  max-width: 900px;
  color: var(--navy);
  font-size: clamp(34px,4vw,56px);
  line-height: 1.05;
  font-family: jura, "Cormorant Garamond", serif;
  font-weight: 500;
}

.vision-quote-box p {
  max-width: 700px;
  margin: auto;
  color: var(--muted);
  font-size: 17px;
}

/* CTA */
.vision-cta {
  text-align: center;
  padding: 65px 34px;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(7,4,86,.92), rgba(32,61,114,.84)),
    url("assets/images/campus-main.jpg") center/cover;
  color: #fff;
  box-shadow: 0 30px 90px rgba(16,29,63,.18);
}

.vision-cta h2 {
  margin: 18px 0 12px;
  font-size: clamp(38px,4vw,60px);
  line-height: 1;
  font-family: jura, "Cormorant Garamond", serif;
  font-weight: 500;
}

.vision-cta p {
  max-width: 640px;
  margin: auto auto 26px;
  color: #e2e9ff;
}

/* RESPONSIVE */
@media(max-width:960px){

  .vision-layout {
    grid-template-columns: 1fr;
  }

  .vision-image-strip {
    height: 360px;
  }

  .vision-image-content {
    left: 28px;
    bottom: 28px;
    max-width: 90%;
  }

}

@media(max-width:560px){

  .vision-hero {
    padding: 90px 0 70px;
  }

  .vision-large-card,
  .vision-soft-card,
  .vision-quote-box,
  .vision-cta {
    padding: 32px 24px;
    border-radius: 28px;
  }

  .vision-image-strip {
    height: 300px;
    border-radius: 28px;
  }

}


/* ===== MANAGEMENT SECTION - SHARP CLEAN STYLE ===== */

.management-section {
  background: #fbfaf8;
  padding: 80px 0;
}

.management-title {
  text-align: center;
  margin-bottom: 42px;
}

.management-title h2 {
  margin: 10px 0 8px;
  color: #690802;
  font-size: clamp(30px, 4vw, 35px);
  line-height: 1.05;
  font-family: jura, "Cormorant Garamond", serif;
  font-weight: 700;
}

.management-title p {
  
  max-width: 620px;
  color: #6f7586;
  margin: 0;
  font-size: 17px;
 
}

.management-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px 70px;
  max-width: 980px;
  margin: auto;
}

.leader-card {
  position: relative;
  display: grid;
  grid-template-columns: 122px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 126px;
}

.leader-feature {
  grid-column: 1 / -1;
  width: 560px;
  margin: 0 auto 12px;
}

/* image block */
.leader-img {
  position: relative;
  width: 122px;
  height: 122px;
  background: #eef8ff;
}

.leader-img::before {
  content: "";
  position: absolute;
  inset: 12px -12px -12px 12px;
  border: 2px solid #010347;
  z-index: 0;
}

.leader-img img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* info */
.leader-info {
  position: relative;
  padding: 18px 22px;
  background: rgba(255,255,255,.78);
  min-height: 104px;
}

.leader-info::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34px;
  height: 34px;
  border-right: 3px solid #c49d02;
  border-bottom: 3px solid #ce9f04;
}

.leader-info::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 34px;
  height: 34px;
  border-left: 3px solid #7b1111;
  border-top: 3px solid #7b1111;
  opacity: .9;
}

.leader-info h3 {
  margin: 0 0 8px;
  color: #0b2470;
  font-size: 19px;
  font-weight: 800;
}

.leader-info ul {
  margin: 0;
  padding-left: 14px;
  color: #545b6d;
  font-size: 12.5px;
  line-height: 1.55;
}

.leader-info li::marker {
  color: #7b1111;
}

/* soft hover */
.leader-card {
  transition: .28s ease;
}

.leader-card:hover {
  transform: translateY(-4px);
}

.leader-card:hover .leader-img::before {
  border-color: #0b2470;
}

.leader-card:hover .leader-info::after {
  border-color: #7b1111;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .management-board {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .leader-feature {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .leader-card {
    grid-template-columns: 96px 1fr;
    gap: 16px;
  }

  .leader-img {
    width: 96px;
    height: 96px;
  }

  .leader-info {
    padding: 15px 16px;
  }

  .leader-info h3 {
    font-size: 17px;
  }

  .leader-info ul {
    font-size: 11.5px;
  }
}

/* ADD THIS EXTRA CSS */

.leader-role {
  display: inline-block;
  margin-bottom: 6px;
  color: #7b1111;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.leader-info h3 {
  margin: 0 0 10px;
  color: #0b2470;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 800;
  font-family: Georgia, "Times New Roman", serif;
}

/* ================= PREMIUM ACHIEVEMENT SECTION
   SAME THEME AS WEBSITE
================= */

.achievement-section{
  padding:90px 0;
  background:
    radial-gradient(circle at top left, rgba(199,154,69,.10), transparent 24%),
    linear-gradient(180deg,#ffffff,#fff);
  overflow:hidden;
}

/* MAIN BOX */
.achievement-box{
  position:relative;
  padding:70px 45px;
  border-radius:4px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(251,247,239,.92));
  border:1px solid rgba(16,29,63,.08);
  box-shadow:0 30px 90px rgba(20,29,55,.10);
}

/* HEADER */
.achievement-head{
  text-align:center;
  margin-bottom:58px;
}

.achievement-head .eyebrow{
  color:rgb(110, 7, 21);
  letter-spacing:.12em;
  font-size:14px;
  font-weight:300;
  text-transform:sentences;
}

.achievement-head h2{
  margin:16px 0 0;
  color:var(--navy);
  font-size:clamp(30px,4vw,35px);
  line-height: 1.05;
  font-family:jura, "Cormorant Garamond", serif;
  font-weight:700;
}

/* LAYOUT */
.achievement-layout{
  display:grid;
  grid-template-columns:1fr 300px 1fr;
  gap:38px;
  align-items:center;
}

/* SIDE */
.achievement-column{
  display:grid;
  gap:18px;
}

/* CARD */
.achievement-card{
  position:relative;
  display:flex;
  gap:18px;
  align-items:flex-start;
  padding:14px 12px;
  border-radius:4px;
  background:#d8d5d5;
  border:1px solid rgba(16,29,63,.06);
  box-shadow:0 16px 40px rgba(16,29,63,.05);
  transition:.3s ease;
}

.achievement-card:hover{
  transform:translateY(-4px);
  box-shadow:0 24px 55px rgba(16,29,63,.10);
}

/* ACTIVE RED */
.achievement-card.active{
  background:
    linear-gradient(135deg,#460101,#a11515);
}

/* ACTIVE BLUE */
.achievement-card.active-blue{
  background:
    linear-gradient(135deg,#070456,#1b1880);
}

.achievement-card.active h3,
.achievement-card.active span,
.achievement-card.active p,
.achievement-card.active-blue h3,
.achievement-card.active-blue span,
.achievement-card.active-blue p{
  color:#fff;
}

/* ICON */
.achievement-icon{
  width:48px;
  height:48px;
  border-radius:4px;
  display:grid;
  place-items:center;
  background:#fbf7ef;
  color:var(--gold);
  font-size:20px;
  flex-shrink:0;
}

.achievement-card.active .achievement-icon,
.achievement-card.active-blue .achievement-icon{
  background:rgba(255,255,255,.14);
  color:#fff;
}

/* TEXT */
.achievement-card h3{
  margin:0 0 6px;
  color:var(--navy);
  font-size:14px;
  line-height:1.2;
  font-weight:500;
  font-family:jura, "Cormorant Garamond", serif;
}

.achievement-card span{
  display:block;
  margin-bottom:4px;
  color:#00040c;
  font-size:13px;
}

.achievement-card p{
  margin:0;
  color:#000205;
  font-size:13px;
  line-height:1.5;
}

/* CENTER TROPHY */
.achievement-center{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.trophy-circle{
  position:relative;
  width:210px;
  height:210px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:
    linear-gradient(135deg,var(--navy),var(--blue));
  box-shadow:0 30px 70px rgba(16,29,63,.18);
}

.trophy-circle::before{
  content:"";
  position:absolute;
  inset:12px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.14);
}

.trophy-icon{
  font-size:92px;
  color:#fff;
}

.trophy-base{
  width:120px;
  height:72px;
  margin-top:18px;
  border-radius:6px;
  background:#243344;
  box-shadow:0 12px 25px rgba(0,0,0,.12);
}

/* RESPONSIVE */
@media(max-width:960px){

  .achievement-layout{
    grid-template-columns:1fr;
    gap:32px;
  }

  .achievement-center{
    order:-1;
  }

}

@media(max-width:560px){

  .achievement-box{
    padding:42px 20px;
    border-radius:4px;
  }

  .achievement-card{
    padding:18px 16px;
    border-radius:18px;
  }

  .trophy-circle{
    width:150px;
    height:150px;
  }

  .trophy-icon{
    font-size:64px;
  }

  

}


/* ================= FINAL CTA ================= */

.final-cta{
  padding:45px 0 55px;
  background:
    radial-gradient(circle at top left, rgba(199,154,69,.10), transparent 22%),
    linear-gradient(180deg,#ffffff,#fff);
}

.cta-box{
  position:relative;
  overflow:hidden;
  border-radius:4px;
  background:
    linear-gradient(135deg,
    rgb(82, 1, 1),
    rgb(106, 1, 1)),
    url("../images/campus-main.jpg") center/cover;
  box-shadow:0 24px 70px rgba(16,29,63,.14);
  min-height:260px;

  display:flex;
  align-items:center;
  justify-content:center;
}

.cta-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.10), transparent 28%);
}

.cta-content{
  position:relative;
  z-index:2;
  width:100%;
  max-width:760px;
  text-align:center;
  padding:42px 28px;
}

/* eyebrow */
.cta-content .eyebrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  color:#f3d48e;
  font-size:11px;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:sentences;
}

/* heading */
.cta-content h2{
  margin:18px 0 14px;
  color:#fff;
  font-size:clamp(30px,4vw,35px);
  line-height:1.08;
  font-family:jura, "Cormorant Garamond", serif;
  font-weight:700;
}

.cta-content h2 span{
  color:#f3d48e;
}

/* text */
.cta-content p{
  margin:0 auto;
  max-width:620px;
  color:#e3e9ff;
  font-size:15px;
  line-height:1.7;
}

/* buttons */
.cta-actions{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:26px;
}

.cta-actions .btn{
  min-width:190px;
  height:50px;
  padding:0 24px;
  border-radius:999px;
  font-size:14px;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  transition:.25s ease;
  cursor:pointer;
}

/* primary */
.cta-actions .btn-primary{
  background:linear-gradient(135deg,#c79a45,#f2d79b);
  color:#111;
  box-shadow:0 14px 28px rgba(0,0,0,.16);
}

.cta-actions .btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 34px rgba(0,0,0,.20);
}

/* light */
.cta-actions .btn-light{
  background:rgba(255,255,255,.92);
  color:var(--navy);
  border:1px solid rgba(255,255,255,.16);
}

.cta-actions .btn-light:hover{
  transform:translateY(-2px);
  background:#fff;
}

/* responsive */
@media(max-width:560px){

  .final-cta{
    padding:36px 0 46px;
  }

  .cta-box{
    border-radius:24px;
  }

  .cta-content{
    padding:34px 20px;
  }

  .cta-content h2{
    line-height:1.15;
  }

  .cta-actions{
    gap:10px;
  }

  .cta-actions .btn{
    width:100%;
    min-width:100%;
  }

}

/* ================= SOFT VISION SECTION ================= */

.soft-vision-section{
  padding:70px 0 40px;
  background:
    linear-gradient(180deg,#fff,#fbf7ef);
}

.soft-vision-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:54px;
  align-items:center;
}

.soft-vision-image{
  overflow:hidden;
  border-radius:28px;
}

.soft-vision-image img{
  width:100%;
  height:460px;
  object-fit:contain;
}

.soft-vision-content{
  max-width:540px;
}

.soft-vision-content h2{
  margin:14px 0 16px;
  color:var(--navy);
  font-size:clamp(30px,4vw,35px);
  line-height:1.05;
  font-family:jura, "Cormorant Garamond", serif;
  font-weight:700;
}

.soft-vision-content p{
  color:var(--muted);
  font-size:16px;
  line-height:1.9;
}

/* ================= QUOTE FLOW ================= */

.soft-quote-section{
  padding:20px 0 60px;
  background:#fff;
}

.soft-quote-layout{
  display:flex;
  gap:34px;
  align-items:flex-start;
}

.soft-line{
  width:2px;
  min-height:240px;
  background:
    linear-gradient(
      180deg,
      var(--gold),
      rgba(199,154,69,.12)
    );
}

.soft-quote-content{
  max-width:860px;
}

.quote-mark{
  display:block;
  color:rgba(199,154,69,.45);
  font-size:90px;
  line-height:.6;
  font-family:Georgia,serif;
}

.soft-quote-content h2{
  margin:0 0 18px;
  color:var(--navy);
  font-size:clamp(30px,4vw,35px);
  line-height:1.08;
  font-family:jura, "Cormorant Garamond", serif;
  font-weight:700;
}

.soft-quote-content p{
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.9;
}

/* ================= SOFT CTA ================= */

.soft-cta-section{
  padding:20px 0 80px;
  background:
    linear-gradient(180deg,#fff,#fbf7ef);
}

.soft-cta-layout{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;

  padding-top:34px;
  border-top:1px solid rgba(16,29,63,.08);
}

.soft-cta-text h2{
  margin:14px 0 10px;
  color:var(--navy);
  font-size:clamp(30px,4vw,35px);
  line-height:1.05;
  font-family:jura, "Cormorant Garamond", serif;
  font-weight:700;
}

.soft-cta-text p{
  max-width:540px;
  color:var(--muted);
  font-size:15px;
  line-height:1.8;
}

.soft-apply-btn{
  min-width:170px;
  height:52px;
  padding:0 26px;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  border-radius:999px;

  background:
    linear-gradient(
      135deg,
      var(--navy),
      var(--blue)
    );

  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:14px;

  box-shadow:
    0 16px 34px rgba(16,29,63,.14);

  transition:.28s ease;
}

.soft-apply-btn:hover{
  transform:translateY(-2px);
}

/* ================= RESPONSIVE ================= */

@media(max-width:960px){

  .soft-vision-layout{
    grid-template-columns:1fr;
    gap:34px;
  }

  .soft-vision-image img{
    height:340px;
  }

  .soft-cta-layout{
    flex-direction:column;
    align-items:flex-start;
  }

}

@media(max-width:560px){

  .soft-vision-content h2,
  .soft-quote-content h2,
  .soft-cta-text h2{
    line-height:1.12;
  }

  .soft-line{
    display:none;
  }

  .soft-quote-layout{
    display:block;
  }

  .soft-apply-btn{
    width:100%;
  }

}

/* ==============================
   WHITE + BOLD ACADEMIC SECTION
============================== */

.bold-academic-section{
  background:#ffffff;
  color:#1b1b1b;
  position:relative;
  overflow:hidden;
}

.bold-academic-section::before{
  content:"ACADEMICS";
  position:absolute;
  left:-30px;
  top:10px;
  font-size:150px;
  font-weight:900;
  letter-spacing:-8px;
  color:rgba(0,0,0,0.035);
  pointer-events:none;
  z-index:1;
}

.bold-academic-wrap{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:90px;
  align-items:start;
  position:relative;
  z-index:2;
}

/* LEFT */

.bold-kicker{
  display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f3e5c6;
    color: #6e0715;
    font-weight: 300;
    letter-spacing: .12em;
    text-transform: sentence-case;
    font-size: 14px;
}

.bold-academic-left h2{
  font-size:30px;
  line-height:1.5;
  letter-spacing:0.2px;
  font-weight:700;
  max-width:760px;
  margin:0 0 28px;
  color:#111111;
}

.bold-academic-left p{
  max-width:620px;
  font-size:17px;
  line-height:1.9;
  color:#5f5f5f;
  margin:0;
}

/* RIGHT */

.bold-academic-right{
  border-top:1px solid rgba(0,0,0,.10);
}

.bold-row{
  display:grid;
  grid-template-columns:80px 1fr;
  gap:24px;
  padding:34px 0;
  border-bottom:1px solid rgba(0,0,0,.10);
}

.bold-row strong{
  font-size:38px;
  line-height:1;
  color:#b0895b;
  font-weight:800;
}

.bold-row h3{
  font-size:28px;
  line-height:1.1;
  margin:0 0 10px;
  font-weight:700;
  color:#181818;
}

.bold-row p{
  margin:0;
  font-size:15px;
  line-height:1.9;
  color:#666666;
}

/* ==============================
   ADMISSION STRIP
============================== */

.bold-admission-strip{
  margin-top:100px;
  padding-top:42px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:30px;
  border-top:1px solid rgba(0,0,0,.10);
  position:relative;
  z-index:2;
}

.bold-admission-strip span{
  display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f3e5c6;
    color: #6e0715;
    font-weight: 300;
    letter-spacing: .12em;
    text-transform: sentence-case;
    font-size: 14px;
}

.bold-admission-strip h2{
  font-size:46px;
  line-height:1;
  margin:0 0 14px;
  font-weight:800;
  color:#111111;
}

.bold-admission-strip p{
  margin:0;
  color:#666666;
  font-size:16px;
  line-height:1.8;
}

.bold-admission-strip a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:160px;
  height:48px;
  background: linear-gradient(135deg, rgb(199, 154, 69), rgb(242, 215, 155));
  color:#ffffff;
  border-radius: 999px;
  text-decoration:none;
  font-weight:700;
  letter-spacing:.5px;
  transition:.35s ease;
}

.bold-admission-strip a:hover{
  background:#b0895b;
  color:#ffffff;
  transform:translateY(-4px);
}

/* ==============================
   RESPONSIVE
============================== */

@media(max-width:991px){

  .bold-academic-section::before{
    font-size:82px;
    left:-10px;
    top:20px;
  }

  .bold-academic-wrap{
    grid-template-columns:1fr;
    gap:55px;
  }

  .bold-academic-left h2{
    font-size:40px;
  }

  .bold-row{
    grid-template-columns:60px 1fr;
  }

  .bold-row strong{
    font-size:30px;
  }

  .bold-row h3{
    font-size:24px;
  }

  .bold-admission-strip{
    flex-direction:column;
    align-items:flex-start;
  }

  .bold-admission-strip h2{
    font-size:34px;
  }

}


/* ==============================
   CLEAN UNIQUE CURRICULUM PAGE
============================== */

.curriculum-clean-page{
  background:#fff;
  padding:80px 0;
  color:#1f1f1f;
}

.curriculum-split-hero{
  display:grid;
  grid-template-columns:90px 1fr;
  gap:45px;
  align-items:center;
  min-height:260px;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.vertical-title{
  height:220px;
  border-right:1px solid rgba(0,0,0,.12);
  display:flex;
  align-items:center;
  justify-content:center;
}

.vertical-title span{
  writing-mode:vertical-rl;
  transform:rotate(180deg);
  text-transform:uppercase;
  letter-spacing:5px;
  font-size:12px;
  color:#9b7a4f;
  font-weight:600;
}

.mini-label{
  display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f3e5c6;
    color: #6e0715;
    font-weight: 300;
    letter-spacing: .12em;
    text-transform: sentence-case;
    font-size: 14px;
}

.curriculum-intro h1{
  max-width:680px;
  font-size:46px;
  line-height:1.12;
  margin:0 0 18px;
  font-weight:500;
  font-family:Georgia,'Times New Roman',serif;
}

.curriculum-intro p{
  max-width:590px;
  font-size:17px;
  line-height:1.8;
  color:#666;
  margin:0;
}

/* Flow */

.curriculum-flow{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:70px;
  padding:65px 0;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.flow-heading span{
  display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f3e5c6;
    color: #6e0715;
    font-weight: 300;
    letter-spacing: .12em;
    text-transform: sentence-case;
    font-size: 14px;
}

.flow-heading h2{
  font-size:34px;
  line-height:1.25;
  margin:0;
  font-weight:500;
  font-family:Georgia,'Times New Roman',serif;
}

.flow-lines{
  position:relative;
}

.flow-lines::before{
  content:"";
  position:absolute;
  left:32px;
  top:14px;
  bottom:14px;
  width:1px;
  background:rgba(0,0,0,.12);
}

.flow-item{
  display:grid;
  grid-template-columns:70px 1fr;
  gap:22px;
  align-items:center;
  margin-bottom:34px;
}

.flow-item:last-child{
  margin-bottom:0;
}

.flow-item em{
  width:64px;
  height:64px;
  border-radius:50%;
  background:#fffdf8;
  border:1px solid rgba(155,122,79,.35);
  display:flex;
  align-items:center;
  justify-content:center;
  font-style:normal;
  color:#9b7a4f;
  font-weight:600;
  position:relative;
  z-index:2;
}

.flow-item p{
  margin:0;
  font-size:17px;
  color:#333;
}

/* Bottom */

.curriculum-note{
  display:grid;
  grid-template-columns:1fr 1fr auto;
  gap:40px;
  align-items:center;
  padding-top:38px;
}

.curriculum-note b{
  display:block;
  font-size:20px;
  margin-bottom:8px;
  font-weight:500;
  font-family:Georgia,'Times New Roman',serif;
}

.curriculum-note p{
  margin:0;
  color:#666;
  line-height:1.7;
}

.curriculum-note a{
  width:145px;
  height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#8b1e2d;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  border-radius: 999px;
  transition:.3s ease;
}



/* Responsive */

@media(max-width:991px){

  .curriculum-split-hero{
    grid-template-columns:1fr;
    gap:25px;
  }

  .vertical-title{
    height:auto;
    border-right:0;
    justify-content:flex-start;
  }

  .vertical-title span{
    writing-mode:horizontal-tb;
    transform:none;
  }

  .curriculum-intro h1{
    font-size:36px;
  }

  .curriculum-flow{
    grid-template-columns:1fr;
    gap:35px;
  }

  .curriculum-note{
    grid-template-columns:1fr;
    gap:24px;
  }

}

/* ==============================
   UNIQUE ASSESSMENT PAGE
============================== */

.assessment-page{
  background:#fbfaf7;
  padding:78px 0;
  color:#1d1d1d;
}

.assessment-hero{
  display:grid;
  grid-template-columns:110px 1fr;
  gap:38px;
  align-items:center;
  padding-bottom:52px;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.assessment-mark{
  width:92px;
  height:92px;
  border-radius:50%;
  border:1px solid rgba(142,105,62,.35);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:42px;
  color:#9b7448;
  font-family:Georgia,'Times New Roman',serif;
}

.assessment-tag,
.assessment-title span,
.assessment-next span{
  display:inline-block;
  font-size:12px;
  letter-spacing:2.5px;
  text-transform:uppercase;
  color:#9b7448;
  font-weight:600;
  margin-bottom:14px;
}

.assessment-hero h1{
  font-size:48px;
  line-height:1.05;
  margin:0 0 14px;
  font-weight:500;
  font-family:Georgia,'Times New Roman',serif;
}

.assessment-hero p{
  max-width:610px;
  font-size:17px;
  line-height:1.8;
  color:#666;
  margin:0;
}

/* Body */

.assessment-body{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  padding:58px 0;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.assessment-title h2{
  max-width:520px;
  font-size:34px;
  line-height:1.22;
  margin:0;
  font-weight:500;
  font-family:Georgia,'Times New Roman',serif;
}

.assessment-text p{
  font-size:16px;
  line-height:1.9;
  color:#666;
  margin:0 0 26px;
}

.assessment-text ul{
  list-style:none;
  margin:0;
  padding:0;
}

.assessment-text li{
  position:relative;
  padding:13px 0 13px 28px;
  border-top:1px solid rgba(0,0,0,.07);
  font-size:15px;
  color:#333;
}

.assessment-text li:last-child{
  border-bottom:1px solid rgba(0,0,0,.07);
}

.assessment-text li::before{
  content:"";
  position:absolute;
  left:0;
  top:22px;
  width:8px;
  height:8px;
  border-radius:50%;
  background:#9b7448;
}

/* Rhythm */

.assessment-rhythm{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  padding:46px 0;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.assessment-rhythm div{
  padding:0 36px;
  border-right:1px solid rgba(0,0,0,.08);
}

.assessment-rhythm div:first-child{
  padding-left:0;
}

.assessment-rhythm div:last-child{
  border-right:0;
  padding-right:0;
}

.assessment-rhythm small{
  color:#9b7448;
  font-weight:600;
  font-size:13px;
}

.assessment-rhythm h3{
  font-size:26px;
  margin:12px 0 10px;
  font-weight:500;
  font-family:Georgia,'Times New Roman',serif;
}

.assessment-rhythm p{
  margin:0;
  color:#666;
  line-height:1.75;
  font-size:15px;
}

/* Next */

.assessment-next{
  padding-top:42px;
  max-width:650px;
}

.assessment-next h2{
  font-size:34px;
  margin:0 0 12px;
  font-weight:500;
  font-family:Georgia,'Times New Roman',serif;
}

.assessment-next p{
  margin:0 0 24px;
  color:#666;
  line-height:1.8;
}

.assessment-next a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:148px;
  height:48px;
  background:#1d1d1d;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  transition:.3s ease;
}

.assessment-next a:hover{
  background:#9b7448;
  transform:translateY(-3px);
}

/* Responsive */

@media(max-width:991px){

  .assessment-hero{
    grid-template-columns:1fr;
  }

  .assessment-hero h1{
    font-size:40px;
  }

  .assessment-body,
  .assessment-rhythm{
    grid-template-columns:1fr;
    gap:30px;
  }

  .assessment-rhythm div{
    padding:24px 0;
    border-right:0;
    border-bottom:1px solid rgba(0,0,0,.08);
  }

  .assessment-rhythm div:last-child{
    border-bottom:0;
  }

}
.gallery-page{
  background:#fffaf3;
  padding:78px 0;
}

.gallery-hero{
  max-width:720px;
  margin-bottom:42px;
}

.gallery-hero span{
  display:inline-block;
  font-size:12px;
  letter-spacing:2.8px;
  text-transform:uppercase;
  color:#9b7448;
  font-weight:600;
  margin-bottom:14px;
}

.gallery-hero h1{
  font-size:52px;
  line-height:1.05;
  margin:0 0 16px;
  color:#1d1d1d;
  font-weight:500;
  font-family:Georgia,'Times New Roman',serif;
}

.gallery-hero p{
  font-size:17px;
  line-height:1.8;
  color:#666;
  margin:0;
}

.gallery-filter{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:38px;
}

.gallery-filter button{
  border:1px solid rgba(0,0,0,.12);
  background:transparent;
  padding:10px 20px;
  font-size:13px;
  color:#333;
  cursor:pointer;
  transition:.3s ease;
}

.gallery-filter button.active,
.gallery-filter button:hover{
  background:#1d1d1d;
  color:#fff;
}

.gallery-masonry{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:210px;
  gap:18px;
}

.gallery-item{
  position:relative;
  overflow:hidden;
  display:block;
  text-decoration:none;
  background:#eee;
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:1s ease;
}

.gallery-item:hover img{
  transform:scale(1.08);
}

.gallery-item div{
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.55), transparent 60%);
  display:flex;
  align-items:flex-end;
  padding:22px;
  opacity:0;
  transition:.35s ease;
}

.gallery-item:hover div{
  opacity:1;
}

.gallery-item span{
  color:#fff;
  font-size:15px;
  font-weight:600;
  letter-spacing:.5px;
}

.gallery-item.tall{
  grid-row:span 2;
}

.gallery-item.wide{
  grid-column:span 2;
}

/* Responsive */

@media(max-width:991px){

  .gallery-masonry{
    grid-template-columns:repeat(2,1fr);
    grid-auto-rows:200px;
  }

  .gallery-hero h1{
    font-size:42px;
  }

}

@media(max-width:576px){

  .gallery-page{
    padding:60px 0;
  }

  .gallery-masonry{
    grid-template-columns:1fr;
    grid-auto-rows:230px;
  }

  .gallery-item.tall,
  .gallery-item.wide{
    grid-row:auto;
    grid-column:auto;
  }

}

.college-side-image{
  width: 100%;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 18px;
}

.college-side-image img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}


.preloader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #c49d02;
}

.logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.crest {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.preloader span {
    font-size: 16px;
    color: #555;
}

/* ===== SOCIAL MEDIA ICONS ===== */

.socials{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:22px;
}

.socials a{
  width:42px;
  height:42px;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  background:rgba(255,255,255,.08);

  border:1px solid rgba(255,255,255,.08);

  color:#fff;
  text-decoration:none;

  font-size:13px;
  font-weight:700;

  transition:.28s ease;

  backdrop-filter:blur(8px);
}

.socials a:hover{
  transform:translateY(-3px);

  background:
    linear-gradient(
      135deg,
      #c79a45,
      #f2d79b
    );

  color:#111;

  box-shadow:
    0 14px 28px rgba(0,0,0,.16);
}

/* individual brand hover */

.socials a:nth-child(1):hover{
  background:#1877f2;
  color:#fff;
}

.socials a:nth-child(2):hover{
  background:#0a66c2;
  color:#fff;
}

.socials a:nth-child(3):hover{
  background:#ff0000;
  color:#fff;
}

.socials a:nth-child(4):hover{
  background:
    linear-gradient(
      135deg,
      #f58529,
      #dd2a7b,
      #8134af,
      #515bd4
    );

  color:#fff;
}
