html,
body{
  width:100%;
  margin:0;
  padding:0;
  overflow-x:hidden;
  background:#fff;
}

*{
  box-sizing:border-box;
}

.hackathon-strip{
  width:100%;
  background:#00284f;
  padding:6px 16px;
  text-align:center;
  position:relative;
  overflow:hidden;
  z-index:999;
  border-bottom:1px solid rgba(244,123,32,.22);
}

.hackathon-strip a{
  color:#fff;
  font-size:.84rem;
  font-weight:750;
  letter-spacing:.25px;
  white-space:nowrap;
}

.hackathon-strip a:hover{
  color:#dffafa;
}

.page-hero{
  width:100%;
  height:430px;
  overflow:hidden;
  background:#fff;
}

.page-hero img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.section{
  width:100%;
  padding:50px 20px;
  position:relative;
  overflow:hidden;
}

.section-inner{
  width:100%;
  max-width:1280px;
  margin:0 auto;
}

.section-title{
  font-size:clamp(2rem,4vw,2.75rem);
  color:#00264d;
  margin-bottom:24px;
  font-weight:800;
  line-height:1.08;
  letter-spacing:-.4px;
  text-align:center;
}

.section-title span{
  color:#00a8a8;
}

.section-title::after{
  content:"";
  display:block;
  width:46px;
  height:3px;
  margin:12px auto 0;
  border-radius:999px;
  background:linear-gradient(90deg,#00a8a8,#f47b20);
}

.about-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:26px;
  align-items:stretch;
}

.about-card{
  background:linear-gradient(180deg,#fff 0%,#fbfdff 100%);
  border:1px solid rgba(0,51,102,.08);
  border-radius:26px;
  box-shadow:0 10px 28px rgba(0,51,102,.07);
  padding:28px;
  position:relative;
}

.about-card::before{
  content:"";
  position:absolute;
  left:0;
  top:24px;
  bottom:24px;
  width:4px;
  border-radius:20px;
  background:linear-gradient(180deg,#00a8a8,#4caf50);
}

.about-card-inner{
  padding-left:18px;
}

.about-text p{
  color:#5f6f7f;
  line-height:1.75;
  margin-bottom:13px;
  font-size:.97rem;
}

.about-image-wrap{
  border-radius:26px;
  padding:8px;
  background:linear-gradient(135deg,rgba(0,168,168,.14),rgba(76,175,80,.10),rgba(0,51,102,.04));
  box-shadow:0 16px 36px rgba(0,51,102,.1);
}

.about-slider{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  height:100%;
  min-height:340px;
}

.about-slides{
  position:relative;
  width:100%;
  height:100%;
  min-height:340px;
}

.about-slide{
  position:absolute;
  inset:0;
  opacity:0;
  pointer-events:none;
  transition:opacity .5s ease;
}

.about-slide.active{
  opacity:1;
  pointer-events:auto;
}

.about-slide img{
  width:100%;
  height:100%;
  min-height:340px;
  object-fit:cover;
}

.about-slide-contain img{
  object-fit:contain;
  padding:10px;
}

.about-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:38px;
  height:38px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.92);
  color:#003366;
  cursor:pointer;
  z-index:3;
}

.about-prev{left:14px;}
.about-next{right:14px;}

.about-dots{
  position:absolute;
  left:50%;
  bottom:14px;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
  z-index:3;
}

.about-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:rgba(255,255,255,.65);
  cursor:pointer;
}

.about-dot.active{
  background:#00a8a8;
}

.vm-wrap{
  max-width:980px;
  margin:0 auto;
  background:#fff;
  border:1px solid rgba(0,51,102,.08);
  border-radius:28px;
  box-shadow:0 10px 28px rgba(0,51,102,.07);
  padding:28px;
}

.vm-header{
  text-align:center;
  margin-bottom:10px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(0,51,102,.10);
}

.vm-block{
  padding:16px 0;
}

.vm-block + .vm-block{
  border-top:1px solid rgba(0,51,102,.08);
}

.vm-block h3{
  font-size:1.48rem;
  font-weight:800;
  color:#00264d;
  margin-bottom:8px;
}

.vm-block p{
  font-size:.97rem;
  line-height:1.76;
  color:#5f6f7f;
}

.faculty-shell{
  width:100%;
  max-width:1280px;
  margin:0 auto;
}

.faculty-heading{
  text-align:center;
  margin-bottom:18px;
}

.faculty-tabs{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-radius:22px 22px 0 0;
  overflow:hidden;
  border:1px solid rgba(0,51,102,.08);
  border-bottom:none;
  box-shadow:0 10px 28px rgba(0,51,102,.07);
}

.faculty-tab{
  border:none;
  background:#fff;
  color:#003366;
  padding:15px 18px;
  font-size:.95rem;
  font-weight:700;
  cursor:pointer;
  border-right:1px solid rgba(0,51,102,.08);
}

.faculty-tab:last-child{
  border-right:none;
}

.faculty-tab:hover{
  background:rgba(0,168,168,.08);
  color:#00a8a8;
}

.faculty-tab.active{
  background:#00a8a8;
  color:#fff;
}

.faculty-display{
  background:#fff;
  border:1px solid rgba(0,51,102,.08);
  border-top:none;
  border-radius:0 0 26px 26px;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(0,51,102,.07);
}

.faculty-panel{
  display:none;
  grid-template-columns:340px 1fr;
  min-height:320px;
}

.faculty-panel.active{
  display:grid;
}

.faculty-image{
  background:#eef5fa;
  min-height:320px;
}

.faculty-image img{
  width:100%;
  height:320px;
  object-fit:cover;
  object-position:center top;
}

.faculty-content{
  padding:30px 34px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.faculty-content h3{
  font-size:1.7rem;
  color:#00264d;
  font-weight:800;
  margin-bottom:8px;
}

.faculty-role{
  color:#003366;
  font-weight:700;
  margin-bottom:6px;
}

.faculty-dept{
  color:#5f6f7f;
  font-weight:600;
  margin-bottom:12px;
}

.faculty-content p{
  color:#5f6f7f;
  line-height:1.72;
  margin-bottom:12px;
  font-size:.95rem;
}

.faculty-links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.faculty-links a{
  padding:9px 14px;
  border-radius:10px;
  background:#fff;
  color:#003366;
  font-size:.88rem;
  font-weight:700;
  border:1px solid rgba(0,51,102,.10);
  box-shadow:0 6px 18px rgba(0,51,102,.06);
}

.advisory-section{
  background:linear-gradient(180deg,#f8fbfd 0%,#eef5fa 100%);
}

.advisory-shell{
  width:100%;
  max-width:1320px;
  margin:0 auto;
}

.advisory-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:34px 22px;
  margin-top:26px;
}

.advisory-card{
  text-align:center;
}

.advisory-image{
  width:168px;
  height:168px;
  border-radius:50%;
  margin:0 auto 14px;
  overflow:hidden;
  border:2px solid rgba(0,51,102,.28);
  background:#fff;
}

.advisory-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.advisory-name{
  color:#003366;
  font-size:1.02rem;
  font-weight:800;
  line-height:1.32;
}

.advisory-role{
  color:#003366;
  font-size:.95rem;
  line-height:1.35;
}

#team .section-inner{
  width:100%;
  max-width:1180px;
  margin:0 auto;
}

.team-grid{
  display:grid;
  grid-template-columns:repeat(5, 190px);
  justify-content:center;
  gap:24px;
  margin-top:30px;
  width:100%;
}

.team-card{
  width:190px;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  text-align:center;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
  border:1px solid rgba(0,51,102,.08);
  transition:.3s ease;
}

.team-card:hover{
  transform:translateY(-5px);
  box-shadow:0 16px 36px rgba(0,51,102,.14);
}

.team-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  object-position:center top;
}

.team-card h3{
  color:#003366;
  font-size:.95rem;
  font-weight:800;
  margin:12px 10px 6px;
  line-height:1.25;
}

.team-role{
  color:#5f6f7f;
  font-size:.82rem;
  line-height:1.35;
  padding:0 10px 15px;
  font-weight:600;
}

.team-card:nth-child(6){
  grid-column:2;
}

.team-card img[alt="Meghraj Garad"]{object-position:center 15%;}
.team-card img[alt="Gayatri Naik"]{object-position:center top;}
.team-card img[alt="Aniket Khedkar"]{object-position:center top;}
.team-card img[alt="Vishnu Velukutty"]{object-position:center top;}
.team-card img[alt="Ipsita Dash"]{object-position:center top;}
.team-card img[alt="Penchala Narasimhulu Damavarapu"]{object-position:center 15%;}
.team-card img[alt="Monika Sangle"]{object-position:center 5%;}
.team-card img[alt="Pramila Tawade"]{object-position:center top;}
.team-card img[alt="Bhagyashri Bhubal"]{object-position:center top;}

.faq-modal{
  position:fixed;
  inset:0;
  z-index:3000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(3,18,31,.68);
  backdrop-filter:blur(6px);
}

.faq-modal.show{
  display:flex;
}

.faq-content{
  width:min(760px,100%);
  max-height:86vh;
  overflow-y:auto;
  background:#fff;
  border-radius:24px;
  padding:28px 24px;
  box-shadow:0 26px 60px rgba(0,0,0,.25);
  position:relative;
}

.faq-close{
  position:absolute;
  top:14px;
  right:18px;
  border:none;
  background:rgba(0,51,102,.08);
  color:#003366;
  width:34px;
  height:34px;
  border-radius:50%;
  font-size:1.3rem;
  cursor:pointer;
}

.faq-content h2{
  color:#003366;
  font-size:1.55rem;
  margin-bottom:14px;
  max-width:640px;
}

.faq-item{
  padding:14px 0;
  border-bottom:1px solid rgba(0,51,102,.08);
}

.faq-item:last-child{
  border-bottom:none;
}

.faq-item h3{
  font-size:1rem;
  color:#003366;
  margin-bottom:6px;
}

.faq-item p{
  color:#5f6f7f;
  line-height:1.62;
  font-size:.93rem;
}

.mobile-sticky-cta{
  display:none;
}

.site-footer{
  width:100%;
  position:relative;
  background:
    radial-gradient(circle at 12% 0%,rgba(0,168,168,.20),transparent 35%),
    linear-gradient(135deg,#001f3f 0%,#00264d 62%,#003366 100%);
  color:#ffffff;
  padding:34px 22px 24px;
  border-top:1px solid rgba(255,255,255,.08);
}

.site-footer::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:3px;
  background:linear-gradient(90deg,#00a8a8,#f47b20);
}

.footer-inner{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:28px;
  align-items:start;
}

.footer-brand-title{
  font-size:1rem;
  font-weight:800;
  line-height:1.45;
  margin-bottom:8px;
  color:#fff;
}

.footer-text,
.footer-link,
.footer-meta{
  font-size:.88rem;
  line-height:1.7;
  color:rgba(255,255,255,.82);
}

.footer-heading{
  font-size:.84rem;
  font-weight:800;
  color:#f4c542;
  text-transform:uppercase;
  letter-spacing:.6px;
  margin-bottom:10px;
  background:transparent;
  border:none;
  padding:0;
  cursor:pointer;
}

.footer-links{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.footer-link:hover{
  color:#fff;
}

.footer-bottom{
  width:100%;
  max-width:1180px;
  margin:22px auto 0;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.10);
  display:flex;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}

.footer-left,
.footer-right{
  font-size:.84rem;
  line-height:1.6;
  color:rgba(255,255,255,.72);
}

/* RESPONSIVE */
@media(max-width:1200px){
  .advisory-grid{
    grid-template-columns:repeat(4,1fr);
  }

  .team-grid{
    grid-template-columns:repeat(3,190px);
  }

  .team-card:nth-child(6){
    grid-column:auto;
  }
}

@media(max-width:992px){
  .navbar{
    flex-wrap:wrap;
    padding:12px 16px;
  }

  .menu-toggle{
    display:block;
  }

  .nav-right{
    display:none;
    width:100%;
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
    padding-top:10px;
  }

  .navbar.mobile-nav-open .nav-right{
    display:flex;
  }

  .nav-dropdown{
    width:100%;
    display:block;
  }

  .dropdown-menu{
    position:static;
    min-width:100%;
    box-shadow:none;
    border:none;
    display:none;
    opacity:1;
    visibility:visible;
    transform:none;
    padding:6px 0 0;
  }

  .nav-dropdown.open .dropdown-menu{
    display:block;
  }

  .page-hero{
    height:320px;
  }

  .about-grid,
  .faculty-panel{
    grid-template-columns:1fr;
  }

  .faculty-panel{
    min-height:auto;
  }

  .faculty-image{
    min-height:280px;
  }

  .faculty-image img{
    height:280px;
  }

  .faculty-tabs{
    grid-template-columns:repeat(2,1fr);
  }

  .faculty-content{
    padding:24px 20px;
  }

  .advisory-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:768px){
  body{
    padding-bottom:68px;
  }

  .site-header{
    background:rgba(255,255,255,.98);
    z-index:1200;
    box-shadow:0 8px 24px rgba(0,30,60,.08);
  }

  .navbar{
    min-height:62px;
    padding:8px 14px;
    align-items:center;
    gap:12px;
  }

  .brand-logo.iitb img{
    width:42px;
    height:42px;
  }

  .brand-logo.honeywell img{
    width:84px;
  }

  .brand-divider{
    height:32px;
  }

  .menu-toggle{
    width:38px;
    height:38px;
    border-radius:12px;
    background:rgba(0,168,168,.08);
    color:#003366;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:1.35rem;
  }

  .nav-right{
    position:absolute;
    top:calc(100% + 8px);
    left:14px;
    right:14px;
    width:auto;
    display:none;
    padding:12px;
    border-radius:18px;
    background:rgba(255,255,255,.98);
    border:1px solid rgba(0,51,102,.08);
    box-shadow:0 20px 46px rgba(0,40,80,.18);
    backdrop-filter:blur(16px);
  }

  .navbar.mobile-nav-open .nav-right{
    display:flex;
  }

  .nav-link{
    width:100%;
    padding:11px 13px;
    font-size:.92rem;
    border-radius:12px;
    font-weight:700;
  }

  .nav-link.active,
  .nav-link:hover,
  .nav-link.active-section{
    background:rgba(0,168,168,.10);
    color:#008f96;
  }

  .dropdown-menu{
    background:rgba(0,168,168,.04);
    border-radius:14px;
    margin-top:4px;
  }

  .dropdown-menu a{
    font-size:.86rem;
    padding:10px 14px;
  }

  .hackathon-strip{
    padding:5px 8px;
  }

  .hackathon-strip a{
    font-size:.67rem;
    line-height:1.25;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    display:block;
  }

  .page-hero{
    height:240px;
  }

  .section{
    padding:42px 16px;
  }

  .section-title{
    font-size:2rem;
    line-height:1.15;
  }

  .about-card{
    padding:22px 18px;
  }

  .about-card-inner{
    padding-left:12px;
  }

  .about-text p{
    font-size:.95rem;
    line-height:1.75;
  }

  .vm-wrap{
    padding:22px 18px;
  }

  .faculty-tabs{
    grid-template-columns:1fr;
  }

  .faculty-tab{
    font-size:.95rem;
    padding:15px;
  }

  .faculty-content h3{
    font-size:1.45rem;
  }

  .faculty-links{
    flex-direction:column;
  }

  .faculty-links a{
    text-align:center;
  }

  .advisory-grid{
    grid-template-columns:repeat(2,1fr);
    gap:22px 16px;
  }

  .advisory-image{
    width:125px;
    height:125px;
  }

  .team-grid{
    grid-template-columns:repeat(2,160px);
    gap:18px;
  }

  .team-card{
    width:160px;
  }

  .team-card img{
    height:190px;
  }

  .faq-content{
    width:calc(100vw - 28px);
    max-height:82vh;
    padding:22px 16px;
    border-radius:18px;
  }

  .faq-close{
    top:12px;
    right:12px;
  }

  .site-footer{
    padding:30px 18px 22px;
  }

  .footer-inner{
    grid-template-columns:1fr;
    gap:20px;
  }

  .footer-brand-title{
    font-size:.95rem;
  }

  .footer-text,
  .footer-link,
  .footer-meta{
    font-size:.82rem;
  }

  .footer-links{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px 16px;
  }

  .footer-bottom{
    margin-top:18px;
    padding-top:14px;
    flex-direction:column;
    gap:6px;
  }

  .mobile-sticky-cta{
    position:fixed;
    left:14px;
    right:14px;
    bottom:12px;
    z-index:2500;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    padding:11px 14px;
    border-radius:18px;
    color:#fff;
    background:linear-gradient(135deg,rgba(0,51,102,.96),rgba(0,168,168,.96));
    box-shadow:0 18px 40px rgba(0,42,72,.28);
  }

  .mobile-sticky-cta span{
    font-size:.72rem;
    font-weight:700;
    opacity:.85;
  }

  .mobile-sticky-cta strong{
    font-size:.84rem;
    font-weight:800;
  }
}

@media(max-width:576px){
  .faculty-image{
    min-height:220px;
  }

  .faculty-image img{
    height:220px;
  }

  .faculty-content h3{
    font-size:1.35rem;
  }
}

@media(max-width:480px){
  .page-hero{
    height:190px;
  }

  .section-title{
    font-size:1.75rem;
  }

  .advisory-grid{
    grid-template-columns:1fr;
  }

  .advisory-image{
    width:145px;
    height:145px;
  }

  .team-grid{
    grid-template-columns:1fr;
  }

  .team-card{
    width:220px;
    margin:auto;
  }

  .team-card img{
    height:250px;
  }
}

@media(max-width:420px){
  .brand-logo.iitb img{
    width:39px;
    height:39px;
  }

  .brand-logo.honeywell img{
    width:78px;
  }
}

@media (max-width: 768px){

  html, body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
  }

  .nav-left{
    max-width:75%;
  }

  .brand-logo.iitb img{
    width:40px;
    height:40px;
  }

  .brand-logo.honeywell img{
    width:78px;
  }

  .page-hero{
    height:auto;
  }

  .page-hero img{
    height:auto;
    min-height:180px;
    object-fit:cover;
  }

  .about-grid{
    gap:20px;
  }

  .about-card,
  .vm-wrap,
  .faculty-display,
  .about-image-wrap{
    border-radius:18px;
  }

  .about-slider,
  .about-slides,
  .about-slide img{
    min-height:260px;
  }

  .section-title{
    font-size:1.75rem;
    word-break:normal;
  }

  .faculty-tabs{
    display:flex;
    overflow-x:auto;
    gap:8px;
    padding:10px;
    border-radius:18px 18px 0 0;
  }

  .faculty-tab{
    min-width:max-content;
    border-radius:12px;
    white-space:nowrap;
    font-size:.85rem;
  }

  .faculty-panel.active{
    display:block;
  }

  .faculty-image img{
    width:100%;
    height:260px;
  }

  .faculty-content{
    padding:22px 18px;
  }

  .advisory-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:24px 14px;
  }

  .advisory-image{
    width:115px;
    height:115px;
  }

  .advisory-name{
    font-size:.9rem;
  }

  .advisory-role{
    font-size:.78rem;
  }

  .team-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:18px 14px;
  }

  .team-card{
    width:100%;
    max-width:180px;
    margin:0 auto;
  }

  .team-card img{
    height:200px;
  }

  .footer-links{
    grid-template-columns:1fr;
  }
}

@media (max-width: 480px){

  .section{
    padding:36px 14px;
  }

  .hackathon-strip a{
    font-size:.62rem;
  }

  .page-hero img{
    min-height:160px;
  }

  .about-slider,
  .about-slides,
  .about-slide img{
    min-height:220px;
  }

  .section-title{
    font-size:1.55rem;
  }

  .about-text p,
  .vm-block p,
  .faculty-content p{
    font-size:.9rem;
    line-height:1.65;
  }

  .advisory-grid{
    grid-template-columns:1fr;
  }

  .advisory-image{
    width:135px;
    height:135px;
  }

  .team-grid{
    grid-template-columns:1fr;
  }

  .team-card{
    max-width:230px;
  }

  .team-card img{
    height:255px;
  }

  .mobile-sticky-cta{
    left:10px;
    right:10px;
    bottom:10px;
  }
}

@media (max-width: 992px){
  .nav-right{
    max-height:80vh;
    overflow-y:auto;
  }

  .page-hero{
    height:40vw;
    min-height:180px;
    max-height:320px;
  }

  .page-hero img{
    width:100%;
    height:100%;
    object-fit:cover;
  }

  .advisory-name,
  .advisory-role,
  .faculty-content h3,
  .faculty-dept,
  .team-card h3,
  .team-role,
  .footer-brand-title,
  .footer-text,
  .footer-link,
  .footer-left,
  .footer-right{
    overflow-wrap:break-word;
    word-wrap:break-word;
  }
}

@media (max-width: 768px){
  html,
  body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
  }

  body{
    padding-bottom:74px;
  }

  .site-header{
    position:relative;
  }

  .navbar{
    width:100%;
  }

  .nav-left{
    max-width:75%;
    min-width:0;
  }

  .brand-logo.iitb img{
    width:40px;
    height:40px;
  }

  .brand-logo.honeywell img{
    width:78px;
    max-width:100%;
  }

  .nav-right{
    max-height:78vh;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
  }

  .hackathon-strip a{
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .page-hero{
    height:42vw;
    min-height:170px;
    max-height:260px;
  }

  .section{
    padding:40px 14px;
  }

  .section-inner,
  .faculty-shell,
  .advisory-shell{
    width:100%;
    max-width:100%;
  }

  .section-title{
    font-size:1.75rem;
    line-height:1.18;
    letter-spacing:-.2px;
    word-break:normal;
  }

  .about-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .about-card,
  .vm-wrap,
  .faculty-display,
  .about-image-wrap{
    border-radius:18px;
  }

  .about-card{
    padding:22px 16px;
  }

  .about-card-inner{
    padding-left:10px;
  }

  .about-text p,
  .vm-block p,
  .faculty-content p{
    font-size:.92rem;
    line-height:1.68;
  }

  .about-slider,
  .about-slides,
  .about-slide img{
    min-height:250px;
  }

  .about-arrow{
    width:34px;
    height:34px;
  }

  .faculty-tabs{
    display:flex;
    overflow-x:auto;
    gap:8px;
    padding:10px;
    border-radius:18px 18px 0 0;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
  }

  .faculty-tabs::-webkit-scrollbar{
    height:4px;
  }

  .faculty-tabs::-webkit-scrollbar-thumb{
    background:rgba(0,168,168,.45);
    border-radius:20px;
  }

  .faculty-tab{
    min-width:max-content;
    white-space:nowrap;
    border-radius:12px;
    border-right:none;
    font-size:.84rem;
    padding:12px 14px;
    scroll-snap-align:start;
  }

  .faculty-panel.active{
    display:block;
  }

  .faculty-image,
  .faculty-image img{
    min-height:250px;
    height:250px;
  }

  .faculty-content{
    padding:22px 18px;
  }

  .faculty-content h3{
    font-size:1.38rem;
  }

  .faculty-links{
    flex-direction:column;
  }

  .faculty-links a{
    width:100%;
    text-align:center;
  }

  .advisory-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px 14px;
  }

  .advisory-card{
    min-width:0;
  }

  .advisory-image{
    width:115px;
    height:115px;
  }

  .advisory-name{
    font-size:.9rem;
  }

  .advisory-role{
    font-size:.78rem;
    line-height:1.35;
  }

  .team-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px 14px;
  }

  .team-card{
    width:100%;
    max-width:180px;
    margin:0 auto;
  }

  .team-card img{
    height:200px;
  }

  .footer-links{
    grid-template-columns:1fr;
  }

  .mobile-sticky-cta{
    left:10px;
    right:10px;
    bottom:10px;
  }
}

@media (max-width: 576px){
  .page-hero{
    height:44vw;
    min-height:160px;
    max-height:230px;
  }

  .about-slider,
  .about-slides,
  .about-slide img{
    min-height:225px;
  }

  .section-title{
    font-size:1.6rem;
  }

  .vm-block h3{
    font-size:1.25rem;
  }
}

@media (max-width: 480px){
  .section{
    padding:34px 12px;
  }

  .hackathon-strip{
    padding:5px 8px;
  }

  .hackathon-strip a{
    font-size:.62rem;
  }

  .page-hero{
    height:46vw;
    min-height:150px;
  }

  .section-title{
    font-size:1.5rem;
  }

  .about-card,
  .vm-wrap{
    padding:20px 14px;
  }

  .about-text p,
  .vm-block p,
  .faculty-content p{
    font-size:.9rem;
    line-height:1.65;
  }

  .faculty-tab{
    font-size:.8rem;
    padding:11px 12px;
  }

  .faculty-image,
  .faculty-image img{
    min-height:230px;
    height:230px;
  }

  .advisory-grid{
    grid-template-columns:1fr;
  }

  .advisory-image{
    width:135px;
    height:135px;
  }

  .team-grid{
    grid-template-columns:1fr;
  }

  .team-card{
    width:100%;
    max-width:230px;
  }

  .team-card img{
    height:255px;
  }

  .faq-content{
    width:calc(100vw - 24px);
    padding:22px 14px;
  }
}

@media (max-width: 380px){
  .brand-logo.iitb img{
    width:36px;
    height:36px;
  }

  .brand-logo.honeywell img{
    width:70px;
  }

  .brand-divider{
    height:28px;
  }

  .menu-toggle{
    width:36px;
    height:36px;
  }

  .section-title{
    font-size:1.42rem;
  }

  .team-card{
    max-width:215px;
  }
}


#leadership .faculty-display {
  position: relative;
  isolation: isolate;
}

#leadership .faculty-panel {
  display: none;
  width: 100%;
  min-width: 0;
}

#leadership .faculty-panel.active {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  align-items: stretch;
}

#leadership .faculty-image,
#leadership .faculty-content {
  min-width: 0;
}

#leadership .faculty-content {
  position: relative;
  z-index: 1;
  overflow-wrap: anywhere;
}

@media (max-width: 992px) {
  #leadership .faculty-panel,
  #leadership .faculty-panel.active {
    grid-template-columns: 1fr;
  }

  #leadership .faculty-panel.active {
    display: grid;
  }
}

/* =========================================================
   CORE GROUP PROFILE LAYOUT
   Selected faculty: image left, information right
   ========================================================= */

.core-group-section .faculty-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.core-group-section .faculty-display {
  width: 100%;
  overflow: hidden;
}

.core-group-section .faculty-panel {
  display: none;
  width: 100%;
  min-height: 340px;
  grid-template-columns: 300px minmax(0, 1fr);
  align-items: stretch;
}

.core-group-section .faculty-panel.active {
  display: grid;
}

.core-group-section .faculty-image {
  width: 300px;
  min-width: 300px;
  height: 340px;
  min-height: 340px;
  overflow: hidden;
  background: #eef5fa;
}

.core-group-section .faculty-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center top;
}

.core-group-section .faculty-content {
  min-width: 0;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* =========================================================
   ULTRA COMPACT FOOTER
   ========================================================= */

.ultra-footer{
  width:100%;
  padding:14px 20px 10px !important;
  background:
    radial-gradient(circle at 10% 0%,rgba(0,168,168,.14),transparent 30%),
    linear-gradient(135deg,#001f3f 0%,#00264d 65%,#003366 100%);
  color:#fff;
}

.ultra-footer-inner{
  width:100%;
  max-width:1180px;
  margin:0 auto;
}

.ultra-footer-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.ultra-footer-brand{
  color:#fff;
  font-size:.9rem;
  font-weight:800;
  line-height:1.3;
}

.ultra-footer-nav{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;
}

.ultra-footer-nav a{
  color:rgba(255,255,255,.85);
  font-size:.78rem;
  font-weight:600;
  text-decoration:none;
}

.ultra-footer-nav a:hover{
  color:#fff;
}

.ultra-footer-contact{
  display:flex;
  flex-wrap:wrap;
  gap:6px 18px;
  margin-top:8px;
  color:rgba(255,255,255,.74);
  font-size:.72rem;
  line-height:1.35;
}

.ultra-footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:8px;
  padding-top:8px;
  border-top:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.66);
  font-size:.68rem;
  line-height:1.3;
}

@media(max-width:768px){
  .ultra-footer{
    padding:11px 14px 9px !important;
  }

  .ultra-footer-top{
    align-items:flex-start;
    flex-direction:column;
    gap:7px;
  }

  .ultra-footer-brand{
    font-size:.82rem;
  }

  .ultra-footer-nav{
    gap:8px 12px;
  }

  .ultra-footer-nav a{
    font-size:.72rem;
  }

  .ultra-footer-contact{
    margin-top:7px;
    gap:3px;
    flex-direction:column;
    font-size:.67rem;
  }

  .ultra-footer-bottom{
    align-items:flex-start;
    flex-direction:column;
    gap:2px;
    margin-top:7px;
    padding-top:7px;
    font-size:.64rem;
  }
}

@media(max-width:480px){
  .ultra-footer{
    padding:10px 12px 8px !important;
  }

  .ultra-footer-brand{
    font-size:.78rem;
  }

  .ultra-footer-nav{
    gap:6px 10px;
  }

  .ultra-footer-nav a{
    font-size:.68rem;
  }

  .ultra-footer-contact{
    font-size:.63rem;
  }

  .ultra-footer-bottom{
    font-size:.61rem;
  }
}
