* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Roboto, system-ui, sans-serif;
}

:root {
  --brand-deep: #2f1b1b; /* dark chocolate */
  --brand-main: #4b2e2e; /* deep brown */
  --brand-soft: #7a4e2d; /* warm brown */
  --highlight-accent: #c49a6c; /* gold accent */
  --surface-base: #ffffff;
  --surface-light: #f8f5f2;
  --surface-muted: #f1ece6;
  --content-primary: #2b2b2b;
  --content-secondary: #6b6b6b;
  --content-inverse: #ffffff;
  --line-subtle: #e2d6cc;
  --header-top-bg: #3f2626; /* slightly lighter than deep */
  --transition: all 0.25s ease;
}

a {
  text-decoration: none !important;
}

.header-top {
  background: var(--header-top-bg);
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 15px;
}

.contact-info p {
  color: var(--highlight-accent);
  text-transform: uppercase;
  margin-bottom: 0px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  color: #e9dbcf;
  font-size: 1rem;
  transition: var(--transition);
  line-height: 1;
}

.social-links a:hover {
  color: var(--highlight-accent);
  transform: translateY(-1px);
}

.social-links a .fa-facebook:hover {
  color: #4267b2;
}

.social-links a .fa-instagram:hover {
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.social-links a .fa-linkedin-in:hover {
  color: #0077b5;
}

.header-top .phone-compact {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-bg {
  background: linear-gradient(145deg, var(--brand-deep), var(--brand-main));
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1040;
}

.header-bg .container {
  padding-right: 0px;
}

.navbar {
  padding: 20px 0 !important;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-section img {
  width: 52px;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.logo-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
  color: white;
  text-transform: uppercase;
}

.offcanvas {
  background-color: var(--surface-base);
}
.offcanvas-header {
  background: var(--brand-deep);
  color: white;
  padding: 1rem;
}
.offcanvas-header img {
  width: 42px;
  filter: brightness(0) invert(1);
}
.offcanvas-header .btn-close {
  filter: invert(1) brightness(2);
}

.navbar-nav {
  gap: 2px;
}

.navbar-nav .nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 30px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  background-color: var(--highlight-accent);
  color: var(--brand-deep) !important;
}

.custom-navbar .dropdown-menu {
  background: var(--surface-base);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  padding: 12px 0;
  margin-top: 0px;
  border: 1px solid var(--line-subtle);
  overflow: hidden;
}

.custom-navbar .dropdown-menu .dropdown-item {
  color: #8b5a2b;
  font-weight: 500;
  font-size: 12px;
  position: relative;
  transition: all 0.3s ease;
}

.custom-navbar .dropdown-menu .dropdown-item:hover {
  background-color: #fcf2e4;
  color: #5d3a1b;
  padding-left: 28px;
}

@media (min-width: 992px) {
  .dropdown:hover > .dropdown-menu {
    display: block;
  }
  .navbar-nav {
    gap: 8px;
  }
  .logo-title br {
    display: inline;
  }
}

@media (max-width: 991px) {
  .navbar-nav .nav-link {
    color: var(--content-primary);
    border-bottom: 1px solid var(--line-subtle);
    border-radius: 0;
    padding: 14px 16px;
  }
  .navbar-nav .nav-link:hover {
    background-color: var(--surface-muted);
    color: var(--brand-deep) !important;
  }
  .offcanvas-body {
    padding: 0 16px;
  }
  .dropdown-menu {
    box-shadow: none;
    border-left: 3px solid var(--highlight-accent);
    border-radius: 0 8px 8px 0;
    background: #fafafa;
    margin-bottom: 8px;
  }
  .dropdown-item {
    padding: 10px 30px;
  }
  .logo-title {
    font-size: 1.1rem;
  }
  .logo-link img {
    width: 44px;
  }
}

/* ----------------------------------------- */
/* --------------Hero-banner--------------- */
/* --------------------------------------- */

/* ── Hero Banner ── */
.hero-banner {
  position: relative;
  height: 85vh;
  overflow: hidden;
  min-height: 400px;
}

.hero-banner .hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-banner .hero-slider .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-banner .hero-slider .hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-banner .hero-slider .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-banner .hero-static-content {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  padding-bottom: 70px;
  background: linear-gradient(
    90deg,
    rgba(47, 27, 27, 0.95) 0%,
    rgba(75, 46, 46, 0.9) 30%,
    rgba(75, 46, 46, 0.55) 50%,
    rgba(0, 0, 0, 0) 75%
  );
}

.hero-banner .hero-content {
  margin-left: 8%;
  max-width: 720px;
  color: var(--content-inverse);
}

.hero-banner .hero-text h1 {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 16px;
}

.hero-banner .hero-text p {
  font-size: 18px;
  line-height: 1.7;
  color: #e6ded6;
  margin-bottom: 28px;
  max-width: 580px;
}

.hero-banner .hero-btn-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-banner .hero-btn {
  background: var(--highlight-accent);
  color: var(--brand-deep);
  padding: 10px 22px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 4px;
  transition: var(--transition);
  text-transform: uppercase;
  border: 2px solid var(--highlight-accent);
}

.hero-banner .hero-btn:hover {
  background: #fff;
  border-color: #fff;
  color: var(--brand-deep);
}

.hero-banner .hero-btn-outline {
  background: transparent;
  color: var(--content-inverse);
  border: 2px solid var(--highlight-accent);
}

.hero-banner .hero-btn-outline:hover {
  background: var(--highlight-accent);
  color: var(--brand-deep);
}

/* ── Arrow Nav ── */
.hero-banner .hero-slider-nav {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 24px;
  box-sizing: border-box;
  pointer-events: none;
}

.hero-banner .hero-slider-nav .hero-nav-btn {
  pointer-events: all;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}

.hero-banner .hero-slider-nav .hero-nav-btn:hover {
  background: var(--highlight-accent);
  border-color: var(--highlight-accent);
}

.hero-banner .hero-slider-nav .hero-nav-btn svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-mobile-content {
  display: none;
}

/* ------------------------------------- */
/* -----------cources------------------ */
/* ----------------------------------- */

.title-spot-cources {
  padding: 40px 0 20px 0px;
  background: var(--surface-base);
  text-align: center;
}

.title-spot-cources h2 {
  font-size: 30px;
  color: var(--brand-deep);
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.title-spot-cources p {
  max-width: 750px;
  margin: auto;
  font-size: 17px;
  line-height: 1.8;
  color: var(--content-secondary);
}

.cources-ails {
  padding: 40px 0;
}

.spot-cource {
  display: flex;
  align-items: center;
  position: relative;
}
.spot-cource .right-content-course {
  width: 70%;
  margin-left: auto;
  background: var(--brand-main);
  color: var(--content-inverse);
  padding: 80px 60px 80px 150px;
  border-radius: 18px;
  position: relative;
}

.right-content-course h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--highlight-accent);
  text-transform: uppercase;
  font-weight: 700;
}

.right-content-course p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.95;
}

.spot-cource .left-image-cource {
  width: 40%;
  position: absolute;
  left: 0;
  z-index: 2;
}

.spot-cource .left-image-cource img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.spot-cource .course-btns {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.spot-cource .course-btns a {
  text-decoration: none;
  padding: 5px 15px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
}

.spot-cource .btn-know {
  border: 2px solid var(--highlight-accent);
  color: var(--highlight-accent);
}

.spot-cource .btn-know:hover {
  background: var(--highlight-accent);
  color: var(--brand-deep);
}

.spot-cource .btn-apply {
  background: var(--highlight-accent);
  color: var(--brand-deep);
  border: 2px solid var(--highlight-accent);
}

.spot-cource .btn-apply:hover {
  background: transparent;
  color: var(--highlight-accent);
}

.spot-cource-reverse {
  flex-direction: row-reverse;
}

.spot-cource-reverse .left-image-cource {
  left: auto;
  right: 0;
}

.spot-cource-reverse .right-content-course {
  margin-left: 0;
  margin-right: auto;
  padding: 80px 150px 80px 60px;
}

/* ---------------------------------------- */
/* --------------Facilities--------------- */
/* -------------------------------------- */

.facilities-ms {
  background: var(--surface-light);
  padding: 80px 0;
}

.facilities-ms h2 {
  font-size: 30px;
  color: var(--brand-deep);
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.facilities-ms .facilities-intro {
  max-width: 750px;
  margin: auto;
  font-size: 17px;
  line-height: 1.8;
  color: var(--content-secondary);
}

.facilities-ms .infrastructure-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: var(--surface-base);
  border: 1px solid var(--line-subtle);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  height: 320px;
}

.facilities-ms .infrastructure-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(47, 27, 27, 0.15);
}

.facilities-ms .infrastructure-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.facilities-ms .infrastructure-card:hover img {
  transform: scale(1.08);
}

.facilities-ms .card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.facilities-ms .title-section {
  background: linear-gradient(
    to bottom,
    rgba(47, 27, 27, 0.85),
    rgba(47, 27, 27, 0.35),
    transparent
  );
  padding: 18px 20px;
}

.facilities-ms .title-section h3 {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand-deep);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid var(--highlight-accent);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.facilities-ms .overlay {
  background: linear-gradient(
    to top,
    rgba(47, 27, 27, 0.95),
    rgba(47, 27, 27, 0.7),
    transparent
  );
  padding: 30px 22px;
  color: var(--content-inverse);
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition);
}

.facilities-ms .infrastructure-card:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}

.facilities-ms .overlay p {
  font-size: 0.95rem;
  color: #f3ede7;
  margin-bottom: 18px;
  line-height: 1.6;
}

.facilities-ms .overlay a {
  display: inline-block;
  background: var(--highlight-accent);
  color: var(--brand-deep);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.facilities-ms .overlay a:hover {
  background: var(--brand-soft);
  color: var(--content-inverse);
}

@media (max-width: 768px) {
  .facilities-ms .infrastructure-card {
    height: 280px;
  }
}

.court-visit-section {
  padding: 0px 0px 80px 0px;
  background: var(--surface-light);
}

.court-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

/* Content */
.court-content {
  padding-left: 25px;
}



.badge-title {
  background: var(--brand-soft);
  color: var(--content-inverse);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 14px;
}

.court-content h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--brand-deep);
}



.court-content .intro {
  color: var(--content-secondary);
  line-height: 1.7;
  margin-bottom: 22px;
  font-size: 15px;
}

/* Points */
.court-points .point {
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 3px solid var(--highlight-accent);
}

.court-points h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--brand-main);
}

.court-points p {
  color: var(--content-secondary);
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* ----------------------------------- */
/* ----------Programs---------------- */
/* --------------------------------- */

.programs-section .section-header h2 {
  color: var(--brand-main);
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 35px;
}

.programs-section .section-header p {
  max-width: 750px;
  margin: auto;
  font-size: 17px;
  line-height: 1.8;
  color: var(--content-secondary);
}

.programs-section .programs-list {
  max-width: 800px;
  margin: 0 auto;
}

.programs-section .program-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--line-subtle);
  transition: var(--transition);
}

.programs-section .program-item:last-child {
  border-bottom: none;
}

.programs-section .program-title {
  color: var(--brand-deep);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 20px;
}

.programs-section .program-date {
  color: var(--content-secondary);
  font-size: 0.9rem;
  margin-left: 1rem;
}

.programs-section .program-description {
  color: var(--content-primary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.programs-section .program-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.programs-section .program-link {
  color: var(--highlight-accent);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.programs-section .program-link:hover {
  color: var(--brand-soft);
}

.programs-section .program-status {
  color: var(--brand-main);
  font-size: 0.85rem;
  font-weight: 500;
}

.programs-section .view-all-btn {
  background-color: var(--brand-main);
  color: var(--content-inverse);
  padding: 0.6rem 2rem;
  border-radius: 6px;
  border: none;
  transition: var(--transition);
}

.programs-section .view-all-btn:hover {
  background-color: var(--brand-deep);
  color: var(--content-inverse);
}

@media (max-width: 768px) {
  .programs-section .program-content > div {
    flex-direction: column;
  }

  .programs-section .program-date {
    margin-left: 0;
    margin-top: 0.5rem;
    order: -1;
  }

  .programs-section .program-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .programs-section .program-status {
    margin-top: 0.5rem;
  }
}

.vmp {
  background: var(--highlight-accent);
  color: var(--brand-deep);
  padding: 5px 15px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  display: inline-block;
}

/* ================================
   EVENT MARQUEE  CINEMATIC
================================ */

.event-marquee {
  width: 100%;
  overflow: hidden;
  padding: 20px 0px 60px 0px;
  cursor: auto;
}

.event-marquee:active {
  cursor: grabbing;
}

.event-marquee__wrapper {
  width: 100%;
  overflow: hidden;
}

.event-marquee__track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: eventMarqueeScroll 60s linear infinite; /* ðŸŽ¬ cinematic speed */
  will-change: transform;
}

/* Pause animation on hover or drag */
.event-marquee__wrapper:hover .event-marquee__track,
.event-marquee.is-dragging .event-marquee__track {
  animation-play-state: paused;
}

.event-marquee__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-marquee__item img {
  height: 260px;
  width: auto;
  max-width: 1000px;
  object-fit: contain;
  display: block;
  border-radius: 14px;
  user-select: none;
  pointer-events: none; /* important for drag */
  transition: transform 0.4s ease;
}

.event-marquee__item img:hover {
  transform: scale(1.03);
}

/* Infinite animation */
@keyframes eventMarqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
  .event-marquee__item img {
    height: 210px;
  }
}

@media (max-width: 768px) {
  .event-marquee {
    padding: 20px 0;
  }

  .event-marquee__track {
    gap: 40px;
  }

  .event-marquee__item img {
    height: 160px;
    max-width: 600px;
  }
}

.only-events-title .heading-programs {
  color: var(--brand-main);
  margin-bottom: 0.5rem;
  font-size: 35px;
}

/* --------------------------------- */
/* ------------Footer-------------- */
/* ------------------------------- */

.ails-footer {
  background: #0b1c2d;
  color: #ffffff;
  padding: 60px 0 20px;
  font-size: 14px;
}

.ails-footer .footer-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #d4af37;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #dcdcdc;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 400;
}

.footer-links a:hover {
  color: #d4af37;
  padding-left: 5px;
}

.footer-address {
  color: #cfcfcf;
  line-height: 1.7;
}

.footer-contact a {
  display: block;
  color: #dcdcdc;
  margin-bottom: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-contact a:hover {
  color: #d4af37;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 18px;
  margin-top: 25px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  text-align: left;
}

.footer-left {
  font-size: 14px;
}

.footer-institutions li .active-footer {
  color: #d4af37 !important;
}

.footer-right a {
  margin-left: 25px;
  font-size: 14px;
  color: #fff;
}

.footer-left a {
  font-size: 14px;
  color: #fff;
}

.footer-right a:first-child {
  margin-left: 0;
}

@media (max-width: 768px) {
  .footer-menu li,
  .footer-institutions ul li {
    display: block;
    margin: 8px 0;
  }

  .footer-institutions ul li::after {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-right a {
    margin: 0 10px;
  }
}

.footer-institutions {
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.footer-institutions h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0px;
}

.footer-institutions ul {
  list-style: none;
  padding: 0;
  margin: 0px;
}

.footer-institutions ul li {
  display: inline-block;
  margin: 0px 18px;
  position: relative;
  color: #ffff !important;
}

.footer-institutions ul li a {
  color: #ffff !important;
}

.footer-institutions ul li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -18px;
  color: #ffff;
}

.footer-soc a {
  color: #ffffff;
  font-size: 14px;
  margin-right: 12px;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-soc a:hover {
  color: #ffffff;
  opacity: 0.7;
}

.footer-soc i {
  color: #ffffff;
}

/* ------------------------------- */
/* ----------aboutus-page-------- */
/* ----------------------------- */

.about-page {
  color: var(--content-primary);
}

.about-page .about-banner {
  background: var(--brand-main);
  padding: 90px 0;
  text-align: center;
  color: var(--content-inverse);
}

.about-banner h1 {
  font-size: 40px;
  font-weight: 700;
}

.about-banner p {
  color: var(--highlight-accent);
  margin-top: 10px;
}

/* Common Grid */
.about-page .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-page .about-grid.reverse {
  direction: rtl;
}

.about-page .about-grid.reverse * {
  direction: ltr;
}

/* Sections */
.about-page section {
  padding: 80px 0;
}

.about-intro {
  background: var(--surface-base);
}

.about-academics {
  background: var(--surface-light);
}

.about-development {
  background: var(--surface-base);
}

.about-vision {
  background: var(--surface-muted);
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

/* Content */
.about-content h2 {
  color: var(--brand-deep);
  margin-bottom: 15px;
}

.about-content p {
  color: var(--content-secondary);
  line-height: 1.7;
}

/* Feature Cards */
.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.feature-card {
  background: var(--surface-base);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--line-subtle);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h4 {
  color: var(--brand-main);
  margin-bottom: 10px;
}

.vision-box h2 {
  color: var(--brand-deep);
  margin-bottom: 20px;
}

.vision-box p {
  color: var(--content-secondary);
  line-height: 1.7;
}

.about-trust {
  background: var(--brand-deep);
  text-align: center;
  color: var(--content-inverse);
}

.about-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 25px;
  background: var(--highlight-accent);
  color: var(--brand-deep);
  text-decoration: none;
  border-radius: 4px;
  transition: var(--transition);
}

.about-btn:hover {
  background: #b88a5c;
}

/* -------------------------------------- */
/* ----------RulesandRegulations-------- */
/* ------------------------------------ */

.student-handbook {
  background: #f8f9fb;
}

.student-handbook .handbook-heading h2 {
  font-size: 34px;
  font-weight: 700;
  color: #012a5b;
}

.student-handbook .handbook-heading .subtitle {
  font-size: 18px;
  color: #666;
  margin-top: 5px;
}

.student-handbook .rule-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  height: 100%;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  border-left: 4px solid #f9bd09;
}

.student-handbook .rule-card:hover {
  transform: translateY(-5px);
}

.student-handbook .rule-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #012a5b;
}

.student-handbook .rule-card ul {
  padding-left: 18px;
  margin: 0;
}

.student-handbook .rule-card ul li {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 6px;
}

/* --------------------------------- */
/* ----------Group-management------ */
/* ------------------------------- */

.management-section {
  background: #f8f9fb;
}

.management-section .management-heading h2 {
  font-size: 34px;
  font-weight: 700;
  color: #012a5b;
}

.management-section .management-heading p {
  font-size: 18px;
  color: #666;
  margin-top: 6px;
}

.management-section .management-card {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
  height: 100%;

  display: flex;
  flex-direction: column;
  align-items: center; /* centers everything horizontally */
  text-align: center;
}

.management-section .management-card:hover {
  transform: translateY(-5px);
}

.management-section .management-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: center;

  margin-bottom: 18px; /* remove auto margin */
}
.management-section .management-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.management-section .management-card h5 {
  font-size: 17px;
  font-weight: 600;
  color: #012a5b;
  margin-bottom: 4px;
}

.management-section .management-card span {
  font-size: 14px;
  color: #777;
}

/* ------------------------------------------- */
/* ------------anti-ragging-policy----------- */
/* ----------------------------------------- */

.anti-ragging-section {
  background: #ffffff;
}

.ragging-heading h2 {
  font-size: 34px;
  font-weight: 700;
  color: #012a5b;
}

.ragging-heading p {
  font-size: 18px;
  color: #666;
  margin-top: 6px;
}

.ragging-content {
  max-width: 900px;
  margin: auto;
}

.ragging-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

.ragging-box {
  background: #f8f9fb;
  padding: 25px;
  border-left: 5px solid #f9bd09;
  border-radius: 8px;
}

.ragging-box h5 {
  font-size: 18px;
  font-weight: 600;
  color: #012a5b;
  margin-bottom: 12px;
}

.ragging-box ul {
  padding-left: 20px;
  margin: 0;
}

.ragging-box ul li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 8px;
  color: #444;
}

.complaint-box {
  background: #fff3cd;
  padding: 20px;
  border-radius: 8px;
  font-size: 15px;
  color: #333;
}

/* ------------------------------------ */
/* ------------3-Years-llb------------ */
/* ---------------------------------- */

.llb-page {
  font-family: inherit;
}

.llb-page__banner {
  background: #0b1c2d;
  color: #fff;
  padding: 80px 0;
}

.llb-page__banner h1 {
  font-size: 40px;
  font-weight: 700;
}

.llb-page__banner p {
  font-size: 18px;
  opacity: 0.9;
}

.llb-page__content h2 {
  font-size: 30px;
  font-weight: 700;
  color: #012a5b;
  margin-bottom: 15px;
}

.llb-page__content p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

.llb-page__content ul {
  padding-left: 18px;
  margin-top: 15px;
}

.llb-page__content ul li {
  font-size: 15px;
  margin-bottom: 8px;
}

.llb-page__image img {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}

.llb-page__detail-card {
  background: #f8f9fb;
  padding: 30px 20px;
  border-radius: 8px;
}

.llb-page__detail-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #012a5b;
}

.llb-page__detail-card p {
  font-size: 15px;
  margin-top: 8px;
}

.llb-page__cta {
  background: #f9bd09;
}

.llb-page__cta h3 {
  font-size: 28px;
  font-weight: 700;
  color: #012a5b;
}

.llb-page__cta p {
  font-size: 16px;
  color: #222;
  margin-bottom: 25px;
}

.llb-page__cta-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.llb-page__btn-primary {
  background: #012a5b;
  color: #fff;
  padding: 11px 30px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  border: none;
}

.llb-page__btn-primary:hover {
  background: #001f45;
  color: #fff;
}

.llb-page__btn-call {
  background: #ffffff;
  color: #012a5b;
  padding: 11px 30px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #012a5b;
}

.llb-page__btn-call:hover {
  background: #012a5b;
  color: #fff;
}

.llb-page__details {
  padding: 30px 0px;
}

.llb-page__eligibility {
  padding: 30px 0px;
}

.llb-page__eligibility h2 {
  font-size: 28px;
  font-weight: 700;
  color: #012a5b;
  margin-bottom: 15px;
}

.llb-page__eligibility ul {
  padding-left: 18px;
}

.llb-page__eligibility ul li {
  font-size: 15px;
  margin-bottom: 8px;
}

.syllabus-section {
  padding: 60px 0;
  background: #ffffff;
  color: #2f1b1b;
}

.syllabus-section .syllabus-header {
  text-align: center;
  margin-bottom: 30px;
}

.syllabus-section .syllabus-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #2f1b1b;
  margin: 0;
}

.syllabus-section .table-responsive {
  overflow-x: auto;
}

.syllabus-section .syllabus-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2f1b1b;
  box-shadow: 0 8px 20px rgba(47, 27, 27, 0.08);
}

.syllabus-section .syllabus-table thead {
  background: #2f1b1b;
}

.syllabus-section .syllabus-table thead th {
  color: #ffffff;
  padding: 14px;
  font-size: 14px;
  text-align: left;
  font-weight: 600;
  border-right: 1px solid #2f1b1b;
}

.syllabus-section .syllabus-table thead th:last-child {
  border-right: none;
}

.syllabus-section .syllabus-table td {
  padding: 12px 14px;
  font-size: 14px;
  color: #2f1b1b;
  border-bottom: 1px solid #2f1b1b;
  border-right: 1px solid #2f1b1b;
  transition: all 0.2s ease;
}

.syllabus-section .syllabus-table td:last-child {
  border-right: none;
}

.syllabus-section .syllabus-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.syllabus-section .syllabus-table tbody tr:hover {
  background: #f3f3f3;
}

.syllabus-section .syllabus-table td:first-child,
.syllabus-section .syllabus-table td:nth-child(2) {
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .syllabus-section .syllabus-header h2 {
    font-size: 22px;
  }

  .syllabus-section .syllabus-table th,
  .syllabus-section .syllabus-table td {
    font-size: 13px;
    padding: 10px;
  }
}

@media (max-width: 576px) {
  .syllabus-section {
    padding: 40px 10px;
  }

  .syllabus-section .syllabus-table th,
  .syllabus-section .syllabus-table td {
    white-space: nowrap;
  }
}

.syllabus-section .syllabus-table td[rowspan] {
  border-right: 1px solid #2f1b1b;
  border-left: 1px solid #2f1b1b;
  vertical-align: middle;
}

.ails-exam-section {
  background: var(--surface-light);
}

/* Header */
.ails-exam-header h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--brand-deep);
  margin-bottom: 10px;
}

.ails-exam-header p {
  color: var(--content-secondary);
  font-size: 15px;
}

/* Card */
.ails-exam-card {
  background: var(--surface-base);
  padding: 35px;
  border-radius: 10px;
  border: 1px solid var(--line-subtle);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.ails-exam-card:hover {
  transform: translateY(-4px);
}

/* Text */
.ails-exam-card p {
  color: var(--content-primary);
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Highlight text */
.ails-exam-card strong {
  color: var(--brand-main);
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .ails-exam-card {
    padding: 25px;
  }

  .ails-exam-header h2 {
    font-size: 24px;
  }
}
/* ---------------------------------- */
/* --------Admission-process-------- */
/* -------------------------------- */

.admission-process {
  background: #f8f9fb;
}

.admission-process .section-title {
  font-size: 34px;
  font-weight: 700;
  color: #012a5b;
}

.admission-process .admission-tabs {
  border-bottom: 2px solid #e5e5e5;
}

.admission-process .admission-tabs .nav-link {
  font-size: 16px;
  font-weight: 600;
  color: #444;
  padding: 12px 25px;
  border: none;
  border-radius: 6px 6px 0 0;
  transition: 0.3s;
}

.admission-process .admission-tabs .nav-link.active {
  background: #012a5b;
  color: #fff;
}

.admission-process .admission-tabs .nav-link:hover {
  background: #012a5b;
  color: #fff;
}

.admission-process .admission-tab-content {
  background: #ffffff;
  border-color: #e5e5e5 !important;
}

.admission-process h5 {
  font-size: 22px;
  font-weight: 600;
  color: #012a5b;
}

.admission-process h6 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
}

.admission-process p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

.admission-process ol {
  padding-left: 20px;
}

.admission-process ol li {
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1.7;
  color: #333;
}

.admission-process ul {
  padding-left: 18px;
}

.admission-process ul li {
  font-size: 15px;
  margin-bottom: 8px;
  color: #333;
}

.admission-process a {
  color: #012a5b;
  font-weight: 500;
  text-decoration: none;
}

.admission-process a:hover {
  text-decoration: underline;
}

.admission-process .download-btn {
  background: #f9bd09;
  color: #000;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 6px;
  display: inline-block;
  margin-top: 10px;
  transition: 0.3s;
}

.admission-process .download-btn:hover {
  background: #e0a800;
  color: #000;
}

@media (max-width: 768px) {
  .admission-process .section-title {
    font-size: 26px;
  }

  .admission-process h5 {
    font-size: 20px;
  }

  .admission-process p,
  .admission-process li {
    font-size: 14px;
  }
}

/* ===============================
   Law Facilities Section
=================================*/

.law-facilities {
  background: #f8f9fb;
}

.law-facilities__header h2 {
  font-size: 34px;
  font-weight: 700;
  color: #012a5b;
}

.law-facilities__header p {
  font-size: 16px;
  max-width: 750px;
  margin: auto;
  color: #555;
  line-height: 1.8;
}

/* --------------------------------- */
/* --------Programs---------------- */
/* ------------------------------- */

.pro-tabs-section {
  background: var(--surface-light);
}

.pro-tabs-section .pro-tabs-header h2 {
  color: var(--brand-deep);
  font-weight: 700;
  margin-bottom: 10px;
}

.pro-tabs-section .pro-tabs-header p {
  color: var(--content-secondary);
  max-width: 750px;
  margin: 0 auto;
  font-size: 15px;
}

.pro-tabs-section .pro-tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}

.pro-tabs-section .pro-tabs-nav .nav-link {
  border-radius: 6px;
  padding: 8px 18px;
  background: var(--surface-base);
  color: var(--brand-main);
  border: 1px solid var(--line-subtle);
  font-weight: 500;
  transition: var(--transition);
  font-size: 14px;
}

.pro-tabs-section .pro-tabs-nav .nav-link:hover {
  background: var(--surface-muted);
}

.pro-tabs-section .pro-tabs-nav .nav-link.active {
  background: var(--brand-main);
  color: var(--content-inverse);
  border-color: var(--brand-main);
}

.pro-tabs-section .pro-tabs-content {
  background: var(--surface-base);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--line-subtle);
}

.pro-tabs-section .pro-tabs-text h4 {
  color: var(--brand-deep);
  font-weight: 600;
  margin-bottom: 10px;
}

.pro-tabs-section .pro-tabs-text p {
  color: var(--content-secondary);
  line-height: 1.6;
  font-size: 15px;
}

.pro-tabs-section .pro-tabs-img img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .pro-tabs-section .pro-tabs-content {
    padding: 20px;
  }

  .pro-tabs-section .pro-tabs-text {
    text-align: center;
    margin-bottom: 20px;
  }

  .pro-tabs-section .pro-tabs-text h4 {
    font-size: 18px;
  }

  .pro-tabs-section .pro-tabs-text p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .pro-tabs-section .pro-tabs-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    padding-bottom: 5px;
    scrollbar-width: thin;
  }

  .pro-tabs-section .pro-tabs-nav::-webkit-scrollbar {
    height: 4px;
  }

  .pro-tabs-section .pro-tabs-nav::-webkit-scrollbar-thumb {
    background: var(--line-subtle);
    border-radius: 10px;
  }

  .pro-tabs-section .pro-tabs-nav .nav-link {
    white-space: nowrap;
    flex: 0 0 auto;
  }
}

@media (max-width: 576px) {
  .pro-tabs-section .pro-tabs-header h2 {
    font-size: 20px;
  }

  .pro-tabs-section .pro-tabs-header p {
    font-size: 13px;
  }

  .pro-tabs-section .pro-tabs-content {
    padding: 15px;
  }

  .pro-tabs-section .pro-tabs-nav .nav-link {
    font-size: 13px;
    padding: 6px 14px;
  }

  .pro-tabs-section .row {
    flex-direction: column-reverse;
  }

  .pro-tabs-section .pro-tabs-img {
    margin-bottom: 15px;
  }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  color: #fff !important;
}

/* ------------------------------------ */
/* ------------EVents-activities------ */
/* ---------------------------------- */

.ails-events {
  background: #f8f9fb;
}

.ails-events__banner {
  background: #0b1f3a;
  color: #fff;
  padding: 70px 20px;
}

.ails-events__banner h1 {
  font-size: 40px;
  font-weight: 700;
}

.ails-events__banner p {
  font-size: 16px;
  opacity: 0.9;
}

.ails-events .ails-event-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
}

.ails-events .ails-event-card__image {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.ails-events .ails-event-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.ails-events .ails-event-card__overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

.ails-events .ails-event-card__overlay h5 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.ails-events .ails-event-card:hover img {
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .ails-events__banner h1 {
    font-size: 28px;
  }

  .ails-events .ails-event-card__image {
    height: 220px;
  }
}

/* =================================
   AILS Contact Page
================================= */

.ails-contact {
  background: #f8f9fb;
}

.ails-contact__banner {
  background: #0b1f3a;
  color: #fff;
  padding: 70px 20px;
}

.ails-contact__banner h1 {
  font-size: 40px;
  font-weight: 700;
}

.ails-contact__banner p {
  font-size: 16px;
}

.ails-contact-info {
  background: #fff;
  padding: 35px;
  border-radius: 10px;
  border: 1px solid #eee;
  height: 100%;
}

.ails-contact-info h3 {
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: 600;
}

.ails-contact-info .contact-item {
  margin-bottom: 20px;
}

.ails-contact-info h6 {
  font-size: 14px;
  font-weight: 600;
  color: #0b1f3a;
  margin-bottom: 5px;
}

.ails-contact-info p,
.ails-contact-info a {
  color: #555;
  font-size: 15px;
  text-decoration: none;
}

.ails-contact-form {
  background: #fff;
  padding: 35px;
  border-radius: 10px;
  border: 1px solid #eee;
}

.ails-contact-form h3 {
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: 600;
}

.ails-contact-form .form-control,
.ails-contact-form .form-select {
  height: 48px;
  border-radius: 6px;
  font-size: 15px;
}

.ails-contact-form textarea.form-control {
  height: auto;
}

.ails-contact-btn {
  background: #f4c430;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s;
}

.ails-contact-btn:hover {
  background: #e2b21f;
}

.ails-contact__map iframe {
  display: block;
}

@media (max-width: 768px) {
  .ails-contact__banner h1 {
    font-size: 28px;
  }

  .ails-contact-info,
  .ails-contact-form {
    padding: 25px;
  }
}

.social-links .at-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 12px;
}

/* ------------------------------------- */
/* ----------Principal-message--------- */
/* ----------------------------------- */

.law-principal {
  background: var(--surface-light);
  padding: 80px 0;
}

.law-principal img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

.law-principal .col-lg-8 {
  background: var(--surface-base);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--line-subtle);
  transition: var(--transition);
}

.law-principal .col-lg-8:hover {
  transform: translateY(-4px);
}

.law-principal h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--brand-main);
  margin-bottom: 20px;
  position: relative;
}

.law-principal h3::after {
  content: "";
  width: 50px;
  height: 3px;
  background: var(--highlight-accent);
  position: absolute;
  left: 0;
  bottom: -8px;
}

.law-principal p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--content-secondary);
  margin-bottom: 15px;
  text-align: justify;
}

.law-principal h5 {
  margin-top: 25px;
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-deep);
}

.law-principal h5 + p {
  margin-top: 5px;
  font-size: 14px;
  color: var(--highlight-accent);
  font-weight: 600;
}

/* ----------------------------------------- */
/* ------------------Faculity-------------- */
/* --------------------------------------- */

/* ── Section ── */
.faculty-list {
  padding: 2.5rem 0 4rem;
  background: var(--surface-light);
}

/* ── Desktop only: sticky sidebar ── */
@media (min-width: 992px) {
  .faculty-list .fac-sidebar-col {
    position: sticky;
    top: 1.5rem;
    align-self: flex-start;
  }
}

/* ── Sidebar panel ── */
.faculty-list .list-faculity {
  background: var(--surface-base);
  border: 1px solid var(--line-subtle);
  border-radius: 12px;
  overflow: hidden;
}

.faculty-list .list-faculity .panel-heading {
  background: var(--brand-main);
  padding: 0.75rem 1.1rem;
}

.faculty-list .list-faculity .panel-heading h6 {
  color: var(--highlight-accent);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

.faculty-list .list-faculity .nav-pills {
  flex-direction: column;
  gap: 0;
}

@media (max-width: 991.98px) {
  .faculty-list .list-faculity .nav-pills {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .faculty-list .list-faculity .nav-pills::-webkit-scrollbar {
    display: none;
  }
  .faculty-list .list-faculity .nav-pills .nav-item {
    flex-shrink: 0;
  }
}

.faculty-list .list-faculity .nav-pills .nav-link {
  border-radius: 0;
  padding: 0.65rem 1.1rem;
  font-size: 13.5px;
  color: var(--content-primary);
  background: transparent;
  transition: var(--transition);
  text-align: left;
  white-space: nowrap;
  width: 100%;

  /* Desktop: left accent border */
  border-bottom: 1px solid var(--line-subtle);
  border-left: 3px solid transparent;
}

@media (min-width: 992px) {
  .faculty-list .list-faculity .nav-pills .nav-link:last-child {
    border-bottom: none;
  }
}

/* Mobile: bottom accent border instead */
@media (max-width: 991.98px) {
  .faculty-list .list-faculity .nav-pills .nav-link {
    border-left: none;
    border-bottom: 3px solid transparent;
    font-size: 13px;
    padding: 0.6rem 1rem;
  }
}

.faculty-list .list-faculity .nav-pills .nav-link:hover {
  background: var(--surface-muted);
  color: var(--brand-main);
}

@media (min-width: 992px) {
  .faculty-list .list-faculity .nav-pills .nav-link:hover {
    border-left-color: var(--highlight-accent);
  }
}

@media (max-width: 991.98px) {
  .faculty-list .list-faculity .nav-pills .nav-link:hover {
    border-bottom-color: var(--highlight-accent);
  }
}

/* Active state */
.faculty-list .list-faculity .nav-pills .nav-link.active {
  background: var(--surface-muted);
  color: var(--brand-main);
  font-weight: 500;
}

@media (min-width: 992px) {
  .faculty-list .list-faculity .nav-pills .nav-link.active {
    border-left-color: var(--highlight-accent);
  }
}

@media (max-width: 991.98px) {
  .faculty-list .list-faculity .nav-pills .nav-link.active {
    border-bottom-color: var(--highlight-accent);
  }
}

/* ── Details panel ── */
.faculty-list .tab-content {
  background: var(--surface-base);
  border: 1px solid var(--line-subtle);
  border-radius: 12px;
  padding: 1.5rem;
  min-height: 360px;
}

@media (max-width: 991.98px) {
  .faculty-list .tab-content {
    min-height: auto;
    margin-top: 1rem;
  }
}

/* Fade-in animation on tab show */
.faculty-list .tab-pane.show {
  animation: facFadeIn 0.25s ease;
}

@keyframes facFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faculty-list .fac-profile-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line-subtle);
}

.faculty-list .fac-imr {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--highlight-accent);
  background: var(--surface-muted);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faculty-list .fac-imr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.faculty-list .fac-imr .fac-initials {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand-main);
}

.faculty-list .fac-profile-header h5 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brand-main);
  margin: 0 0 0.2rem;
}

.faculty-list .fac-profile-header .fac-designation {
  font-size: 11.5px;
  color: var(--highlight-accent);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0;
}

.faculty-list .ponints-fac ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faculty-list .ponints-fac ul li {
  font-size: 13.5px;
  color: var(--content-secondary);
  line-height: 1.65;
  padding-left: 1.1rem;
  position: relative;
}

.faculty-list .ponints-fac ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--highlight-accent);
}

.faculty-list .fac-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  color: var(--content-secondary);
  font-size: 14px;
  gap: 0.5rem;
}

.faculty-list .fac-empty .fac-empty-icon {
  font-size: 2rem;
  opacity: 0.2;
  line-height: 1;
}

@media (max-width: 991.98px) {
  .faculty-list {
    padding: 1.5rem 0 3rem;
  }
}

.ponints-fac h5 {
  color: #2f1b1b;
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 0px;
  padding: 8px 0px;
}

/* ------------------------------- */
/* ---------Facilities-inside---- */
/* ----------------------------- */

.ails-facility {
  background: var(--surface-light);
}

.ails-facility,
.ails-facility__item {
  padding: 80px 0;
}

.ails-facility__header h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--brand-main);
  margin-bottom: 10px;
}

.ails-facility__header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--content-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.ails-facility__item {
  padding: 60px 0;
}

.ails-facility__img {
  text-align: center;
}

.ails-facility__img img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

/* Content alignment */
.ails-facility__content {
  padding: 20px 10px;
}

.ails-facility__content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--brand-deep);
}

.ails-facility__content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
  text-align: justify;
}

/* Continue text (full width below) */
.continue-lib-text {
  margin-top: 20px;
}

.continue-lib-text p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
  text-align: justify;
}

/* Proper vertical alignment */
.row.align-items-center {
  align-items: center;
}

/* Spacing between columns */
@media (max-width: 991px) {
  .ails-facility__content {
    margin-top: 20px;
    text-align: center;
  }

  .ails-facility__content p,
  .continue-lib-text p {
    text-align: justify;
  }
}

/* -------------------------------- */
/* ------------committee---------- */
/* ------------------------------ */

.ails-cells-section {
  background: #f9f9f9;
}

.ails-cells-section .ails-cells-header h2 {
  font-size: 30px;
  font-weight: 700;
  color: #2f1b1b;
  margin-bottom: 10px;
}

.ails-cells-section .ails-cells-header p {
  max-width: 650px;
  margin: 0 auto;
  color: #555;
  font-size: 15px;
}

.ails-cells-section .ails-cell-card {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 12px;
  height: 100%;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  position: relative;
}

.ails-cells-section .ails-cell-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: #c49a6c;
  border-radius: 12px 12px 0 0;
}

.ails-cells-section .ails-cell-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.ails-cells-section .ails-cell-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #4b2e2e;
  margin-bottom: 10px;
}

.ails-cells-section .ails-cell-card p {
  font-size: 14.5px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 767px) {
  .ails-cells-section .ails-cells-header h2 {
    font-size: 24px;
  }

  .ails-cells-section .ails-cell-card {
    padding: 20px 15px;
  }
}

.ails-cell-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 15px;
}

.ails-cell-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ails-cell-card:hover .ails-cell-img img {
  transform: scale(1.05);
}

/* --------------------------------- */
/* ------------Achivements--------- */
/* ------------------------------- */

.ails-achievements {
  background: #ffffff;
}

.ails-achievements-title {
  color: #2f1b1b;
  font-weight: 700;
}

.ails-achievements-subtitle {
  color: #666;
}

/* Card */
.ails-achievement-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(47, 27, 27, 0.1);
  transition: 0.3s ease;
}

.ails-achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Image */
.ails-achievement-img img {
  width: 100%;
  border-radius: 12px;
  border: 3px solid #c49a6c;
}

/* Content */
.ails-achievement-heading {
  color: #c49a6c;
  font-weight: 600;
  margin-bottom: 10px;
}

.ails-achievement-name {
  font-size: 28px;
  font-weight: 700;
  color: #2f1b1b;
  margin-bottom: 15px;
}

.ails-achievement-text {
  color: #444;
  line-height: 1.7;
}

/* Badge */
.ails-achievement-badge {
  display: inline-block;
  margin-top: 15px;
  padding: 6px 14px;
  background: #c49a6c;
  color: #fff;
  font-weight: 600;
  border-radius: 20px;
  font-size: 13px;
}

@media (max-width: 991px) {
  .ails-achievement-img {
    margin-bottom: 20px;
  }

  .ails-achievement-content {
    text-align: center;
  }


}
