/* ===========================================================
   JBAS COLLEGE — MAIN STYLESHEET
   Colors used directly (no CSS variables):
   Navy:   #0B1F4D   Gold: #e7a91b   Emerald accent: #1F7A5C
   Off-white bg: #F8F9FA   Text: #1A1A1A   Muted text: #4B5563
   =========================================================== */

button:focus,
button:active,
.btn:focus,
.btn:active {
    outline: none !important;
    box-shadow: none !important;
}
/*h1, h2, h3, h4, blockquote {*/
/*  font-family: 'Playfair Display', Georgia, serif;*/
/*}*/

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', Arial, sans-serif;
  color: #1A1A1A;
  background: #F8F9FA;
  line-height: 1.6;
  overflow-x: hidden;
}


a { text-decoration: none; color: inherit; }
ul { list-style: none; padding-left:0px;}
img { max-width: 100%; display: block; }

/* ===================== TOP UTILITY BAR ===================== */
.top-bar {
  background: #0B1F4D;
  border-bottom: 1px solid #e7a91b;
  overflow-x: auto;
  white-space: nowrap;
}
.top-bar-inner {
  display: flex;
  gap: 8px;
  padding: 6px 16px;
  max-width: 1280px;
  margin: 0 auto;
  justify-content: space-evenly;
}
.top-bar-btn {
  background: #e7a91b;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.2s ease;
}
.top-bar-btn:hover { transform: translateY(-1px); }

/* ===================== IDENTITY BAR ===================== */


.identity-bar {background: white;
    padding: 9px 16px;}
.identity-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 65px;
  justify-content: center;
  text-align: center;
}
.identity-logo {
     width: 160px;
    height: 145px;
    /* object-fit: contain; */
    /* border-radius: 50%; */
    /* background: #ffffff; */
    /*padding: 4px;*/
}
.identity-text h2 {
  color: #0b1f4d;
    font-size: 23px;
    font-weight: 700;
    letter-spacing: 0.9px;
    line-height: 1.1;
    margin-bottom: 2px;
}
.identity-text h2 span{
    font-size:20px;
}
.identity-sub {   
    margin-bottom: 2px;
    color: #0b1f4d;
    font-size: 26px; 
    font-weight: 500;
    font-family: 'Monotype Corsiva', 'Lucida Calligraphy', cursive;
    line-height: 1.1;
        letter-spacing: 0.8px;
}

.identity-sub2 { 
    margin-bottom: 2px;
    color: #0b1f4d;
    font-size: 25px;
    font-weight: 500;
    font-family: 'Monotype Corsiva', 'Lucida Calligraphy', cursive;
    line-height: 1.1;
        letter-spacing: 0.8px;
}

.identity-badge img{
    width: 120px; /* adjust as needed */
    height: auto;
    display: block;
}
/* ===================== STICKY NAV ===================== */
.site-nav {
    display: flex;
    justify-content: center;
    align-items: center;
  background: #d4e7ed;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: padding 0.3s ease;
}
.site-nav.shrink { padding: 0; }
.nav-inner {
  max-width: 1280px;

  display: flex;
  align-items: center;
  padding: 0 16px;
      justify-content: space-between;
}
.nav-home {
  color: #e7a91b;
  padding:6px;
  border-right: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  background:#d4e7ed;
}
.nav-home img{
    height:60px;
    width:auto;
    display:block;
}
.nav-menu { flex: 1; }
.nav-menu > ul {
  display: flex;
  flex-wrap: wrap;
      margin: 0px;
}
.nav-item { position: relative; }
.nav-item > a {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #0b1f4d;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 14px;
  letter-spacing: 0.02em;
  transition: color 0.25s ease, background 0.25s ease;
  position: relative;
}
.nav-item > a::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 2px;
  background: #e7a91b;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-item > a:hover { color: #e7a91b; }
.nav-item > a:hover::after { transform: scaleX(1); }
.caret { font-size: 10px; margin-left: 2px; }

.dropdown {
    padding: 0px;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #102a63;
  border-top: 2px solid #e7a91b;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 50;
}
.nav-item.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 12px 18px;
  color: #dde1ff;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
.dropdown li a:hover {
 background: #e7a91b;
    color: white;
    padding-left: 24px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 14px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #e7a91b;
  display: block;
}

/* ===================== HERO / VIDEO BANNER ===================== */
.hero {
  position: relative;
  height: 640px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 50px;
}
.hero-video-wrap { position: absolute; inset: 0; }
.hero-video-wrap video,
.hero-video-wrap img.hero-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  display: none;
}
.hero-content {
position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 760px;
    padding: 20px;
    background: linear-gradient(180deg, rgba(11, 31, 77, 0.75) 0%, rgba(11, 31, 77, 0.55) 50%, rgba(11, 31, 77, 0.85) 100%);
    border-radius: 12px;
}
.hero-eyebrow {
  display: none;
}
.hero-content h2 {
  display: none;
}
.hero-content p {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    /* text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85), 0 1px 4px rgba(0, 0, 0, 0.9); */
    margin-bottom: 24px;
    line-height: 1.5; 
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-gold {
  background: #e7a91b;
  color: #0B1F4D;
  font-weight: 700;
padding: 7px 30px;
  border-radius: 6px;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
     display: flex;
    justify-content: center;
    align-items: center;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(212,175,55,0.35); }
.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  font-weight: 700;
  padding:7px 30px;
  border-radius: 6px;
  font-size: 14px;
  background: rgba(11, 31, 77, 0.5);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.btn-outline:hover { background: #ffffff; color: #0B1F4D; transform: translateY(-3px); }

/* ===================== STATS STRIP ===================== */
.stats-strip { background: #d4e7ed; padding: 50px 16px; }
.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-grid .stat-num {
  display: block;
  color: #0b1f4d;
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
}
.stats-grid .stat-label {
    /* color: #ffffff; */
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.75;
    font-weight: 600;
}
.admission-strip-section{
  background: #ba8408;

}

.admission-strip-wrap{
     background: #ba8408;
    border-radius: 16px;
    padding: 25px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
    flex-direction: column;
}

.admission-strip-content .tag{
       color: white;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
}

.admission-strip-content h3{
    color:#fff;
    margin:8px 0;
    font-size:28px;
}

.admission-strip-content p{
    color:rgba(255,255,255,.8);
    margin:0;
}

.admission-strip-btns{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    width:100%;
    margin-top:30px;
}

.admission-group{
    /*background:rgba(255,255,255,.08);*/
    /*border:1px solid rgba(255,255,255,.15);*/
    border-radius:16px;
    /*padding:25px;*/
    text-align:center;
    backdrop-filter:blur(5px);
}
.admission-actions .btn-outline:hover{
    background:white;
}
.admission-group h4{
    color: #fff;
    font-size: 13px;
    /* font-weight: 700; */
    margin-bottom: 15px;
    text-transform: uppercase;
    background: #0b1f4d;
    padding: 12px;
    display: inline-flex;
    border-radius: 12px;
}

.admission-group h4 i{
    color:#f8be00;
    margin-right:8px;
}

.admission-actions{
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
}

.admission-actions .btn-outline{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:180px;
    padding:8px 9px;
    border:2px solid #ffffff;
    border-radius:6px;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.admission-actions .btn-outline:hover{
    background:#f8be00;
    border-color:#f8be00;
    color:#021460;
}

@media(max-width:991px){

    .admission-strip-btns{
        grid-template-columns:1fr;
    }

}

@media(max-width:767px){

  
    .admission-group h4{
           font-size: 14px;
        padding: 10px;
    }

    .admission-actions{
         display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .admission-actions .btn-outline{
        width:60%;
            min-width: 135px;
    padding: 7px 8px;
   
    }

}

@media(max-width:767px){
    .hero-content p{
        display: block;
        font-size: 14px;
        margin-bottom: 16px;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    }
    
    .btn-login-shine{
       width: 100%;
        max-width: 220px;
        min-width: unset !important;
        padding: 8px 6px !important;
        font-size: 14px !important;
        margin: 0 auto;

    }
    .identity-text h2 span {
        font-size: 13px;
    }

    .admission-strip-wrap{
        flex-direction:column;
        text-align:center;
            padding: 25px 6px;
    }

    .admission-strip-content h3{
        font-size:22px;
    }

   .admission-strip-btns{
    display:grid;
    grid-template-columns:repeat(1, 1fr);
    gap:12px;
    width:100%;
    margin-top:18px;
}
}
/* ===================== SECTION GENERIC ===================== */
.section { padding: 40px 16px; }
.section-muted { background: #F1F2F4; }
.section-navy { background: #0B1F4D; color: #ffffff; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 24px; }
.section-head .eyebrow {
  color: #e7a91b;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  display: block;
}
.section-head h2 { font-size: 34px; color: #0B1F4D;  }
.section-navy .section-head h2 { color: #ffffff; }
.section-head p { color: #4B5563; font-size: 16px; }
.section-navy .section-head p { color: #c9cfe6; }


/* ===================== PRINCIPAL MESSAGE ===================== */
.principal-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  flex-wrap: wrap;
}
.principal-photo { position: relative; flex: 0 0 300px; }
.principal-photo::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 2px solid #e7a91b;
  z-index: -1;
}
.principal-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: 0 16px 35px rgba(0,0,0,0.15);
}
.principal-text { flex: 1; min-width: 280px; }
.principal-text .eyebrow {
  color: #e7a91b; text-transform: uppercase; font-size: 13px;
  font-weight: 700; letter-spacing: 0.12em;
}
.principal-text h2 { color: #0B1F4D; font-size: 32px; margin: 12px 0 20px; }
.principal-text blockquote {
  font-style: italic;
  color: #0B1F4D;
  font-size: 20px;
  border-left: 4px solid #e7a91b;
  padding-left: 24px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.principal-text p.body { color: #4B5563; margin-bottom: 20px; }
.principal-name { color: #0B1F4D; font-weight: 700; }

/* ===================== ACADEMIC CARDS ===================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}
.card-top{
    display:flex;
    align-items:center;
    gap:15px;
}
.academic-card {
  background: #ffffff;
  padding: 20px;
  border: 1px solid #e1e3e4;
  border-radius: 6px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.academic-card:hover {
  border-color: #e7a91b;
  box-shadow: 0 12px 30px rgba(11,31,77,0.1);
  transform: translateY(-6px);
}
.academic-card .icon-badge {
width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e7a91b;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 13px;
    color: white;
}
.academic-card h3 { color: #0B1F4D; font-size: 21px; margin-bottom: 10px; }
.academic-card p { color: #4B5563; font-size: 15px; margin-bottom: 6px;  display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;}
.academic-card a { color: #e7a91b; font-weight: 700; font-size: 14px; }
.academic-card a:hover { text-decoration: underline; }

/* ===================== VISION & MISSION ===================== */
.vision-mission-section { background: #ffffff; }
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.vm-card {
  background: #F8F9FA;
  border: 1px solid #e1e3e4;
  border-top: 4px solid #e7a91b;
  border-radius: 8px;
  padding: 17px 26px;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.vm-card:hover {
  box-shadow: 0 12px 32px rgba(11,31,77,0.1);
  transform: translateY(-4px);
}
.vm-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #0B1F4D;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e7a91b;
}
.vm-icon .material-symbols-outlined { font-size: 22px; }
.vm-card h3 {
  color: #0B1F4D;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
}

.vm-card p {
        margin-top: 12px;
  color: #4B5563;
  font-size: 15px;
  line-height: 1.8;
  font-style: italic;
}

/* ===================== NEWS TICKER ===================== */
.news-ticker-bar {
  background: #0B1F4D;
  border-top: 1px solid rgba(212,175,55,0.3);
  border-bottom: 1px solid rgba(212,175,55,0.3);
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 44px;
}
.news-ticker-label {
  background: #e7a91b;
  color: #0B1F4D;
  font-size: 12px;
  font-weight: 700;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.news-ticker-label .material-symbols-outlined { font-size: 18px; }
.news-ticker-track {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.news-ticker-content {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
  padding-left: 40px;
}
.news-ticker-content:hover { animation-play-state: paused; }
.tick-item {
  color: #dde1ff;
  font-size: 13px;
}
.tick-item a {
  color: #e7a91b;
  font-weight: 700;
  text-decoration: underline;
}
.tick-sep { color: #e7a91b; font-size: 10px; }

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===================== ADMISSION NOTICE STRIP ===================== */
.admission-notice-strip {
  background: #fff8e6;
  border-top: 2px solid #e7a91b;
  border-bottom: 2px solid #e7a91b;
  padding: 12px 16px;
}
.notice-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.notice-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #1A1A1A;
  flex-wrap: wrap;
}
.notice-new {
  background: #cc0000;
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  animation: noticePulse 1.5s ease-in-out infinite;
}
.notice-item a {
  color: #0B1F4D;
  font-weight: 700;
  text-decoration: underline;
}
.notice-item a:hover { color: #e7a91b; }

@keyframes noticePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
    .section-head {
            margin: 0 auto 19px;
}
    
    .principal-text h2{
        
            font-size: 18px;
    }
    .research-head h2{
            font-size: 22px;
    }
    .placement-left h2{
            font-size: 22px !important;
    }
    .principal-text blockquote{
            font-size: 14px;
    }
    .section-head h2 {
            font-size: 23px;
    }

    .identity-logo {
    width: 88px;
    height: 86px;}
    .identity-badge{
        display:none;
    }
  .vm-grid { grid-template-columns: 1fr; gap: 24px;padding:0px; }
   .news-text{
        display:none;
    }
}

/* ===================== ADMISSIONS SPLIT ===================== */
.admissions-wrap {
  display: flex;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  align-items: center;
  flex-wrap: wrap;
}
.admissions-left { flex: 1; min-width: 300px; }
.admissions-left .tag {
  display: inline-block;
  background: rgba(212,175,55,0.12);
  color: #b3892b;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}
.admissions-left h2 { color: #0B1F4D; font-size: 32px; margin-bottom: 16px; }
.admissions-left p { color: #4B5563; margin-bottom: 26px; }
.admission-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
.admission-cards div {
  background: #ffffff;
  padding: 20px;
  border-left: 4px solid #e7a91b;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: box-shadow 0.25s ease;
}
.admission-cards div:nth-child(2),
.admission-cards div:nth-child(3) { border-left-color: #0B1F4D; }
.admission-cards div:hover { box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.admission-cards h4 { color: #0B1F4D; font-size: 17px; margin-bottom: 4px; }
.admission-cards p { color: #4B5563; font-size: 13px; margin: 0; }
.btn-navy {
  display: inline-block;
  background: #0B1F4D;
  color: #ffffff;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 14px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.btn-navy:hover { background: #173bab; transform: translateY(-3px); }

.admissions-right { flex: 1; min-width: 300px; position: relative; }
.admissions-right .img-frame {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.admissions-right .img-frame img { width: 100%; height: 100%; object-fit: cover; }
.helpline-box {
  position: absolute;
  bottom: -30px;
  left: -20px;
  background: #ffffff;
  padding: 24px 28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  border-radius: 8px;
  max-width: 240px;
}
.helpline-box h4 { color: #0B1F4D; font-size: 16px; margin-bottom: 6px; }
.helpline-box .phone { color: #e7a91b; font-weight: 700; font-size: 17px; }
.helpline-box .hours { color: #4B5563; font-size: 12px; margin-top: 4px; }

/* ===================== RESEARCH STATS (NAVY) ===================== */
.research-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 5px;
}
.research-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto 22px;
  padding: 0 16px;
}
.research-head h2 { font-size: 32px; }
.research-head p { color: #c9cfe6; max-width: 480px;margin-bottom: 0px; }
.btn-gold-outline {
  border: 2px solid #e7a91b;
  color: #e7a91b;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.25s ease, color 0.25s ease;
}
.btn-gold-outline:hover { background: #e7a91b; color: #0B1F4D; }
.research-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
.research-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 11px 12px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.research-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.research-card .num { color: #e7a91b; font-size: 32px; font-family: 'Playfair Display', serif; display: block; margin-bottom: 10px; }
.research-card h4 { font-size: 15px; margin-bottom: 0px; }
.research-card p { font-size: 13px; opacity: 0.7; }

/* ===================== CAMPUS LIFE GALLERY ===================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 14px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.gallery-item.big { grid-column: span 2; grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-caption {
  position: absolute;
  inset: 0;
  background: rgba(11,31,77,0.45);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-caption span { color: #ffffff; font-weight: 700; font-size: 16px; }

/* ===================== PLACEMENT ===================== */

.place{
     display: flex;
     justify-content: space-evenly;
    display: flex;
    align-items: center;gap: 21px;
}
.recruiter-carousel {
  position: relative;
  margin-top: 24px;
}
 
.recruiter-logo-item {
  height:98px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  transition: all 0.3s ease;
}
 
.recruiter-logo-item:hover {
  border-color: #e7a91b;
  box-shadow: 0 8px 20px rgba(11, 31, 77, 0.1);

}
 
.recruiter-logo-item img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
 
}
 
 .placement-left{
    padding-right: 30px;
     display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    
}

.placement-left h2{
    color: #0B1F4D;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
}

.placement-left p{
    color: #4B5563;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.placement-stat-row {
    display: inline-flex;
    gap: 14px;
    margin-bottom: 6px;
    padding: 9px 18px;
    background: #fff;
    border-left: 4px solid #e7a91b;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
    transition: .3s ease;
}

.placement-stat-row:hover{
    transform: translateX(6px);
}

.placement-stat-row .material-symbols-outlined{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e7a91b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.placement-stat-row .label{
   color: #0B1F4D;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
}
.view-reports{
  display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    /* background: #0B1F4D; */
    color: #0b1f4d;
    /* padding: 14px 28px; */
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

/*.view-reports:hover{*/
/*    background: #e7a91b;*/
/*    color: #0B1F4D;*/
/*    transform: translateY(-3px);*/
/*}*/

.btn-navy{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    background: #0B1F4D;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

.btn-navy:hover{
    background: #e7a91b;
    color: #0B1F4D;
    transform: translateY(-3px);
}

@media(max-width:767px){

    .placement-left{
        padding-right: 0;
        text-align: center;
    }

    .placement-left h2{
        font-size: 28px;
    }

    .placement-stat-row{
        text-align: left;
    }

    .btn-navy{
        width: 100%;
    }
}
.recruiter-logo-item:hover img {
  filter: brightness(0.9);
}
 
/* Owl Carousel Dots */
.recruiter-carousel.owl-loaded .owl-dots {
  text-align: center;
  margin-top: 20px;
}
 
.recruiter-carousel .owl-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  border-radius: 50%;
  background: #d4e7ed;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}
 
/*.recruiter-carousel .owl-dot.active {*/
/*  background: #e7a91b;*/
/*  width: 28px;*/
/*  border-radius: 5px;*/
/*}*/
 
/* Owl Carousel Navigation */
.recruiter-carousel.owl-loaded .owl-nav {
    position: absolute;
    top: 31%;
    transform: translateY(-50%);
    width: calc(100% + 100px);
    left: -50px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}
 
.recruiter-carousel .owl-nav button {
  pointer-events: all !important;
  background: #e7a91b !important;
  border: none !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  color: #0B1F4D !important;
  font-size: 18px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  opacity: 0.7 !important;
}
 
.recruiter-carousel .owl-nav button:hover {
  background: #0B1F4D;
  color: #e7a91b;
  opacity: 1;
}
 
.recruiter-carousel .owl-prev span,
.recruiter-carousel .owl-next span {
  font-size: 20px;
}
 
/* Responsive */
@media (max-width: 1024px) {
  .recruiter-carousel.owl-loaded .owl-nav {
    display: none;
  }
 
  .recruiter-logo-item {
    height: 75px;
    padding: 12px;
  }
 
  .recruiter-logo-item img {
    max-height:81px;
  }
}
 
@media (max-width: 768px) {
    .place{
        flex-direction:column;
        gap:6px;
    }
    .stats-grid .stat-num {
            font-size: 28px;
    }

  .recruiter-logo-item {
    height: 70px;
    padding: 10px;
  }
 
  .recruiter-carousel .owl-dot {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
}
 
@media (max-width: 600px) {
  .recruiter-logo-item {
    height: 97px;
    padding: 8px;
  }
 
  .recruiter-logo-item img {
    max-height: 81px;
  }
}
/* ===================== FOOTER ===================== */
.footer-map{
    width:100%;
    height:220px;
    overflow:hidden;
    border-radius:12px;
    margin-bottom:20px;
    border:2px solid rgba(255,255,255,.1);
}

.footer-map iframe{
    width:100%;
    height:100%;
    border:0;
}

.site-footer { background: #0B1F4D; color: #dde1ff; padding: 60px 16px 0; }
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {    width: 400px;
    height: 114px;
    /* border-radius: 50%; */
    /* background: #fff; */
    padding: 4px;
    margin-bottom: 14px;
} 
.footer-col h3 { color: #e7a91b; font-size: 19px; margin-bottom: 10px; }
.footer-col h4 { color: #ffffff; font-size: 16px; margin-bottom: 16px; }
.footer-col p { font-size: 14px; opacity: 0.8; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; transition: color 0.2s ease; }


.footer-col ul li a:hover { color: #e7a91b; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { 
  color: #e7a91b;
    transition: transform 0.2s ease;
    background: white;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    }
.footer-social a:hover { transform: scale(1.2); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 0;
  font-size: 12px;
  opacity: 0.7;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: #e7a91b; text-decoration: underline; }

/* ===================== BACK TO TOP ===================== */
#backToTop {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #e7a91b;
  color: #0B1F4D;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 998;
}
#backToTop.show { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { background: #b3892b; }

/* =====================================================================
   RESPONSIVE — MOBILE
   ===================================================================== */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .research-grid { grid-template-columns: repeat(1, 1fr);gap:9px;padding:0px; }
  .placement-wrap { grid-template-columns: 1fr; padding:0px;}
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.big { grid-column: span 2; }
}

@media (max-width: 860px) {
    
    .hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
    padding-bottom: 0;
  }
 
  .hero-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
 
  .hero-video-wrap video,
  .hero-video-wrap img.hero-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
 
  .hero-overlay {
    display: none;
  }
 
  .hero-content {
        position: relative;
        z-index: 2;
        margin: 10px;
        text-align: center;
        color: #ffffff;
        max-width: none;
  }
 
  .hero-eyebrow {
    display: none;
  }
 
  .hero-content h2 {
    display: none;
  }
 
  .hero-content > p:not(.hero-eyebrow) {
    display: block;
    font-size: 14px;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  }
 
  .hero-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: nowrap;
    margin: 0;
  }
 
  .btn-gold {
    background: #e7a91b;
    color: #0B1F4D;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 12px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    flex: 1;
  }
 
  .btn-gold:active {
    transform: scale(0.98);
  }
 
  .btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 12px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    cursor: pointer;
    flex: 1;
  }
 
  .btn-outline:active {
    background: rgba(255, 255, 255, 0.1);
  }
    .admission-strip-content p {
        font-size: 15px;
}
    .recruiter-carousel {
        margin-top: 0px;
    }

    .btn-gold-outline {
            padding: 6px 18px;
    }

    .research-head {
        margin: 0 auto 25px;
    }

    .identity-bar {
            padding: 17px 0px;
            display:none;
}
    .academic-card h3{
            font-size: 17px;
    }
    
    .academic-card .icon-badge {
    width: 35px;
    height: 35px;}
    .card-top {
        gap:6px;
}
    
    .section {
    padding: 30px 16px;
}

.research-card{
    padding: 10px;
}

   .principal-wrap{
        gap:30px;
        justify-content:center;
    }

    .principal-photo{
        flex:0 0 220px;
        max-width:220px;
        margin:0 auto;
    }

    .principal-text h2{
        font-size:18px;
    }

    .principal-text blockquote{
        font-size:14px;
        padding-left:16px;
    }
    .research-head h2 {
    font-size: 21px;
}
  .identity-text h2{
     font-size: 13px; }
 .identity-sub2{ display:none;}
 .identity-sub {font-size: 13px; }

 
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; left: -100%;
    width: 280px;
    height: 100%;
    background: #0B1F4D;
    overflow-y: auto;
    transition: left 0.35s ease;
    z-index: 1000;
    padding-top: 60px;
  }
  .nav-menu.open { left: 0; }
  .nav-menu > ul { flex-direction: column; }
  .nav-item > a { padding: 14px 20px; width: 100%;color:white; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: #081640;
    box-shadow: none;
  }
  .nav-item.has-dropdown.open .dropdown { display: block; }
  .hero-content h2 { font-size: 20px; }
  .principal-wrap { flex-direction: column; }
  .admissions-wrap { flex-direction: column; }
  .helpline-box { position: static; margin-top: 20px; }
.research-grid { grid-template-columns: repeat(1, 1fr); }
}

@media (max-width: 600px) {
    .stats-strip {
        padding: 20px 16px;
}
    .recruiter-logos div{
        padding:0px;
    }
    .placement-right {
            padding: 16px;
}
    .hero-buttons{
        flex-wrap: nowrap;
    }
    .btn-gold {
        padding: 11px 9px;
            font-size: 12px;
    }
.btn-outline
    {
        padding: 11px 9px;
            font-size: 12px;
    }
    .footer-inner{
        display:grid;
        grid-template-columns:1fr 1fr !important;
        gap:25px;
        margin-bottom:0px;
    }

    /* Map full width */
    .footer-col-about{
        grid-column:1 / -1;
    }

    /* Contact full width below */
    .footer-col:last-child{
        grid-column:1 / -1;
    }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap:8px;}
  .cards-grid { grid-template-columns: 1fr; gap:9px;}
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; padding:0px;}
  .gallery-item.big, .gallery-item.wide { grid-column: span 1; grid-row: span 1; }
  .admission-cards { grid-template-columns: 1fr; }
  .recruiter-logos { grid-template-columns: repeat(2, 1fr); gap:16px;}
  .identity-inner {gap:0px; }

}
.floating-links{
    position:fixed;
    right:0;
    top:63%;
    transform:translateY(-50%);
    z-index:99999;
    display:flex;
    flex-direction:column;
    align-items:flex-end;
}

/* Dropdown buttons */
.float-group{
    margin:4px 0;
}

.float-item{
    width:55px;
    height:55px;
    background:#e7a91b;
    border-radius:30px 0 0 30px;
    overflow:hidden;
    display:flex;
    align-items:flex-start;
    /*transition:all .35s ease;*/
    cursor:pointer;
}

.float-item:hover{
    width:280px;
    height:auto;
    min-height:55px;
}

.float-item i{
    width:55px;
    min-width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:16px;
}

.float-content{
    display:none;
    width:100%;
    padding:10px 0px 15px;
}

.float-item:hover .float-content{
    display:block;
}

.float-title{
    color:#fff;
    font-weight:600;
    font-size:15px;
    margin-bottom:5px;
}

.float-content a{
    display:block;
    color:#fff;
    text-decoration:none;
    padding:3px 0;
    border-top:1px solid rgba(255,255,255,.25);
    font-size:14px;
}

.float-content a:hover{
    padding-left:5px;
}

/* Normal buttons */
.float-item-single{
    width:55px;
    height:55px;
    margin:4px 0;
    background:#e7a91b;
    color:#fff;
    text-decoration:none;
    border-radius:30px 0 0 30px;
    overflow:hidden;
    display:flex;
    align-items:center;
    transition:.35s;
}

.float-item-single:hover{
    width:220px;
}

.float-item-single i{
    width:55px;
    min-width:55px;
    text-align:center;
    font-size:16px;
}

.float-item-single span{
    opacity:0;
    white-space:nowrap;
    transition:.3s;
}

.float-item-single:hover span{
    opacity:1;
}
.menu-close{
    display:none;
}
@media(max-width:991px){
    .menu-close{
      position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: #08245c;
    z-index: 9999;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
        
    }}
    
.notify-btn{
    position:fixed;
    left:20px;
    bottom:150px;
    width:50px;
    height:50px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:99999;
}

.notify-btn .material-symbols-outlined{
    font-size:25px;
    color:#0B1F4D;
}

.notify-count{
    position:absolute;
    top:-5px;
    right:-5px;
    width:26px;
    height:26px;
    border-radius:50%;
    background:#e7a91b;
    color:#0B1F4D;
    font-size:12px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.notify-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:99998;
}

.notify-overlay.active{
    opacity:1;
    visibility:visible;
}

.notify-panel{
    position:fixed;
    top:0;
    left:-420px;
    width:400px;
    max-width:100%;
    height:100vh;
    background:#f8f9fa;
    transition:.35s ease;
    z-index:99999;
    box-shadow:8px 0 30px rgba(0,0,0,.18);
}

.notify-panel.active{
    left:0;
}

.notify-header{
    background:linear-gradient(135deg,#0B1F4D,#16377f);
       padding: 11px 20px;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
}

.notify-header h3{
color: #fff;
    margin: 0;
    font-size: 20px;
}

.notify-header p{
    margin:5px 0 0;
    color:rgba(255,255,255,.75);
    font-size:13px;
}

.notify-header button{
      width: 27px;
    height: 27px;
    border: none;
    border-radius: 50%;
    background: #e7a91b;
    color: #0B1F4D;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.notify-body{
    padding:20px;
    height:calc(100vh - 110px);
    overflow-y:auto;
}

.notify-item{
    background:#fff;
    border-left:4px solid #e7a91b;
    border-radius:14px;
    padding:16px;
    margin-bottom:16px;
    box-shadow:0 5px 15px rgba(0,0,0,.06);
    transition:.3s;
}

.notify-item:hover{
    transform:translateX(6px);
}

.notify-date{
    color:#e7a91b;
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:8px;
}

.notify-title{
    color:#0B1F4D;
    font-size:16px;
    font-weight:600;
    line-height:1.6;
}

@media(max-width:767px){

    .notify-panel{
        width:85%;
        left:-100%;
    }

    .notify-panel.active{
        left:0;
    }

    .notify-btn{
        left:15px;
        bottom:150px;
    }

    .notify-header h3{
        font-size:20px;
    }
}

.mobile-college-name{
    display:none;
}

@media (max-width:767px){
   
    
    .nav-item > a::after{
        display:none;
    }
    .nav-home img {
        height:50px;
    }

.site-nav{
    background:white;
}
    .nav-inner{
        display:flex;
        align-items:center;
        padding:3px;
    }

    .mobile-college-name{
        display:flex;
        flex:1;
        justify-content:center;
        align-items:center;
        text-align:center;
        color:#0b1f4d;
        font-size:14px;
        font-weight:600;
        line-height:1.3;
        /*padding:0 10px;*/
    }

    .nav-home{
        flex:0 0 auto;
        background:white;
    }

    .nav-toggle{
        flex:0 0 auto;
    }
}

.btn-login-shine{
    font-size:14px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 8px 19px;
    border-radius: 8px;
    background: #fff;
    color: #0B1F4D;
    font-weight: 700;
    overflow: hidden;
    transition: all .3s ease;
    box-shadow: 0 8px 20px rgba(255,255,255,.25);
}

.btn-login-shine i{
font-size: 15px;
    /* color: #e7a91b; */
    margin-right: 4px;
}

.btn-login-shine::before{
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.9),
        transparent
    );
    transform: skewX(-25deg);
    animation: shineMove 2.5s infinite;
}

.btn-login-shine:hover{
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255,255,255,.4);
}

@keyframes shineMove{
    0%{
        left: -120%;
    }
    100%{
        left: 180%;
    }
}


.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}