@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

:root{
  --blue:#0d5c8b;
  --blue-deep:#0a4668;
  --nav:#252e35;
  --teal:#2d7977;
  --orange:#f36d2b;
  --orange2:#e95c25;
  --cream:#f7f6f2;
  --line:#dfe3e5;
  --text:#27343d;
  --muted:#6e7b84;
  --white:#fff;
  --shadow:0 14px 34px rgba(25,48,59,.10);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"DM Sans",Arial,sans-serif;
  color:var(--text);
  background:#fff;
  overflow-x:hidden;
}

img{
  width:100%;
  display:block;
}

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

button{
  font-family:inherit;
}

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

.progress{
  position:fixed;
  top:0;
  left:0;
  height:3px;
  width:0;
  background:var(--orange);
  z-index:3000;
}

/* =====================================================
   TOP
===================================================== */

.utility{
  background:#f1f2ef;
  color:#68737a;
  font-size:10px;
  border-bottom:1px solid #dedfdc;
}

.utility-inner{
  min-height:31px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.utility-left,
.utility-right{
  display:flex;
  gap:16px;
}

.utility-left span{
  display:flex;
  gap:6px;
  align-items:center;
}

.utility i{
  color:var(--orange);
}

.utility-right a:hover{
  color:var(--orange);
}

/* =====================================================
   HEADER
===================================================== */

.site-header{
  background:#fff;
}

.header-inner{
  min-height:96px;
  display:grid;
  grid-template-columns:78px 1fr auto;
  gap:15px;
  align-items:center;
}

.college-mark{
  width:72px;
  height:72px;
  border:3px solid #243944;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#173f54;
  font-size:20px;
  font-weight:900;
  background:
    radial-gradient(circle,#fff 0 28%,#eaf0f2 29% 33%,#fff 34%);
}

.brand h1{
  color:#ef6128;
  font:800 clamp(22px,3.7vw,42px)/.95 "Playfair Display",serif;
  text-transform:uppercase;
}

.brand p{
  color:#4e5b63;
  font-size:14px;
  font-weight:800;
  margin-top:4px;
}

.brand small{
  color:#7b868c;
  font-size:10px;
}

.accreditation{
  display:flex;
  gap:8px;
}

.accredit-card{
  min-width:126px;
  border-radius:24px;
  padding:8px 11px;
  display:flex;
  flex-direction:column;
  align-items:center;
  color:#fff;
  background:#165d70;
  text-align:center;
}

.accredit-card.orange{
  background:var(--orange);
}

.accredit-card .round{
  width:21px;
  height:21px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#ffffff25;
  font-size:11px;
  margin-bottom:3px;
}

.accredit-card strong{
  font-size:9px;
}

.accredit-card small{
  color:#fff;
  font-size:7px;
}

/* =====================================================
   NAV
===================================================== */

.nav{
  background:var(--nav);
  color:#fff;
  position:sticky;
  top:0;
  z-index:1200;
  box-shadow:0 4px 13px rgba(0,0,0,.18);
}

.nav-inner{
  display:flex;
  align-items:center;
}

.nav-list{
  display:flex;
  list-style:none;
}

.nav-list>li{
  position:relative;
}

.nav-list>li>a{
  display:block;
  padding:13px 15px;
  border-right:1px solid rgba(255,255,255,.08);
  font-size:12px;
  transition:.2s;
}

.nav-list>li.active>a,
.nav-list>li>a:hover{
  background:var(--orange);
}

.drop{
  position:absolute;
  left:0;
  top:100%;
  width:218px;
  background:#fff;
  color:#24313a;
  box-shadow:var(--shadow);
  opacity:0;
  visibility:hidden;
  transform:translateY(6px);
  transition:.22s;
}

.drop a{
  display:block;
  padding:11px 14px;
  border-bottom:1px solid #edf0f1;
  font-size:10px;
}

.drop a:hover{
  background:var(--orange);
  color:#fff;
}

.has-drop:hover .drop{
  opacity:1;
  visibility:visible;
  transform:none;
}

.mobile-nav{
  display:none;
  margin-left:auto;
  color:#fff;
  background:#ffffff12;
  border:0;
  padding:9px 11px;
  border-radius:5px;
}

/* =====================================================
   TICKER
===================================================== */

.ticker{
  background:var(--orange);
  color:#fff;
}

.ticker-inner{
  min-height:38px;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.ticker-label{
  padding:7px 13px;
  background:#29333a;
  font-size:10px;
  font-weight:800;
}

.ticker-window{
  flex:1;
  overflow:hidden;
}

.ticker-run{
  width:max-content;
  white-space:nowrap;
  padding-left:18px;
  font-size:10px;
  animation:tickerMove 22s linear infinite;
}

.ticker-run span{
  margin:0 15px;
  color:#ffd59a;
}

.ticker-more{
  background:#4a3192;
  padding:7px 18px;
  font-size:9px;
  font-weight:800;
}

@keyframes tickerMove{
  from{transform:translateX(100%)}
  to{transform:translateX(-100%)}
}

/* =====================================================
   SIDE TAB
===================================================== */

.side-tab{
  position:fixed;
  left:0;
  top:48%;
  width:39px;
  height:184px;
  background:#7d858a;
  color:#fff;
  z-index:1250;
  display:flex;
  justify-content:center;
  align-items:center;
}

.side-tab span{
  transform:rotate(-90deg);
  white-space:nowrap;
  font-size:9px;
  font-weight:800;
  letter-spacing:1px;
}

/* =====================================================
   HERO
===================================================== */

.hero-section{
  height:585px;
  position:relative;
  overflow:hidden;
  background:#153d56;
}

.hero-slider,
.hero-slide{
  position:absolute;
  inset:0;
}

.hero-slide{
  opacity:0;
  transition:opacity .95s ease;
}

.hero-slide.active{
  opacity:1;
}

.hero-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(.54) saturate(.94);
}

.hero-shade{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(11,51,71,.93),
      rgba(11,51,71,.58) 48%,
      rgba(11,51,71,.14) 100%
    );
}

.hero-inner{
  height:100%;
  position:relative;
  z-index:6;
  display:grid;
  grid-template-columns:minmax(0,1fr) 345px;
  gap:20px;
  align-items:center;
}

.hero-left{
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.hero-notice-card{
  max-width:740px;
  margin-bottom:26px;
  padding:12px 16px;
  text-align:center;
  border-radius:4px;
  color:#fff;
  background:
    linear-gradient(
      90deg,
      rgba(229,92,53,.95),
      rgba(245,165,77,.93)
    );
  box-shadow:0 9px 23px rgba(0,0,0,.17);
  animation:softFloat 4s ease-in-out infinite;
}

.hero-notice-card strong{
  display:block;
  font-size:12px;
}

.hero-notice-card span{
  display:block;
  margin-top:3px;
  font-size:10px;
}

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

.hero-content{
  color:#fff;
}

.hero-content>small{
  display:inline-block;
  padding:6px 9px;
  background:var(--orange);
  font-size:9px;
  font-weight:800;
  letter-spacing:1.7px;
}

.hero-content h2{
  max-width:760px;
  margin:12px 0 8px;
  font:800 clamp(42px,5.4vw,68px)/.97
       "Playfair Display",serif;
}

.hero-content h2 em{
  color:#ffd16b;
  font-style:normal;
}

.hero-place{
  font-size:16px;
  font-weight:600;
}

.hero-tagline{
  color:#e6eef2;
  font-size:12px;
  margin-top:4px;
}

.hero-buttons{
  display:flex;
  gap:8px;
  margin-top:19px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:10px 15px;
  border-radius:4px;
  font-size:10px;
  font-weight:800;
  transition:.25s;
}

.btn.orange{
  background:var(--orange);
  color:#fff;
}

.btn.light{
  background:#fff;
  color:var(--blue);
}

.btn.orange:hover,
.btn.light:hover{
  transform:translateY(-3px);
  box-shadow:0 9px 21px rgba(0,0,0,.16);
}

/* prospectus */
.prospectus{
  background:#fff;
  border:1px solid #dfe3e4;
  box-shadow:0 15px 30px rgba(0,0,0,.17);
}

.pros-head{
  padding:17px 12px;
  background:
    linear-gradient(125deg,#4c297e,#ee9d37);
  color:#fff;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:9px;
}

.pros-head span{
  font:700 21px "Playfair Display",serif;
}

.pros-head strong{
  font-size:10px;
}

.pros-tabs{
  display:grid;
  grid-template-columns:repeat(3,1fr);
}

.pros-tabs button{
  border:1px solid #e0e3e4;
  padding:10px 4px;
  background:#f5f4f2;
  cursor:pointer;
  font-size:10px;
  font-weight:700;
}

.pros-tabs button.active{
  background:var(--orange);
  color:#fff;
}

.pros-list{
  padding:8px;
}

.pros-list a{
  display:block;
  padding:11px;
  background:#f2f3f2;
  border:1px solid #dfe3e4;
  margin-bottom:6px;
  transition:.2s;
}

.pros-list a:hover{
  transform:translateX(4px);
  background:#eef5f7;
}

.pros-list span{
  display:block;
  color:var(--orange);
  font-size:8px;
  font-weight:800;
}

.pros-list strong{
  display:block;
  margin-top:3px;
  color:#2a353c;
  font-size:10px;
}

.hero-dots{
  position:absolute;
  z-index:9;
  left:50%;
  bottom:14px;
  transform:translateX(-50%);
  display:flex;
  gap:5px;
}

.hero-dot{
  width:7px;
  height:7px;
  border:0;
  border-radius:50%;
  background:#fff8;
  cursor:pointer;
}

.hero-dot.active{
  width:24px;
  border-radius:9px;
  background:var(--orange);
}

/* =====================================================
   ABOUT FEATURE
===================================================== */

.about-feature{
  position:relative;
  min-height:420px;
  overflow:hidden;
  background:#243e4b;
  color:#fff;
}

.about-bg,
.about-overlay{
  position:absolute;
  inset:0;
}

.about-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(.42);
}

.about-overlay{
  background:
    linear-gradient(
      90deg,
      rgba(11,39,51,.82),
      rgba(11,39,51,.60),
      rgba(11,39,51,.25)
    );
}

.about-feature-inner{
  position:relative;
  z-index:3;
  min-height:420px;
  display:grid;
  grid-template-columns:1fr 420px;
  gap:45px;
  align-items:center;
}

.about-feature-copy small{
  color:#ff9a5e;
  letter-spacing:1.8px;
  font-size:9px;
  font-weight:800;
}

.about-feature-copy h2{
  font:800 39px "Playfair Display",serif;
  margin:7px 0 11px;
}

.about-feature-copy p{
  max-width:680px;
  color:#e5eef2;
  font-size:12px;
  line-height:1.85;
}

.about-actions{
  display:flex;
  gap:8px;
  margin-top:18px;
}

.principal-card{
  background:#fff;
  color:#24313a;
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:120px 1fr;
  gap:0;
  overflow:hidden;
}

.principal-photo{
  min-height:225px;
  background:#f1f1ed;
}

.principal-photo img{
  width:100%;
  height:100%;
  min-height:225px;
  object-fit:cover;
}

.principal-info{
  padding:20px 17px;
}

.principal-info small{
  color:var(--orange);
  font-size:9px;
  font-weight:800;
  letter-spacing:1.6px;
}

.principal-info h3{
  font:800 22px "Playfair Display",serif;
  color:var(--blue);
  margin:6px 0;
}

.principal-info p{
  color:var(--muted);
  font-size:10px;
  line-height:1.7;
}

.principal-info strong{
  display:block;
  color:#27353d;
  margin-top:13px;
  font-size:11px;
}

.principal-info span{
  display:block;
  color:var(--muted);
  font-size:9px;
  margin-top:2px;
}

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

.vision-wrap{
  position:relative;
  background:#fff;
  padding:0 0 38px;
}

.vision-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:9px;
  position:relative;
  z-index:5;
  transform:translateY(-28px);
}

.vision-card{
  min-height:190px;
  padding:25px;
  color:#fff;
  box-shadow:0 10px 25px rgba(0,0,0,.10);
}

.vision-card.orange{
  background:var(--orange);
}

.vision-card.dark{
  background:#252f35;
}

.vision-icon{
  font-size:22px;
  margin-bottom:5px;
}

.vision-card h3{
  font:800 24px "Playfair Display",serif;
  margin-bottom:8px;
}

.vision-card p{
  font-size:11px;
  line-height:1.8;
  color:#f7fafb;
}

.drip{
  position:absolute;
  left:0;
  right:0;
  bottom:-2px;
  height:50px;
  background:
    radial-gradient(circle at 2% 0, #0d5d8e 0 15px, transparent 16px),
    radial-gradient(circle at 8% 10px, #0d5d8e 0 21px, transparent 22px),
    radial-gradient(circle at 16% 0, #0d5d8e 0 16px, transparent 17px),
    radial-gradient(circle at 23% 14px, #0d5d8e 0 23px, transparent 24px),
    radial-gradient(circle at 31% 0, #0d5d8e 0 14px, transparent 15px),
    radial-gradient(circle at 40% 10px, #0d5d8e 0 20px, transparent 21px),
    radial-gradient(circle at 49% 0, #0d5d8e 0 16px, transparent 17px),
    radial-gradient(circle at 58% 12px, #0d5d8e 0 22px, transparent 23px),
    radial-gradient(circle at 67% 0, #0d5d8e 0 15px, transparent 16px),
    radial-gradient(circle at 76% 11px, #0d5d8e 0 20px, transparent 21px),
    radial-gradient(circle at 84% 0, #0d5d8e 0 16px, transparent 17px),
    radial-gradient(circle at 93% 12px, #0d5d8e 0 21px, transparent 22px);
  pointer-events:none;
}

/* =====================================================
   COMMON HEADING
===================================================== */

.section{
  padding:74px 0;
}

.section-heading{
  text-align:center;
  max-width:760px;
  margin:0 auto 32px;
}

.section-heading small{
  color:var(--orange);
  font-size:9px;
  letter-spacing:1.9px;
  text-transform:uppercase;
  font-weight:800;
}

.section-heading h2{
  color:#2b363e;
  font:800 40px "Playfair Display",serif;
  margin-top:6px;
}

.section-heading p{
  color:var(--muted);
  font-size:11px;
  margin-top:6px;
}

.section-heading.white h2,
.section-heading.white p{
  color:#fff;
}

/* =====================================================
   ACHIEVEMENT
===================================================== */

.achievement{
  position:relative;
  background:#0d5d8e;
  color:#fff;
  padding:78px 0 90px;
  overflow:hidden;
}

.achievement-top-pattern{
  position:absolute;
  inset:0;
  opacity:.06;
  background:
    linear-gradient(90deg,transparent 0 40%,#fff 40% 40.2%,transparent 40.2% 100%),
    linear-gradient(0deg,transparent 0 50%,#fff 50% 50.2%,transparent 50.2% 100%);
  background-size:170px 120px;
}

.achievement-main{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr .95fr;
  gap:30px;
  align-items:center;
}

.achievement-copy h3{
  font:800 31px "Playfair Display",serif;
  margin-bottom:9px;
}

.achievement-copy p{
  color:#dfedf4;
  font-size:12px;
  line-height:1.85;
}

.achievement-copy ul{
  list-style:none;
  display:grid;
  gap:9px;
  margin:17px 0 19px;
}

.achievement-copy li{
  font-size:11px;
}

.achievement-copy li i{
  color:#ffd36d;
  margin-right:6px;
}

.achievement-images{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:8px;
}

.achievement-photo{
  overflow:hidden;
  border:8px solid rgba(255,255,255,.06);
}

.achievement-photo.large img{
  height:320px;
  object-fit:cover;
}

.achievement-photo.small img{
  height:320px;
  object-fit:cover;
}

.stats-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  margin-top:28px;
}

.stat{
  text-align:center;
  padding:15px;
  border-right:1px solid rgba(255,255,255,.15);
}

.stat:last-child{
  border-right:0;
}

.stat strong{
  display:block;
  color:#ffd16b;
  font-size:38px;
}

.stat span{
  font-size:9px;
}

/* =====================================================
   COURSES / CAROUSEL
===================================================== */

.courses{
  background:#fff;
}

.course-filter{
  display:flex;
  justify-content:center;
  margin-bottom:18px;
}

.course-filter button{
  border:1px solid #dfe2e3;
  background:#f5f4f1;
  padding:10px 24px;
  font-size:10px;
  font-weight:700;
  cursor:pointer;
}

.course-filter button.active{
  background:var(--orange);
  color:#fff;
}

.video-style-carousel{
  position:relative;
  padding:0 27px;
}

.course-window,
.provide-window{
  overflow:hidden;
}

.course-track,
.provide-track{
  display:flex;
  gap:8px;
  width:max-content;
  transition:transform .45s ease;
}

.course-item,
.provide-item{
  width:205px;
  flex:none;
  background:#fff;
  border:1px solid #dfe3e4;
  box-shadow:0 7px 17px rgba(26,49,61,.08);
  transition:.25s;
}

.course-item:hover,
.provide-item:hover{
  transform:translateY(-5px);
}

.course-item img,
.provide-item img{
  height:126px;
  object-fit:cover;
}

.course-item div,
.provide-item div{
  background:var(--orange);
  color:#fff;
  padding:8px 6px;
  text-align:center;
  font-size:10px;
  font-weight:800;
}

.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:28px;
  height:43px;
  border:0;
  background:var(--blue);
  color:#fff;
  cursor:pointer;
  z-index:5;
  font-size:22px;
  box-shadow:0 5px 13px rgba(0,0,0,.12);
}

.arrow.left{
  left:0;
}

.arrow.right{
  right:0;
}

/* =====================================================
   PROVIDE
===================================================== */

.provide{
  background:#fff;
}

/* =====================================================
   BEST FEATURES
===================================================== */

.best-features{
  background:
    linear-gradient(135deg,#f7f7f3,#eef1ef);
  padding:74px 0;
}

.best-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:center;
}

.best-copy{
  padding:28px;
  background:rgba(255,255,255,.84);
  box-shadow:var(--shadow);
}

.best-copy>small{
  color:var(--orange);
  font-size:9px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:1.8px;
}

.best-copy h2{
  color:var(--blue);
  font:800 36px "Playfair Display",serif;
  margin:6px 0 10px;
}

.best-copy p{
  color:var(--muted);
  font-size:12px;
  line-height:1.8;
}

.best-copy ul{
  list-style:none;
  display:grid;
  gap:9px;
  margin:16px 0 20px;
}

.best-copy li{
  color:#64727b;
  font-size:11px;
}

.best-copy li i{
  color:var(--orange);
  margin-right:7px;
}

.best-image img{
  height:345px;
  object-fit:cover;
}

/* =====================================================
   PERSON
===================================================== */

.person{
  background:#fff;
}

.soft-bg{
  background:#f7f7f5;
}

.person-grid{
  display:grid;
  grid-template-columns:.88fr 1.12fr;
  gap:42px;
  align-items:center;
}

.person-grid.reverse{
  grid-template-columns:1.12fr .88fr;
}

.person-image{
  min-height:420px;
  background:#f1f1ee;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.person-image img{
  width:100%;
  height:420px;
  object-fit:contain;
}

.person-copy>small{
  color:var(--orange);
  font-size:9px;
  letter-spacing:1.9px;
  font-weight:800;
}

.person-copy h2{
  color:var(--blue);
  font:800 38px "Playfair Display",serif;
  margin:6px 0;
}

.person-copy p{
  color:var(--muted);
  font-size:12px;
  line-height:1.85;
}

.quote{
  border-left:4px solid var(--orange);
  padding-left:14px;
  margin:16px 0;
  color:#5d6b73;
  font-size:16px;
  font-style:italic;
}

.person-copy strong{
  display:block;
  color:var(--blue);
  margin-top:17px;
  font-size:11px;
}

.person-copy span{
  color:var(--muted);
  font-size:10px;
}

/* =====================================================
   HUMAN RESOURCE
===================================================== */

.human-resource{
  background:#fff;
}

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

.human-card{
  background:#fff;
  border:1px solid #dfe3e4;
  padding:23px;
  transition:.25s;
}

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

.human-icon{
  width:48px;
  height:48px;
  border-radius:9px;
  background:#edf5f7;
  color:var(--blue);
  display:grid;
  place-items:center;
  font-size:19px;
  margin-bottom:13px;
}

.human-card h3{
  font-size:15px;
}

.human-card p{
  color:var(--muted);
  font-size:11px;
  line-height:1.7;
  margin-top:6px;
}

.human-card a{
  display:inline-block;
  margin-top:12px;
  color:var(--orange);
  font-size:10px;
  font-weight:800;
}

/* =====================================================
   EVENTS
===================================================== */

.events{
  position:relative;
  overflow:hidden;
  background:#f7f7f5;
}

.events-bg{
  position:absolute;
  inset:0;
  opacity:.22;
  background:
    radial-gradient(circle at 13% 24%,#0d5d8e 0 1px,transparent 2px),
    radial-gradient(circle at 79% 51%,#f36d2b 0 1px,transparent 2px);
  background-size:45px 45px,55px 55px;
}

.events-layout{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:18px;
}

.event-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:9px;
}

.event-card{
  min-height:210px;
  position:relative;
  overflow:hidden;
  border:1px solid #dfe3e4;
  background:#fff;
}

.event-card img{
  width:100%;
  height:210px;
  object-fit:cover;
  transition:.5s;
}

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

.event-card>div{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:13px;
  color:#fff;
  background:linear-gradient(transparent,rgba(0,0,0,.80));
}

.event-card small{
  color:#ffd16b;
  font-size:8px;
  font-weight:800;
}

.event-card h3{
  font-size:12px;
  margin-top:3px;
}

.latest-box{
  background:#fff;
  border:1px solid #dfe3e4;
  height:max-content;
}

.latest-head{
  padding:14px;
  background:var(--blue);
  color:#fff;
  font-size:14px;
  font-weight:800;
}

.latest-box a{
  display:block;
  padding:13px;
  border-bottom:1px solid #e8eced;
  font-size:10px;
  line-height:1.7;
}

.latest-box a:hover{
  background:#f4f8f9;
}

.latest-box span{
  display:block;
  color:var(--orange);
  font-size:8px;
  font-weight:800;
}

/* =====================================================
   IMPORTANT LINKS
===================================================== */

.important-links{
  position:relative;
  background:
    linear-gradient(135deg,#1e5364,#286c78);
  padding:62px 0 72px;
  overflow:hidden;
}

.important-links:before,
.important-links:after{
  content:"";
  position:absolute;
  width:300px;
  height:300px;
  border:22px solid rgba(255,255,255,.06);
  transform:rotate(34deg);
}

.important-links:before{
  top:-200px;
  left:-110px;
}

.important-links:after{
  right:-150px;
  bottom:-180px;
}

.important-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
}

.important-card{
  min-height:105px;
  background:#fff1f1;
  border:1px solid rgba(255,255,255,.2);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  transition:.25s;
}

.important-card:hover{
  transform:translateY(-5px);
  background:#fff;
}

.important-card i{
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:var(--blue);
  background:#fff;
  font-size:17px;
}

.important-card span{
  color:#303b42;
  font-size:10px;
  font-weight:800;
}

/* =====================================================
   GALLERY
===================================================== */

.gallery{
  background:#fff;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
}

.gallery-photo{
  height:190px;
  overflow:hidden;
  background:#eee;
}

.gallery-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.5s;
}

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

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

.admission{
  padding:54px 0;
  color:#fff;
  background:
    linear-gradient(135deg,#0d5d8e,#0a4262);
}

.admission-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
}

.admission-inner small{
  color:#ffd16b;
  font-size:9px;
  font-weight:800;
  letter-spacing:2px;
}

.admission-inner h2{
  font:800 34px "Playfair Display",serif;
  margin:5px 0;
}

.admission-inner p{
  color:#dce9f1;
  font-size:11px;
}

/* =====================================================
   CONTACT
===================================================== */

.contact{
  background:#fff;
}

.contact-grid{
  display:grid;
  grid-template-columns:.62fr 1.38fr;
  gap:0;
  border-top:1px solid #dfe3e4;
}

.contact-copy{
  padding:42px 30px;
}

.contact-mark{
  width:74px;
  height:74px;
  display:grid;
  place-items:center;
  border:3px solid #273945;
  border-radius:50%;
  color:#173f54;
  font-weight:900;
  margin-bottom:15px;
}

.contact-copy>small{
  color:var(--orange);
  font-size:9px;
  letter-spacing:2px;
  font-weight:800;
}

.contact-copy h2{
  color:#ec6128;
  font:800 35px "Playfair Display",serif;
  margin:6px 0 17px;
}

.contact-line{
  display:flex;
  gap:9px;
  color:var(--muted);
  font-size:11px;
  margin:12px 0;
}

.contact-line i{
  color:var(--orange);
  width:15px;
}

.contact-actions{
  display:flex;
  gap:7px;
  flex-wrap:wrap;
  margin-top:18px;
}

.contact-action{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 11px;
  border-radius:4px;
  color:#fff;
  font-size:10px;
  font-weight:800;
}

.contact-action.call{
  background:#176bb0;
}

.contact-action.whatsapp{
  background:#199e5d;
}

.contact-action.email{
  background:var(--orange);
}

.map{
  min-height:330px;
}

.map iframe{
  width:100%;
  min-height:330px;
  height:100%;
  border:0;
}

/* =====================================================
   FOOTER
===================================================== */

.footer{
  background:#1f5263;
  color:#fff;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr .8fr .8fr .8fr;
  gap:30px;
  padding:43px 0 30px;
}

.footer h3{
  font-size:14px;
  margin-bottom:12px;
}

.footer p,
.footer a{
  display:block;
  color:#c6d5da;
  font-size:10px;
  margin-bottom:8px;
}

.footer a:hover{
  color:#ffd16b;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.14);
}

.footer-bottom .container{
  min-height:46px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:15px;
  color:#b6c9cf;
  font-size:9px;
}

/* =====================================================
   FLOATING CONTACT
===================================================== */

.floating-contact{
  position:fixed;
  right:15px;
  bottom:70px;
  z-index:1450;
  display:flex;
  flex-direction:column;
  gap:7px;
}

.floating-contact a{
  width:45px;
  height:45px;
  border-radius:50%;
  color:#fff;
  display:grid;
  place-items:center;
  position:relative;
  box-shadow:0 8px 18px rgba(0,0,0,.17);
  transition:.23s;
}

.floating-contact a:hover{
  transform:translateY(-3px);
}

.floating-contact .call{
  background:#176bb0;
}

.floating-contact .whatsapp{
  background:#199e5d;
}

.floating-contact .mail{
  background:var(--orange);
}

.floating-contact span{
  position:absolute;
  right:54px;
  top:50%;
  transform:translateY(-50%);
  background:#29333a;
  color:#fff;
  font-size:9px;
  font-weight:800;
  padding:6px 7px;
  border-radius:4px;
  white-space:nowrap;
  opacity:0;
  pointer-events:none;
  transition:.2s;
}

.floating-contact a:hover span{
  opacity:1;
}

.back-top{
  position:fixed;
  right:16px;
  bottom:18px;
  width:43px;
  height:43px;
  border:0;
  border-radius:5px;
  background:var(--orange);
  color:#fff;
  cursor:pointer;
  opacity:0;
  visibility:hidden;
  transition:.25s;
  z-index:1450;
}

.back-top.show{
  opacity:1;
  visibility:visible;
}

/* =====================================================
   REVEAL
===================================================== */

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .72s ease,transform .72s ease;
}

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

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

@media(max-width:1050px){

  .accreditation{
    display:none;
  }

  .hero-inner{
    grid-template-columns:1fr 300px;
  }

  .hero-content h2{
    font-size:50px;
  }

  .about-feature-inner{
    grid-template-columns:1fr 390px;
  }

}

@media(max-width:820px){

  .utility-right{
    display:none;
  }

  .header-inner{
    grid-template-columns:62px 1fr;
  }

  .college-mark{
    width:58px;
    height:58px;
    font-size:16px;
  }

  .brand h1{
    font-size:22px;
  }

  .brand p{
    font-size:11px;
  }

  .brand small{
    display:none;
  }

  .nav-list{
    display:none;
  }

  .mobile-nav{
    display:block;
  }

  .nav.open .nav-list{
    display:block;
    position:absolute;
    left:0;
    right:0;
    top:100%;
    background:var(--nav);
  }

  .nav.open .nav-list>li>a{
    border-top:1px solid rgba(255,255,255,.08);
  }

  .hero-section{
    height:700px;
  }

  .hero-inner{
    grid-template-columns:1fr;
    align-content:start;
    padding-top:38px;
  }

  .prospectus{
    max-width:520px;
  }

  .about-feature-inner{
    grid-template-columns:1fr;
    padding-top:45px;
    padding-bottom:45px;
  }

  .principal-card{
    max-width:560px;
  }

  .vision-grid{
    grid-template-columns:1fr;
    transform:translateY(-20px);
  }

  .achievement-main{
    grid-template-columns:1fr;
  }

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

  .stat:nth-child(2){
    border-right:0;
  }

  .best-grid,
  .person-grid,
  .person-grid.reverse,
  .events-layout,
  .contact-grid{
    grid-template-columns:1fr;
  }

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

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

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

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

}

@media(max-width:560px){

  .side-tab{
    display:none;
  }

  .utility-left{
    gap:8px;
  }

  .utility-left span{
    font-size:9px;
  }

  .hero-section{
    height:725px;
  }

  .hero-notice-card{
    margin-bottom:20px;
  }

  .hero-content h2{
    font-size:39px;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:flex-start;
  }

  .about-feature{
    min-height:690px;
  }

  .principal-card{
    grid-template-columns:1fr;
  }

  .principal-photo,
  .principal-photo img{
    min-height:235px;
    height:235px;
  }

  .achievement-images{
    grid-template-columns:1fr 1fr;
  }

  .achievement-photo.large img,
  .achievement-photo.small img{
    height:230px;
  }

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

  .event-cards{
    grid-template-columns:1fr 1fr;
  }

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

  .gallery-photo{
    height:145px;
  }

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

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

  .footer-bottom .container{
    flex-direction:column;
    justify-content:center;
    gap:5px;
    padding:12px 0;
  }

  .floating-contact{
    right:9px;
    bottom:61px;
  }

  .floating-contact a{
    width:42px;
    height:42px;
  }

  .floating-contact span{
    display:none;
  }

}
