/* ===================================================
   Shri Shivaji Science College Amravati - Stylesheet
   =================================================== */

#carousel-example-generic {
  position: relative;
  width: 100%;
  height: 51vh;
  overflow: hidden;
}

#top-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* To make sure the video is in the background */
}

/* Styling for the video */
#top-video video {
  object-fit: cover; /* Ensures the video covers the entire background */
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

/* Optional: Styling for carousel control buttons */
.carousel-control-prev, .carousel-control-next {
  border-radius: 50%;
}

/* Optional: Add a gradient overlay on the video */
#top-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));*/
  z-index: 1;
}

/* -- QUICK LINKS -- */
.quick-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.quick-link-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--gray-light);
  text-decoration: none;
  transition: all 0.2s;
  background: var(--off-white);
}
.quick-link-item:hover {
  border-color: var(--gold);
  background: var(--gold-pale);
  transform: translateX(4px);
}
.quick-link-item .ql-icon {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.quick-link-item span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

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

:root {
  --navy: #0a1628;
  --navy-mid: #102040;
  --navy-light: #1a3560;
  --gold: #c8922a;
  --gold-light: #e8b44a;
  --gold-pale: #f5e6c8;
  --white: #ffffff;
  --off-white: #f8f6f0;
  --gray-light: #e8e4dc;
  --gray: #888880;
  --text: #1a1a2e;
  --accent-red: #9b2335;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
}

/* -- TOP STRIP -- */
.top-strip {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.05em;
  padding: 6px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--navy-light);
}
.top-strip a { color: var(--gold-light); text-decoration: none; margin-left: 18px; }
.top-strip a:hover { color: var(--white); }
.top-strip .strip-left { display: flex; gap: 18px; flex-wrap: wrap; }
.top-strip .strip-right a { margin-left: 18px; }

/* -- HEADER -- */
header{
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(200,146,42,0.2);
}

.header-main{
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  position: relative;
}

.header-side-logo{
  width: 100px;
  height: 100px;
  background: #fff;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(200,146,42,0.25);
}

.header-side-logo img{
  width: 85px;
  height: 85px;
  object-fit: contain;
}

.header-center{
  flex: 1;
  padding: 0 25px;
}

.header-center h1{
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
}

.header-center p{
  margin-top: 6px;
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Mobile Responsive */
@media(max-width:768px){
  .header-main{ padding: 12px 15px; }
  .header-side-logo{ width: 60px; height: 60px; }
  .header-side-logo img{ width: 48px; height: 48px; }
  .header-center{ padding: 0 10px; }
  .header-center h1{ font-size: 18px; }
  .header-center p{ font-size: 9px; letter-spacing: 1px; }
}

.college-title::after {
  content: "";
  display: block;
  width: 140px;
  height: 3px;
  background: linear-gradient(to right, #c1121f, #ffd700, #002147);
  border-radius: 10px;
}

/* -- NAV -- */
nav {
  background: var(--navy-mid);
  border-bottom: 2px solid var(--gold);
}

.nav-inner {
  display: flex;
  padding: 0 40px;
  overflow-x: auto;
  align-items: center;
}

.nav-inner > a, .nav-item > a {
  display: block;
  padding: 14px 16px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.nav-item { position: relative; }

.nav-item > a::after {
  content: ' ?';
  font-size: 10px;
  opacity: 0.6;
}

.nav-inner > a:hover,
.nav-item:hover > a {
  color: var(--gold-light);
  background: rgba(200,146,42,0.08);
}

.dropdown-menu-custom {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  min-width: 220px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  z-index: 999;
}

.nav-item:hover .dropdown-menu-custom { display: block; }

.dropdown-menu-custom a {
  display: block;
  padding: 10px 20px;
  color: rgba(255,255,255,0.8);
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.15s;
}
.dropdown-menu-custom a:hover {
  background: rgba(200,146,42,0.12);
  color: var(--gold-light);
  padding-left: 28px;
}

/* -- SOCIAL SIDEBAR -- */
.social-media-container {
  list-style: none;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
}
.social-media {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 40px;
  height: 40px;
  transition: width 0.3s ease;
  cursor: pointer;
}
.social-media:hover { width: 130px; }
.social-media i {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--white);
}
.social-media a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.social-media.facebook { background: #3b5998; }
.social-media.youtube { background: #ff0000; }
.social-media.twitter { background: #1da1f2; }
.social-media.instagram { background: #e1306c; }

/* -- POPUP -- */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.836);
  z-index: 9999;
}
.popup {
  position: absolute;
  top: 50%; left: 50%;
  max-width: 420px;
  width: 90%;
  transform: translate(-50%, -50%);
  background: var(--navy);
  border: 1px solid var(--gold);
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  z-index: 10000;
}
.popup-content img { max-width: 100%; height: auto; display: block; margin: 0 auto; }
.close-popup-btn {
  position: absolute;
  top: -1px; right: -1px;
  width: 44px; height: 44px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.close-popup-btn:hover { background: var(--accent-red); }
.close-popup-btn i { font-size: 16px; color: var(--navy); }
.close-popup-btn:hover i { color: var(--white); }

/* -- MARQUEE / ANNOUNCEMENTS -- */
.announcements-bar {
  background: var(--navy);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ann-label {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ann-scroll {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 16px;
}
.ann-content {
  display: inline-block;
  animation: scroll-left 35s linear infinite;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-family: 'Barlow', sans-serif;
}
.ann-content a { color: var(--white); text-decoration: none; margin: 0 20px; }
.ann-content a:hover { color: var(--gold); }
@keyframes scroll-left {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}
/* STOP ON HOVER */
.ann-scroll:hover .ann-content {
  animation-play-state: paused;
}

/* -- STATS BAR -- */
.stats-bar {
  background: var(--gold);
  padding: 22px 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow:hidden;
}

.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(10,22,40,0.2);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-mid);
  margin-top: 4px;
}

/* -- ADMISSION BUTTON -- */
.admission-cta-top {
  text-align: center;
  padding: 18px;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-light);
}
.btn-apply-now {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 12px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  animation: pulse-gold 2s infinite;
}
.btn-apply-now:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,146,42,0.4); color: var(--navy); }
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,146,42,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(200,146,42,0); }
}

/* -- SLIDER -- */
.slider-wrapper {
  position: relative;
  overflow: hidden;
}

/* -- SECTION COMMON -- */
section { padding: 72px 80px; }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--gold-light);
  flex-shrink: 0;
}

.section-title-main {
  font-family: 'EB Garamond', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-divider {
  width: 48px; height: 3px;
  background: var(--gold);
  margin-bottom: 36px;
}

/* -- ABOUT -- */
.about-section {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-images {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-images img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border: 2px solid var(--gray-light);
  display: block;
}

.about-text-col p {
  font-size: 15px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 16px;
}

.about-highlight {
  background: var(--navy);
  color: var(--white);
  padding: 24px 28px;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}
.about-highlight::before {
  content: '"';
  position: absolute;
  top: -10px; left: 16px;
  font-family: 'EB Garamond', serif;
  font-size: 90px;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}
.about-highlight p {
  font-family: 'EB Garamond', serif;
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  position: relative;
  z-index: 1;
}
.btn-read-more {
  display: inline-block;
  margin-top: 20px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 9px 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-read-more:hover { background: var(--gold); color: var(--navy); }

/* Notice in about section */
.notice-col {
  background: var(--navy);
  padding: 28px;
  position: relative;
}
.notice-col::before {
  content: '';
  position: absolute;
  top: -6px; left: -6px; right: 6px; bottom: 6px;
  border: 1px solid var(--gold);
  z-index: -1;
}
.notice-col .section-label { color: var(--gold-light); }
.notice-col .section-label::before { background: var(--gold-light); }
.notice-col .section-title-main { color: var(--white); font-size: 26px; }
.notice-col .section-divider { background: var(--gold-light); }
.notice-list { list-style: none; }
.notice-list li {
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.notice-list li:last-child { border-bottom: none; }
.notice-tag {
  background: var(--gold);
  color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 2px 7px;
  flex-shrink: 0;
  margin-top: 2px;
}
.notice-list a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.5;
  transition: color 0.2s;
}
.notice-list a:hover { color: var(--gold-light); }

/* -- TEAM / INSPIRATION -- */
.team-section { background: var(--off-white); }

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

.team-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10,22,40,0.12);
}
.team-card-img {
  height: 220px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.team-card-img img {
  width: 40%; height: 80%;
  object-fit: cover;
  object-position: top;
}
.team-card-img-placeholder {
  width: 90px; height: 90px;
  background: rgba(200,146,42,0.15);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  color: var(--gold);
}
.team-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(10,22,40,0.7));
}
.team-card-info {
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
}
.team-card-role {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.team-card-name {
  font-family: 'EB Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.team-card-btn {
  display: inline-block;
  margin-top: 12px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
}
.team-card-btn:hover { background: var(--gold); color: var(--navy); }

/* -- QUICK LINKS TILES -- */
.quicklinks-section { background: var(--navy); }
.quicklinks-section .section-title-main { color: var(--white); }
.quicklinks-section .section-label { color: var(--gold-light); }
.quicklinks-section .section-label::before { background: var(--gold-light); }

.tiles-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.tile-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,146,42,0.2);
  padding: 28px 16px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.tile-card:hover {
  background: rgba(200,146,42,0.1);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.tile-icon {
  width: 52px; height: 52px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--navy);
  transition: transform 0.2s;
}
.tile-card:hover .tile-icon { transform: scale(1.1); }
.tile-img {
  width: 52px; height: 52px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: opacity 0.2s;
}
.tile-card:hover .tile-img { opacity: 1; }
.tile-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  line-height: 1.3;
}
.tile-card:hover .tile-label { color: var(--gold-light); }

/* -- EVENTS / GALLERY SWIPER -- */
.events-section { background: var(--off-white); }
.swiper-wrapper-outer {
  display: flex;
  gap: 0;
}

.swiper-container.main-slider {
  width: 80%;
  height: 460px;
  float: left;
  transition: opacity 0.6s ease, transform 0.3s ease;
  border:1px solid #1a1a2e;
}
.swiper-container.nav-slider {
  width: 20%;
  height: 460px;
  padding-left: 5px;
}
.swiper-container.nav-slider .swiper-slide {
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}
.swiper-container.nav-slider .swiper-slide.swiper-slide-active { opacity: 1; }
.swiper-container:hover .swiper-button-prev,
.swiper-container:hover .swiper-button-next {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.swiper-container.loading { opacity: 0; visibility: hidden; }
.swiper-slide { overflow: hidden; backface-visibility: hidden; }
.swiper-slide .slide-bgimg {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  background-position: center;
  background-size: cover;
  border:1px solid #1a1a2e;
}
.swiper-slide .entity-img { display: none; }
.swiper-slide .content {
  position: absolute;
  top: 40%; left: 0;
  width: 50%;
  padding-left: 5%;
  color: #fff;
}
.swiper-slide .content .title { font-size: 2.6em; font-weight: bold; margin-bottom: 30px; }
.swiper-slide .content .caption {
  display: block;
  font-size: 13px;
  line-height: 1.4;
  transform: translateX(50px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.7s ease;
}
.swiper-slide .content .caption.show { transform: translateX(0); opacity: 1; }
[class^=swiper-button-] { width: 44px; opacity: 0; visibility: hidden; }
.swiper-button-prev { transform: translateX(50px); }
.swiper-button-next { transform: translateX(-50px); }
.clearfix::after { content: ''; display: table; clear: both; }

/* -- ADMISSION CTA BAND -- */
.admission-band {
  background: var(--gold);
  padding: 44px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.admission-band h2 {
  font-family: 'EB Garamond', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.admission-band p {
  color: rgba(10,22,40,0.7);
  font-size: 15px;
  margin-top: 6px;
}
.btn-dark-cta {
  background: var(--navy);
  color: var(--white);
  padding: 14px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
}
.btn-dark-cta:hover { background: var(--navy-light); transform: translateY(-2px); color: var(--white); }

/* -- FOOTER -- */
footer {
  background: var(--navy);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 80px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand h3 {
  font-family: 'EB Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 6px;
}
.footer-brand p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-brand address {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  font-style: normal;
}
.footer-brand address a { color: var(--gold-light); text-decoration: none; }
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(200,146,42,0.2);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-map iframe {
  width: 100%;
  height: 160px;
  border: 1px solid rgba(200,146,42,0.3);
  filter: grayscale(40%);
}

.footer-bottom {
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: var(--gold); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-bottom img { height: 18px; vertical-align: middle; }

/* -- SCROLL TOP -- */
#scroll {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  text-decoration: none;
  z-index: 800;
  transition: all 0.2s;
}
#scroll:hover { background: var(--gold-light); transform: translateY(-2px); }

/* -- RESPONSIVE -- */
@media (max-width: 1024px) {
  section { padding: 56px 32px; }
  .about-section { grid-template-columns: 1fr; gap: 32px; }
  .tiles-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 32px 32px; }
  .footer-bottom { padding: 20px 32px; }
  .header-main { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .admission-band { padding: 32px; flex-direction: column; text-align: center; }
  .top-strip { padding: 6px 20px; flex-wrap: wrap; gap: 4px; }
}
@media (max-width: 768px) {
  .tiles-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .swiper-container.main-slider { width: 100%; }
  .swiper-container.nav-slider { display: none; }
  .header-right { display: none; }
  .footer-top { grid-template-columns: 1fr; }
}

/* ===================================================
   Achievement / Institutional Excellence Button + Modal
   =================================================== */

.achievement-btn-wrap{
  display:flex;
  justify-content:center;
  margin:35px 0;
}

.achievement-btn{
  position:relative;
  overflow:hidden;
  cursor:pointer;
  padding:18px 38px;
  border:none;
  border-radius:70px;
  color:#fff;
  background:
    linear-gradient(135deg,
    #072b61,
    #0f5dbb,
    #1569d8,
    #0b3d91);
  background-size:250% 250%;
  font-size:22px;
  font-weight:700;
  letter-spacing:.4px;
  box-shadow:
    0 15px 40px rgba(7,43,97,.35),
    inset 0 1px 0 rgba(255,255,255,.25);
  transition:.45s;
  animation:
    gradientMove 8s linear infinite,
    floatButton 4s ease-in-out infinite,
    glowButton 3.5s ease-in-out infinite;
}

/* GOLDEN BORDER */
.achievement-btn::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:70px;
  padding:2px;
  background:
    linear-gradient(
    90deg,
    #fff7bf,
    #ffd85b,
    #f5b027,
    #fff7bf);
  background-size:300% 100%;
  animation:borderFlow 3s linear infinite;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite:xor;
          mask-composite:exclude;
}

/* SHIMMER */
.achievement-btn::after{
  content:"";
  position:absolute;
  top:-60%;
  left:-170%;
  width:60%;
  height:240%;
  transform:rotate(28deg);
  background:
  linear-gradient(
  90deg,
  transparent,
  rgba(255,255,255,.95),
  transparent);
  animation:shine 5s linear infinite;
}

/* ICON */
.achievement-btn i{
  margin-right:12px;
  color:#ffd54f;
  font-size:28px;
  animation:iconPulse 2.5s infinite;
}

/* SUBTITLE */
.achievement-btn span{
  display:block;
  margin-top:6px;
  font-size:13px;
  color:#f7f7f7;
  opacity:.92;
  letter-spacing:1px;
}

/* HOVER */
.achievement-btn:hover{
  transform:
  translateY(-8px)
  scale(1.04);
  box-shadow:
  0 25px 70px rgba(245,176,39,.35),
  0 18px 50px rgba(0,0,0,.25);
}

/*=================== ANIMATIONS ===================*/
@keyframes gradientMove{
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}

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

@keyframes glowButton{
  0%,100%{ box-shadow: 0 15px 40px rgba(7,43,97,.35); }
  50%{
    box-shadow:
    0 20px 60px rgba(245,176,39,.35),
    0 0 35px rgba(255,215,64,.45);
  }
}

@keyframes shine{
  from{ left:-180%; }
  to{ left:220%; }
}

@keyframes borderFlow{
  0%{ background-position:0%; }
  100%{ background-position:300%; }
}

@keyframes iconPulse{
  0%,100%{ transform:scale(1); }
  50%{
    transform:scale(1.18);
    filter:drop-shadow(0 0 15px #ffd54f);
  }
}

/* Button (secondary rule set overriding earlier one, kept from source) */
.achievement-btn-wrap{
  text-align:center;
  margin:25px 0;
}

.achievement-btn{
  background:linear-gradient(135deg,#0B2C55,#123D73);
  color:#fff;
  padding:15px 35px;
  font-size:18px;
  border:none;
  border-radius:50px;
  cursor:pointer;
  font-weight:700;
  box-shadow:0 15px 40px rgba(0,0,0,.25);
  transition:.4s;
}

.achievement-btn i{
  color:#FFD700;
  margin-right:10px;
}

.achievement-btn:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 50px rgba(0,0,0,.35);
}

/* ===========================
   PREMIUM GLASS MODAL
=========================== */

.achievement-modal{
  display:none;
  position:fixed;
  inset:0;
  z-index:99999;
  background:rgba(8,18,35,.72);
  backdrop-filter:blur(14px) saturate(180%);
  -webkit-backdrop-filter:blur(14px) saturate(180%);
  animation:fadeIn .35s ease;
}

/* Glass Container */
.achievement-box{
  position:relative;
  width:auto;
  min-width:280px;
  max-width:90vw;
  height:auto;
  min-height:auto;
  max-height:90vh;
  overflow:auto;
  margin:4vh auto;
  border-radius:28px;
  background:
    linear-gradient(
    145deg,
    rgba(255,255,255,.22),
    rgba(255,255,255,.08)
    );
  border:1px solid rgba(255,255,255,.28);
  backdrop-filter:blur(28px);
  -webkit-backdrop-filter:blur(28px);
  box-shadow:
    0 30px 70px rgba(0,0,0,.35),
    0 0 0 1px rgba(255,255,255,.08) inset,
    0 8px 30px rgba(255,255,255,.08) inset;
  animation:popup .45s ease;
  overflow:hidden;
}

/* Decorative Glow */
.achievement-box::before{
  content:"";
  position:absolute;
  top:-120px;
  right:-120px;
  width:260px;
  height:260px;
  border-radius:50%;
  background:radial-gradient(
    circle,
    rgba(255,215,0,.25),
    transparent 70%
  );
  pointer-events:none;
}

.achievement-box::after{
  content:"";
  position:absolute;
  bottom:-100px;
  left:-100px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(
    circle,
    rgba(0,120,255,.18),
    transparent 70%
  );
  pointer-events:none;
}

/* Header */
.achievement-header{
  padding:22px 25px;
  text-align:center;
  background:
    linear-gradient(
    135deg,
    rgba(11,44,85,.92),
    rgba(20,76,141,.82)
    );
  border-bottom:1px solid rgba(255,255,255,.15);
  color:#fff;
}

.achievement-header i{
  font-size:42px;
  margin-bottom:10px;
  color:#FFD54A;
  text-shadow:
    0 0 20px rgba(255,215,0,.6);
}

.achievement-header h2{
  font-size:26px;
  margin:6px 0;
  font-weight:700;
  letter-spacing:.5px;
}

.achievement-header p{
  font-size:14px;
  opacity:.9;
}

/* Close */
.close-achievement{
  position:absolute;
  right:18px;
  top:14px;
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  font-size:24px;
  cursor:pointer;
  transition:.35s;
}

.close-achievement:hover{
  transform:rotate(90deg) scale(1.08);
  background:#D4AF37;
}

/* Grid */
.achievement-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:16px;
  padding:22px;
}

/* Glass Cards */
.achievement-card{
  background:
    linear-gradient(
    145deg,
    rgba(255,255,255,.40),
    rgba(255,255,255,.18)
    );
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.30);
  border-radius:20px;
  padding:20px 16px;
  text-align:center;
  transition:.35s;
  box-shadow:
    0 12px 28px rgba(0,0,0,.12),
    0 2px 8px rgba(255,255,255,.15) inset;
}

.achievement-card:hover{
  transform:
    translateY(-6px)
    scale(1.03);
  box-shadow:
    0 18px 40px rgba(0,0,0,.22);
}

.achievement-card i{
  font-size:34px;
  margin-bottom:12px;
  color:#FFD700;
  text-shadow:
    0 0 18px rgba(212,175,55,.45);
}

.achievement-card h4{
  font-size:18px;
  margin-bottom:6px;
  color:#0B2C55;
}

.achievement-card p{
  font-size:15px;
  font-weight:700;
  color:#FFD700;
  margin-bottom:5px;
}

.achievement-card span{
  font-size:13px;
  color:#fff;
}

/* Scroll */
.achievement-box::-webkit-scrollbar{
  width:7px;
}

.achievement-box::-webkit-scrollbar-thumb{
  background:#C7A247;
  border-radius:50px;
}

/* Animation */
@keyframes popup{
  from{
    opacity:0;
    transform:translateY(-40px) scale(.92);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

@keyframes fadeIn{
  from{ opacity:0; }
  to{ opacity:1; }
}

/* ===================================================
   Notice board auto-scroll
   =================================================== */
.notice-scroll{
  height: 236px;
  overflow: hidden;
  position: relative;
}

.notice-list{
  list-style: none;
  padding: 0;
  margin: 0;
  animation: scrollUp 18s linear infinite;
}

.notice-list li{
  background: #fff;
  margin-bottom: 14px;
  padding: 16px;
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.notice-list li a{
  text-decoration: none;
  color: #1b1b1b;
  font-weight: 500;
  line-height: 1.5;
}

.notice-tag{
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 30px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.notice-scroll:hover .notice-list{
  animation-play-state: paused;
}

@keyframes scrollUp{
  0%{ transform: translateY(100%); }
  100%{ transform: translateY(-100%); }
}
