@charset "UTF-8";


/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #212529;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2e0a13;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #7c3848;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --maroon-1: #7c3848;
  --maroon-2: #5c2b35;
  --maroon-3: #a04e5c;
  --navy: #0d1b3d;
  --maroon: #7c3848;
  --gold: #d4b26a;
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.6);
  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #7c3848;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f4f4f4;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

/* ---------- TOP BAR STYLING ---------- */
.topbar {
  background: #ffffff;
  /* background-color: #8B1C24;  */
  color: black;
  font-size: 14px;
  /* top:0;
  z-index: 10000; */

}

.topbar a {
  color: #fff;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
}

.topbar a:hover {
  opacity: 0.8;
}

.topbar-social a i {
  /* background: black; */
  background: var(--accent-color);
  padding: 8px;
  display: inline-flex;
  /* border-radius: 10px; */
  border-radius: 50%;
  color: white;
}

.topbar-info span {
  white-space: nowrap;
  font-size: 14px;
  font-weight: bold;
  color: var(--accent-color);
}

/* Responsive fix */
@media (max-width: 768px) {
  .topbar {
    text-align: center;
  }

  .topbar-social {
    justify-content: center;
    margin-bottom: 5px;
  }
}


.header {
  --background-color: #7c3848;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  /* padding: 10px 0; */
  transition: all 0.5s;
  z-index: 997;
}

header.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #7c3848;
  z-index: 9999;
  /* display: flex;
  align-items: center;
  justify-content: space-between; */
  transition: all 0.5s;
}


/* Shrink on scroll */
header.header.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  /* max-height: 32px;
  margin-right: 8px; */
  width: auto;
  height: 120px;
  object-fit: contain;
  /* object-fit: cover; */
  /* max-height: 100px; */
}

/* .header .logo i {
  font-size: 24px;
  margin-right: 10px;
} */

.header .logo h2 {
  font-size: 28px;
  margin: 0;
  max-width: 50px;
  font-weight: 400;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.sitename {
  font-size: 28px !important;
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    /* padding: 18px 15px;
    font-size: 14px; */
    padding: 8px 10px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);

  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);

  }


  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* ================================
   ACTIVE MENU BORDER BOTTOM (DESKTOP)
================================ */

/* Active main menu anchor */
.navmenu>ul>li>a.active {
  position: relative;
}

.navmenu>ul>li>a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
}

/* Active dropdown parent */
/* .navmenu > ul > li.dropdown.active > a {
  position: relative;
}

.navmenu > ul > li.dropdown.active > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color) !important; 

} */


/* Active dropdown CHILD only */
.navmenu .dropdown ul li>a.active {
  position: relative;
  color: var(--nav-dropdown-hover-color);
}

.navmenu .dropdown ul li>a.active::after {
  content: "";
  position: absolute;
  left: 20px;
  /* aligns with dropdown padding */
  bottom: 4px;
  width: calc(100% - 40px);
  height: 2px;
  background-color: #800020;
  /* Maroon */
}





/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }


  .navmenu>ul>li>a.active {
    border-bottom: 2px solid #ffffff;
  }
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

.footer {
  background: var(--maroon-2);
  /* color: #fff; */
  /* border-top: 4px solid rgba(255, 255, 255, 0.02); */
  /* background: #0e0e0e; */
  /* background-color: var(--accent-color); */
  color: #d5d5d5;
  font-size: 15px;
  /* margin-top: 20px; */
}

.logo-wrapper {
  /* gap: 12px; */
  text-decoration: none;
}

.school-logo {
  /* width: 100px;*/
  height: 120px;
  /* max-height: 100px; */
  width: auto;
  object-fit: contain;
  /* object-fit: cover; */
}

.sitename {
  /* font-size: 15px; */
  font-weight: 700 !important;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

/* Responsive Fix — Stack on mobile */
@media (max-width: 576px) {
  .logo-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .sitename {
    font-size: 18px;
  }

  /* .school-logo {
        width: 45px;
        height: 45px;
    } */
}


.footer h5 {
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 15px;
  position: relative;
}

.footer h5:after {
  content: "";
  width: 50px;
  height: 3px;
  /* background: #007bff; */
  /* background: var(--accent-color); */
  background: white;
  display: block;
  margin-top: 8px;
}

.footer a {
  color: #d5d5d5;
  text-decoration: none;
  /* color: rgba(255,255,255,0.85);  */
}

.footer a:hover {
  color: black;
  font-weight: bold;
  /* color: var(--accent-color); */
}

.footer .social-icons a {
  color: #fff;
  font-size: 20px !important;
  margin-right: 12px;
}

.footer-bottom {
  /* border-top: 1px solid #3b3b3b; */
  border-top: 1px solid white;
  /* margin-top: 5px; */
  text-align: center;
  /* color: #bfbfbf; */
  color: white;
}


.social-icons a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff !important;
  color: #000000 !important;
  text-decoration: none;
  transition: 0.3s ease;
}

/* Hover effect */
.social-icons a:hover {
  background: var(--accent-color) !important;
  color: #ffffff !important;
  transform: translateY(-3px);
}

.office-address {
  max-width: 90%;
}

/* Responsive */
/* @media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .footer h5:after {
    margin-left: auto;
    margin-right: auto;
  }
} */



/* .footer-16 {
  background: var(--background-color);
  color: var(--default-color);
  font-size: 15px;
  padding: 100px 0 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.footer-16 .footer-main {
  margin-bottom: 80px;
}

.footer-16 .brand-section .logo {
  text-decoration: none;
}

.footer-16 .logo img {
  width: auto;
  max-height: 100px;
}

.footer-16 .brand-section .logo .sitename {
  font-family: var(--heading-font);
  font-size: 32px;
  font-weight: 300;
  color: var(--heading-color);
  letter-spacing: -0.5px;
}

.footer-16 .brand-section .brand-description {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-weight: 300;
  max-width: 380px;
  margin: 0;
}

.footer-16 .brand-section .contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.footer-16 .brand-section .contact-info .contact-item i {
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-16 .brand-section .contact-info .contact-item span {
  line-height: 1.6;
}

.footer-16 .footer-nav-wrapper {
  padding-left: 60px;
}

@media (max-width: 991px) {
  .footer-16 .footer-nav-wrapper {
    padding-left: 0;
    margin-top: 50px;
  }
}

.footer-16 .nav-column {
  margin-bottom: 40px;
}

.footer-16 .nav-column h6 {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.footer-16 .nav-column .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-16 .nav-column .footer-nav a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  transition: all 0.3s ease;
  line-height: 1.4;
}

.footer-16 .nav-column .footer-nav a:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}

.footer-16 .footer-social {
  padding: 50px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.footer-16 .footer-social .newsletter-section h5 {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.footer-16 .footer-social .newsletter-section p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin: 0;
  line-height: 1.6;
  max-width: 340px;
}

.footer-16 .footer-social .social-section {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .footer-16 .footer-social .social-section {
    justify-content: flex-start;
    margin-top: 30px;
  }
}

.footer-16 .footer-social .social-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

@media (max-width: 576px) {
  .footer-16 .footer-social .social-links {
    gap: 20px;
    flex-wrap: wrap;
  }
}

.footer-16 .footer-social .social-links .social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.footer-16 .footer-social .social-links .social-link i {
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-16 .footer-social .social-links .social-link span {
  transition: all 0.3s ease;
}

.footer-16 .footer-social .social-links .social-link:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.footer-16 .footer-social .social-links .social-link:hover i {
  transform: scale(1.1);
}

.footer-16 .footer-bottom {
  padding: 30px 0;
}

.footer-16 .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  font-weight: 300;
  text-align: center !important;
}

.footer-16 .footer-bottom .copyright p .sitename {
  color: var(--heading-color);
  font-weight: 400;
}

.footer-16 .footer-bottom .legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

@media (max-width: 991px) {
  .footer-16 .footer-bottom .legal-links {
    justify-content: flex-start;
    margin-top: 20px;
    flex-wrap: wrap;
  }
}

.footer-16 .footer-bottom .legal-links a {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s ease;
}

.footer-16 .footer-bottom .legal-links a:hover {
  color: var(--accent-color);
}

.footer-16 .footer-bottom .legal-links .credits {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-left: 8px;
  padding-left: 24px;
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .footer-16 .footer-bottom .legal-links .credits {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    width: 100%;
    margin-top: 12px;
  }
}

.footer-16 .footer-bottom .legal-links .credits a {
  color: var(--accent-color);
  font-size: 12px;
}

.footer-16 .footer-bottom .legal-links .credits a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-16 {
    padding: 70px 0 0;
  }

  .footer-16 .brand-section {
    text-align: center;
    margin-bottom: 50px;
  }

  .footer-16 .brand-section .brand-description {
    max-width: none;
  }

  .footer-16 .brand-section .contact-info {
    text-align: left;
    display: inline-block;
  }

  .footer-16 .footer-nav-wrapper .nav-column {
    text-align: left;
  }

  .footer-16 .footer-nav-wrapper .nav-column h6 {
    margin-bottom: 16px;
  }

  .footer-16 .footer-nav-wrapper .nav-column .footer-nav {
    gap: 10px;
  }

  .footer-16 .footer-social {
    text-align: center;
  }

  .footer-16 .footer-social .newsletter-section p {
    max-width: none;
  }

  .footer-16 .footer-social .social-links {
    justify-content: center;
  }

  .footer-16 .footer-bottom {
    text-align: center;
  }

  .footer-16 .footer-bottom .legal-links {
    justify-content: center;
  }
} */

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  /* background-color: color-mix(in srgb, var(--default-color), transparent 96%); */
  /* padding: 20px 0; */
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 500;

}


.page-title nav ol li+li {
  /* padding-left: 10px; */
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.bg-image {
  position: relative;
  /* height: 350px; */
  min-height: 80vh;
  background-image: url('../img/campus-2.jpg');
  background-size: cover;
  background-position: center;
  /* background-attachment: fixed; */
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

nav.breadcrumbs {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  /* padding: 60px 0; */
  padding: 10px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  /* padding-bottom: 60px; */
  position: relative;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero .hero-container {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../img/buiding-img.jpg") center/cover no-repeat;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--contrast-color);
  /* padding: 120px 20px; */
  /* padding: 55px 20px; */
  position: relative;
}

.hero .hero-container .hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero .hero-container .hero-content h1 {
  font-size: 3.5rem;
  /* font-size: 3.2rem; */
  font-weight: 700;
  /* margin-bottom: 20px; */
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .hero .hero-container .hero-content h1 {
    font-size: 2.5rem;
  }
}

.hero .hero-container .hero-content p {
  font-size: 1.25rem;
  margin-bottom: 25px;
}

@media (max-width: 768px) {
  .hero .hero-container .hero-content p {
    font-size: 1.1rem;
  }
}

.hero .hero-container .hero-content .cta-buttons {
  margin-bottom: 30px;
}

.hero .hero-container .hero-content .cta-buttons a {
  display: inline-block;
  /* padding: 12px 30px; */
  margin: 0 10px;
  /* border-radius: 50px; */
  /* font-weight: 600; */
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .hero .hero-container .hero-content .cta-buttons a {
    display: block;
    margin: 10px auto;
    max-width: 200px;
  }
}

.hero .hero-container .hero-content .cta-buttons .btn-apply {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 25px;
}

.hero .hero-container .hero-content .cta-buttons .btn-apply:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  /* background-color: white; */
  /* color: var(--accent-color); */
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  /* border: 5px solid var(--accent-color); */
}

.hero .hero-container .hero-content .cta-buttons .btn-tour {
  background-color: transparent;
  color: var(--contrast-color);
  border: 2px solid var(--contrast-color);
  padding: 8px 20px;
}

.hero .hero-container .hero-content .cta-buttons .btn-tour:hover {
  background-color: var(--contrast-color);
  /* color: var(--heading-color); */
  color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero .hero-container .hero-content .announcement {
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 8px;
  padding: 15px 20px;
  display: inline-flex;
  align-items: center;
}

.hero .hero-container .hero-content .announcement .announcement-badge {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-right: 15px;
  text-transform: uppercase;
}

.hero .hero-container .hero-content .announcement p {
  margin: 0;
  font-size: 1rem;
}

.hero .highlights-container {
  margin-top: -70px;
  position: relative;
  z-index: 10;
}

.hero .highlights-container .highlight-item {
  background-color: var(--surface-color);
  border-radius: 8px;
  padding: 30px 25px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.hero .highlights-container .highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.hero .highlights-container .highlight-item .icon {
  font-size: 2.5rem;
  height: 70px;
  width: 70px;
  line-height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.hero .highlights-container .highlight-item h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero .highlights-container .highlight-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .event-banner {
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  padding: 25px 0;
  margin-top: 40px;
}

.hero .event-banner .event-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-align: center;
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.hero .event-banner .event-date .month {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero .event-banner .event-date .day {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero .event-banner h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.hero .event-banner p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.hero .event-banner .btn-register {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
}

.hero .event-banner .btn-register:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .hero .event-banner .btn-register {
    margin-top: 15px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero .event-banner {
    text-align: center;
  }

  .hero .event-banner .event-date {
    margin: 0 auto 15px;
    max-width: 100px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content {
  padding: 20px 0;
}

.about .content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about .content>p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.about .stats-row {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.about .stats-row .stat-item {
  text-align: center;
}

.about .stats-row .stat-item .number {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
  margin-bottom: 5px;
}

.about .stats-row .stat-item .label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 576px) {
  .about .stats-row {
    gap: 20px;
  }

  .about .stats-row .stat-item {
    flex: 1;
    min-width: 80px;
  }
}

.about .mission-statement {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
  margin-bottom: 35px;
}

.about .mission-statement p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--heading-color);
}

.about .btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.about .btn-learn-more:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.about .btn-learn-more i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.about .btn-learn-more:hover i {
  transform: translateX(3px);
}

.about .image-wrapper {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.about .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .image-wrapper img:hover {
  transform: scal(1.05);
}

.about .image-wrapper .experience-badge {
  position: absolute;
  /* bottom: 30px;
  left: 30px; */
  bottom: -40px;
  right: 20px;
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px color-mix(in srgb, var(--default-color), transparent 80%);
  border: 3px solid var(--accent-color);
}

.about .image-wrapper .experience-badge .years {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
  margin-bottom: 5px;
}

.about .image-wrapper .experience-badge .text {
  font-size: 12px;
  color: var(--heading-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .about .content {
    margin-bottom: 30px;
  }

  .about .content h3 {
    font-size: 28px;
  }

  .about .image-wrapper {
    min-height: 350px;
  }

  .about .image-wrapper .experience-badge {
    bottom: 20px;
    left: 20px;
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .about .content h3 {
    font-size: 24px;
  }

  .about .stats-row {
    justify-content: center;
  }

  .about .mission-statement {
    padding: 20px;
  }

  .about .image-wrapper {
    min-height: 300px;
  }
}

/*--------------------------------------------------------------
# Featured Programs Section
--------------------------------------------------------------*/
.featured-programs {
  padding: 80px 0;
  background: linear-gradient(45deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 98%));
}

.featured-programs .featured-programs-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.featured-programs .programs-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.featured-programs .programs-overview .overview-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 24px;
  color: var(--heading-color);
  line-height: 1.2;
}

.featured-programs .programs-overview .overview-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 40px;
}

.featured-programs .programs-overview .overview-content .overview-stats {
  display: flex;
  gap: 40px;
}

.featured-programs .programs-overview .overview-content .overview-stats .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 200;
  color: var(--accent-color);
  line-height: 1;
}

.featured-programs .programs-overview .overview-content .overview-stats .stat-item .stat-label {
  display: block;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 8px;
  font-weight: 500;
}

.featured-programs .programs-overview .overview-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--heading-color), transparent 88%);
}

.featured-programs .programs-overview .overview-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-programs .programs-overview .overview-image:hover img {
  transform: scale(1.05);
}

.featured-programs .programs-showcase {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.featured-programs .featured-program {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px color-mix(in srgb, var(--heading-color), transparent 92%);
  transition: all 0.5s ease;
  border: 1px solid color-mix(in srgb, var(--heading-color), transparent 95%);
}

.featured-programs .featured-program:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px color-mix(in srgb, var(--heading-color), transparent 85%);
}

.featured-programs .featured-program .card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.featured-programs .featured-program .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.featured-programs .featured-program .card-image:hover img {
  transform: scale(1.08);
}

.featured-programs .featured-program .card-image .program-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--surface-color);
  color: var(--accent-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--heading-color), transparent 85%);
}

.featured-programs .featured-program .card-image .program-badge i {
  font-size: 0.9rem;
}

.featured-programs .featured-program .card-content {
  padding: 32px 28px;
}

.featured-programs .featured-program .card-content .program-category {
  color: var(--accent-color);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.featured-programs .featured-program .card-content h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--heading-color);
  line-height: 1.3;
}

.featured-programs .featured-program .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.featured-programs .featured-program .card-content .program-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
}

.featured-programs .featured-program .card-content .program-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.featured-programs .featured-program .card-content .program-meta .meta-item i {
  color: var(--accent-color);
  font-size: 0.9rem;
}

.featured-programs .featured-program .card-content .program-meta .meta-item span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.featured-programs .featured-program .card-content .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.featured-programs .featured-program .card-content .card-footer .learn-more {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.featured-programs .featured-program .card-content .card-footer .learn-more:hover {
  color: color-mix(in srgb, var(--accent-color), #000 20%);
  transform: translateX(3px);
}

.featured-programs .featured-program .card-content .card-footer .enrollment {
  display: flex;
  align-items: center;
  gap: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 0.85rem;
}

.featured-programs .featured-program .card-content .card-footer .enrollment i {
  font-size: 0.9rem;
}

.featured-programs .programs-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.featured-programs .program-item {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.4s ease;
  border: 1px solid color-mix(in srgb, var(--heading-color), transparent 95%);
  cursor: pointer;
}

.featured-programs .program-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--heading-color), transparent 90%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.featured-programs .program-item:hover .item-action i {
  color: var(--accent-color);
  transform: translateX(4px);
}

.featured-programs .program-item .item-visual {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.featured-programs .program-item .item-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-programs .program-item .item-details {
  flex: 1;
}

.featured-programs .program-item .item-details .item-category {
  color: var(--accent-color);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.featured-programs .program-item .item-details h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--heading-color);
  line-height: 1.3;
}

.featured-programs .program-item .item-details p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.featured-programs .program-item .item-details .item-info {
  display: flex;
  gap: 16px;
}

.featured-programs .program-item .item-details .item-info span {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

.featured-programs .program-item .item-action {
  margin-left: 16px;
}

.featured-programs .program-item .item-action i {
  font-size: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: all 0.3s ease;
}

@media (max-width: 992px) {
  .featured-programs {
    padding: 60px 0;
  }

  .featured-programs .programs-overview {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }

  .featured-programs .programs-overview .overview-content {
    order: 2;
  }

  .featured-programs .programs-overview .overview-content h2 {
    font-size: 2rem;
  }

  .featured-programs .programs-overview .overview-content .overview-stats {
    justify-content: space-between;
    gap: 20px;
  }

  .featured-programs .programs-overview .overview-image {
    order: 1;
  }

  .featured-programs .programs-overview .overview-image img {
    height: 300px;
  }

  .featured-programs .programs-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .featured-programs .overview-content .overview-stats {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .featured-programs .featured-program .card-content {
    padding: 24px 20px;
  }

  .featured-programs .program-item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .featured-programs .program-item .item-visual {
    width: 120px;
    height: 120px;
  }

  .featured-programs .program-item .item-action {
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .featured-programs {
    padding: 40px 0;
  }

  .featured-programs .programs-overview {
    margin-bottom: 40px;
  }

  .featured-programs .programs-overview .overview-content h2 {
    font-size: 1.8rem;
  }

  .featured-programs .programs-overview .overview-image img {
    height: 250px;
  }

  .featured-programs .programs-showcase {
    gap: 30px;
  }
}

/*--------------------------------------------------------------
# Students Life Block Section
--------------------------------------------------------------*/
.students-life-block .content-wrapper .section-tag {
  display: inline-block;
  /* font-size: 0.875rem; */
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  position: relative;
}

.students-life-block .content-wrapper .section-tag::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
}

.students-life-block .content-wrapper h2 {
  /* font-size: 2.75rem; */
  font-size: 2.55rem;
  /* font-weight: 300; */
  /* line-height: 1.3; */
  /* margin-bottom: 2rem; */
  /* color: var(--heading-color); */
}

/* @media (max-width: 768px) {
  .students-life-block .content-wrapper h2 {
    font-size: 2.25rem;
  }
} */

.students-life-block .content-wrapper .description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 3rem;
}

.students-life-block .stats-row {
  display: flex;
  gap: 3rem;
  margin-bottom: 2rem;
}

.students-life-block .stats-row .stat-item {
  display: flex;
  flex-direction: column;
}

.students-life-block .stats-row .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.students-life-block .stats-row .stat-item .stat-label {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 300;
}

@media (max-width: 576px) {
  .students-life-block .stats-row {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* .students-life-block .action-links .primary-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem;
  position: relative;
  transition: all 0.3s ease;

}

.students-life-block .action-links .primary-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.students-life-block .action-links .primary-link:hover {
  color: var(--accent-color);
}

.students-life-block .action-links .primary-link:hover::after {
  width: 100%;
} */

.students-life-block .visual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  height: 100%;
}

.students-life-block .visual-grid .main-visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.students-life-block .visual-grid .main-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.students-life-block .visual-grid .main-visual:hover img {
  transform: scale(1.05);
}

.students-life-block .visual-grid .main-visual .overlay-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  background: var(--surface-color);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.students-life-block .visual-grid .main-visual .overlay-badge i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.students-life-block .visual-grid .main-visual .overlay-badge span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--heading-color);
}

.students-life-block .visual-grid .secondary-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.students-life-block .visual-grid .secondary-visuals .small-visual {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.students-life-block .visual-grid .secondary-visuals .small-visual img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.students-life-block .visual-grid .secondary-visuals .small-visual:hover img {
  transform: scale(1.1);
}

.students-life-block .visual-grid .secondary-visuals .small-visual:hover .visual-caption {
  opacity: 1;
  transform: translateY(0);
}

.students-life-block .visual-grid .secondary-visuals .small-visual .visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem 1.5rem 1.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.students-life-block .visual-grid .secondary-visuals .small-visual .visual-caption span {
  color: var(--contrast-color);
  font-size: 0.9rem;
  font-weight: 500;
}

.students-life-block .highlights-section {
  margin-top: 6rem;
}

.students-life-block .highlights-section .highlight-card {
  background: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.students-life-block .highlights-section .highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.students-life-block .highlights-section .highlight-card .highlight-image {
  overflow: hidden;
}

.students-life-block .highlights-section .highlight-card .highlight-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.students-life-block .highlights-section .highlight-card:hover .highlight-image img {
  transform: scale(1.1);
}

.students-life-block .highlights-section .highlight-card .highlight-content {
  padding: 2rem;
}

.students-life-block .highlights-section .highlight-card .highlight-content h5 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.students-life-block .highlights-section .highlight-card .highlight-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

@media (max-width: 991.98px) {
  .students-life-block .content-wrapper {
    margin-bottom: 2rem;
  }

  .students-life-block .visual-grid .main-visual img {
    height: 300px;
  }

  .students-life-block .visual-grid .secondary-visuals .small-visual img {
    height: 140px;
  }

  .students-life-block .highlights-section {
    margin-top: 4rem;
  }
}

@media (max-width: 768px) {
  .students-life-block .stats-row {
    justify-content: center;
    text-align: center;
  }

  .students-life-block .visual-grid .main-visual .overlay-badge {
    top: 20px;
    right: 20px;
    padding: 0.75rem 1.25rem;
  }

  .students-life-block .visual-grid .secondary-visuals {
    grid-template-columns: 1fr;
  }

  .students-life-block .visual-grid .secondary-visuals .small-visual img {
    height: 200px;
  }

  .students-life-block .highlights-section {
    margin-top: 3rem;
  }

  .students-life-block .highlights-section .highlight-card .highlight-content {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .students-life-block .visual-grid .main-visual .overlay-badge {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 1rem;
    display: inline-flex;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-slider {
  width: 100%;
  position: relative;
  padding-bottom: 60px;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
}

@media (max-width: 575px) {
  .testimonials .testimonial-item {
    padding: 20px;
  }
}

.testimonials .testimonial-item h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonials .testimonial-item .profile {
  gap: 15px;
}

.testimonials .testimonial-item .profile .profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials .testimonial-item .profile .profile-info h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

.testimonials .testimonial-item .profile .profile-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
}

.testimonials .testimonial-item .featured-img-wrapper {
  min-height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.testimonials .testimonial-item .featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonials .swiper-navigation {
  position: absolute;
  bottom: 0;
  gap: 10px;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
  width: 44px;
  height: 44px;
  background-color: var(--surface-color);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: 0.3s;
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 20px;
  color: var(--default-color);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.testimonials .swiper-button-prev:hover::after,
.testimonials .swiper-button-next:hover::after {
  color: var(--contrast-color);
}


/* ===== Play / Pause Button (Very High z-index) ===== */
/* .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 99 !important;
  display: flex;  
  justify-content: center;
  align-items: center;
} */

/* ===== Move Prev & Next outward so they NEVER overlap center ===== */
/* .swiper-button-prev {
  left: 20%;
}

.swiper-button-next {
  right: 20%;
} */

/* For mobile adjust buttons */
/* @media (max-width: 768px) {
  .swiper-button-prev {
    left: 5%;
  }

  .swiper-button-next {
    right: 5%;
  }
} */


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background: linear-gradient(145deg, var(--surface-color) 0%, color-mix(in srgb, var(--background-color), var(--accent-color) 2%) 100%);
  position: relative;
  /* padding: 100px 0; */
}

@media (max-width: 768px) {
  /* .call-to-action {
    padding: 80px 0;
  } */
}

.call-to-action .content-wrapper {
  max-width: 480px;
}

@media (max-width: 991px) {
  .call-to-action .content-wrapper {
    max-width: 100%;
    /* margin-bottom: 60px; */
  }
}

.call-to-action .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  /* margin-bottom: 24px; */
}

.call-to-action .badge i {
  font-size: 1rem;
}

.call-to-action h2 {
  font-size: 3rem;
  /* font-weight: 300; */
  line-height: 1.2;
  margin-bottom: 24px;
  /* color: var(--heading-color); */
}

@media (max-width: 768px) {
  .call-to-action h2 {
    font-size: 2.25rem;
  }
}

.call-to-action p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 40px;
}

.call-to-action .highlight-stats {
  margin-bottom: 48px;
}

.call-to-action .highlight-stats .stat-group {
  display: flex;
  gap: 48px;
}

@media (max-width: 576px) {
  .call-to-action .highlight-stats .stat-group {
    flex-direction: column;
    gap: 24px;
  }
}

.call-to-action .highlight-stats .stat-item .number {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 4px;
}

.call-to-action .highlight-stats .stat-item .number::after {
  content: "+";
  font-size: 1.5rem;
}

.call-to-action .highlight-stats .stat-item .label {
  font-size: 0.875rem;
  color: var(--heading-color);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.call-to-action .action-buttons {
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (max-width: 576px) {
  .call-to-action .action-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.call-to-action .action-buttons .btn-primary {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.call-to-action .action-buttons .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--contrast-color);
}

.call-to-action .action-buttons .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.call-to-action .action-buttons .btn-secondary:hover {
  color: color-mix(in srgb, var(--accent-color), black 10%);
}

.call-to-action .action-buttons .btn-secondary:hover i {
  transform: translateX(4px);
}

.call-to-action .action-buttons .btn-secondary i {
  transition: transform 0.3s ease;
}

.call-to-action .visual-section {
  position: relative;
  height: 500px;
}

@media (max-width: 991px) {
  .call-to-action .visual-section {
    height: 400px;
  }
}

@media (max-width: 576px) {
  .call-to-action .visual-section {
    height: 300px;
  }
}

.call-to-action .main-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.call-to-action .main-image-container .main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.call-to-action .main-image-container .overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, transparent 50%);
}

.call-to-action .feature-cards {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.call-to-action .feature-cards .feature-card {
  position: absolute;
  background: var(--surface-color);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--heading-color), transparent 90%);
  backdrop-filter: blur(12px);
  min-width: 200px;
}

@media (max-width: 768px) {
  .call-to-action .feature-cards .feature-card {
    padding: 16px;
    min-width: 180px;
  }
}

.call-to-action .feature-cards .feature-card.achievement {
  top: 20px;
  right: 20px;
}

@media (max-width: 768px) {
  .call-to-action .feature-cards .feature-card.achievement {
    top: 15px;
    right: 15px;
  }
}

.call-to-action .feature-cards .feature-card.flexibility {
  bottom: 120px;
  left: -20px;
}

@media (max-width: 768px) {
  .call-to-action .feature-cards .feature-card.flexibility {
    left: -10px;
    bottom: 100px;
  }
}

.call-to-action .feature-cards .feature-card.community {
  bottom: 20px;
  right: 40px;
}

@media (max-width: 768px) {
  .call-to-action .feature-cards .feature-card.community {
    right: 20px;
    bottom: 15px;
  }
}

.call-to-action .feature-cards .feature-card .icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.call-to-action .feature-cards .feature-card .icon i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.call-to-action .feature-cards .feature-card .content h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.call-to-action .feature-cards .feature-card .content p {
  font-size: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  line-height: 1.4;
}

/*--------------------------------------------------------------
# Recent News Section
--------------------------------------------------------------*/
.recent-news .post-box {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.recent-news .post-box .post-img {
  overflow: hidden;
  position: relative;
}

.recent-news .post-box .post-img img {
  transition: 0.5s;
}

.recent-news .post-box .meta {
  margin-top: 15px;
}

.recent-news .post-box .meta .post-date {
  font-size: 15px;
  font-weight: 400;
  color: var(--accent-color);
}

.recent-news .post-box .meta .post-author {
  font-size: 15px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-news .post-box .post-title {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 700;
  margin: 15px 0 0 0;
  position: relative;
  transition: 0.3s;
}

.recent-news .post-box p {
  margin: 15px 0 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-news .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  margin-top: 15px;
}

.recent-news .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}

.recent-news .post-box:hover .post-title {
  color: var(--accent-color);
}

.recent-news .post-box:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .section-title {
  margin-bottom: 3rem;
}

.events .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.events .section-title p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.events .event-filters .form-select {
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.events .event-filters .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.events .event-card {
  display: flex;
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.events .event-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.events .event-card .event-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-align: center;
  min-width: 100px;
}

.events .event-card .event-date .month {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.events .event-card .event-date .day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin: 0.5rem 0;
}

.events .event-card .event-date .year {
  font-size: 0.9rem;
}

.events .event-card .event-content {
  padding: 1.5rem;
  flex: 1;
}

.events .event-card .event-content h3 {
  font-size: 1.3rem;
  margin: 0.5rem 0;
  font-weight: 600;
}

.events .event-card .event-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.events .event-card .event-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.events .event-card .event-tag.academic {
  background-color: #e3f2fd;
  color: #0d47a1;
}

.events .event-card .event-tag.sports {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.events .event-card .event-tag.arts {
  background-color: #ffebee;
  color: #c62828;
}

.events .event-card .event-tag.community {
  background-color: #fff3e0;
  color: #e65100;
}

.events .event-card .event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.events .event-card .event-meta .meta-item {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.9rem;
}

.events .event-card .event-meta .meta-item i {
  margin-right: 0.5rem;
  font-size: 1rem;
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.events .event-card .event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.events .event-card .event-actions .btn-learn-more {
  padding: 0.5rem 1.25rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s;
}

.events .event-card .event-actions .btn-learn-more:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.events .event-card .event-actions .btn-calendar {
  padding: 0.5rem 1rem;
  background-color: transparent;
  color: var(--accent-color);
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
}

.events .event-card .event-actions .btn-calendar i {
  margin-right: 0.3rem;
}

.events .event-card .event-actions .btn-calendar:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.events .btn-view-all {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
}

.events .btn-view-all:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .events .event-card {
    flex-direction: column;
  }

  .events .event-card .event-date {
    flex-direction: row;
    padding: 1rem;
    gap: 0.5rem;
    min-width: auto;
  }

  .events .event-card .event-date .month,
  .events .event-card .event-date .day,
  .events .event-card .event-date .year {
    margin: 0;
  }

  .events .event-card .event-date .day {
    font-size: 1.5rem;
    margin: 0 0.3rem;
  }

  .events .event-actions {
    flex-direction: column;
  }
}

/*--------------------------------------------------------------
# History Section
--------------------------------------------------------------*/
.history {
  padding: 100px 0;
}

.history .section-badge {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
}

.history .section-badge::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-color) 0%, transparent 100%);
}

.history .hero-content {
  margin-bottom: 80px;
}

.history .hero-content .hero-title {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

@media (max-width: 992px) {
  .history .hero-content .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .history .hero-content .hero-title {
    font-size: 2rem;
  }
}

.history .hero-content .hero-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.history .section-heading {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (max-width: 992px) {
  .history .section-heading {
    font-size: 2rem;
  }
}

.history .section-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 2rem;
}

.history .leadership-showcase {
  margin-bottom: 100px;
}

.history .leadership-showcase .leadership-content {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .history .leadership-showcase .leadership-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}

.history .leadership-showcase .leader-profile {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 100%);
  border-radius: 2px;
}

.history .leadership-showcase .leader-profile .profile-image {
  flex-shrink: 0;
}

.history .leadership-showcase .leader-profile .profile-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.history .leadership-showcase .leader-profile .profile-info h4 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}

.history .leadership-showcase .leader-profile .profile-info .title {
  display: block;
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.history .leadership-showcase .leader-profile .profile-info .bio {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.history .leadership-showcase .faculty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.history .leadership-showcase .faculty-grid .faculty-member {
  text-align: center;
}

.history .leadership-showcase .faculty-grid .faculty-member:first-child {
  grid-column: 1/-1;
}

.history .leadership-showcase .faculty-grid .faculty-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--surface-color);
}

.history .leadership-showcase .faculty-grid .faculty-member .member-info h5 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}

.history .leadership-showcase .faculty-grid .faculty-member .member-info span {
  font-size: 0.875rem;
  color: var(--accent-color);
  font-weight: 400;
}

.history .values-section {
  margin-bottom: 100px;
}

.history .values-section .values-header {
  margin-bottom: 60px;
}

.history .values-section .value-block {
  padding: 3rem 2rem;
  height: 100%;
  position: relative;
  transition: all 0.4s ease;
}

.history .values-section .value-block:hover .value-number {
  color: var(--accent-color);
  transform: scale(1.1);
}

.history .values-section .value-block .value-number {
  font-size: 4rem;
  font-weight: 100;
  color: color-mix(in srgb, var(--default-color), transparent 85%);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.history .values-section .value-block h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.history .values-section .value-block p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.history .values-section .value-block::after {
  content: "";
  position: absolute;
  right: 0;
  top: 3rem;
  bottom: 3rem;
  width: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 992px) {
  .history .values-section .value-block::after {
    display: none;
  }
}

.history .values-section .value-block:last-child::after {
  display: none;
}

.history .accomplishments-section .campus-visual {
  position: relative;
}

.history .accomplishments-section .campus-visual .main-image {
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.history .accomplishments-section .campus-visual .floating-stats {
  position: absolute;
  bottom: -20px;
  right: 20px;
}

@media (max-width: 992px) {
  .history .accomplishments-section .campus-visual .floating-stats {
    position: static;
    margin-top: 2rem;
    text-align: center;
  }
}

.history .accomplishments-section .campus-visual .floating-stats .stat-card {
  background: var(--contrast-color);
  padding: 1.5rem 2rem;
  border-radius: 2px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 180px;
}

.history .accomplishments-section .campus-visual .floating-stats .stat-card .stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 200;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.history .accomplishments-section .campus-visual .floating-stats .stat-card .stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--heading-color);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.history .accomplishments-section .accomplishments-content {
  padding-left: 4rem;
}

@media (max-width: 992px) {
  .history .accomplishments-section .accomplishments-content {
    padding-left: 0;
    margin-top: 3rem;
  }
}

.history .accomplishments-section .achievements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.history .accomplishments-section .achievements-grid .achievement-item {
  text-align: left;
}

.history .accomplishments-section .achievements-grid .achievement-item .achievement-number {
  display: block;
  font-size: 2.25rem;
  font-weight: 200;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.history .accomplishments-section .achievements-grid .achievement-item .achievement-desc {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-weight: 400;
}

.history .accomplishments-section .credentials .credential-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.history .accomplishments-section .credentials .credential-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.history .accomplishments-section .credentials .credential-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

@media (max-width: 768px) {
  .history {
    padding: 60px 0;
  }

  .history .leadership-showcase,
  .history .values-section {
    margin-bottom: 60px;
  }

  .history .values-section .value-block {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
  }

  .history .accomplishments-section .achievements-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Leadership Section
--------------------------------------------------------------*/
.leadership .intro-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.leadership .intro-section .content-wrapper .intro-label {
  display: inline-block;
  color: var(--accent-color);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}

.leadership .intro-section .content-wrapper .intro-label::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: var(--accent-color);
}

.leadership .intro-section .content-wrapper .intro-title {
  font-family: var(--heading-font);
  font-size: 3rem;
  font-weight: 300;
  color: var(--heading-color);
  line-height: 1.2;
  margin-bottom: 30px;
}

.leadership .intro-section .content-wrapper .intro-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 0;
}

.leadership .leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 80px;
}

.leadership .leadership-grid .featured-leader .leader-image-large {
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
}

.leadership .leadership-grid .featured-leader .leader-image-large img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.leadership .leadership-grid .featured-leader .leader-details h3 {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.leadership .leadership-grid .featured-leader .leader-details .leader-title {
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 500;
  display: block;
  margin-bottom: 25px;
}

.leadership .leadership-grid .featured-leader .leader-details .leader-bio {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 35px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.leadership .leadership-grid .featured-leader .leader-details .leader-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 35px;
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.leadership .leadership-grid .featured-leader .leader-details .leader-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.leadership .leadership-grid .featured-leader .leader-details .leader-stats .stat-item .stat-number {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.leadership .leadership-grid .featured-leader .leader-details .leader-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.leadership .leadership-grid .featured-leader .leader-details .social-connect {
  display: flex;
  gap: 15px;
}

.leadership .leadership-grid .featured-leader .leader-details .social-connect .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 50%;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.leadership .leadership-grid .featured-leader .leader-details .social-connect .social-link:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.leadership .leadership-grid .leadership-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.leadership .leadership-grid .leadership-team-grid .team-member .member-photo {
  position: relative;
  margin-bottom: 25px;
  border-radius: 8px;
  overflow: hidden;
}

.leadership .leadership-grid .leadership-team-grid .team-member .member-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.leadership .leadership-grid .leadership-team-grid .team-member .member-photo .member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
}

.leadership .leadership-grid .leadership-team-grid .team-member .member-photo .member-overlay .member-social {
  display: flex;
  gap: 10px;
}

.leadership .leadership-grid .leadership-team-grid .team-member .member-photo .member-overlay .member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.leadership .leadership-grid .leadership-team-grid .team-member .member-photo .member-overlay .member-social a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.leadership .leadership-grid .leadership-team-grid .team-member .member-photo:hover .member-overlay {
  opacity: 1;
}

.leadership .leadership-grid .leadership-team-grid .team-member .member-photo:hover img {
  transform: scale(1.05);
}

.leadership .leadership-grid .leadership-team-grid .team-member .member-info h4 {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.leadership .leadership-grid .leadership-team-grid .team-member .member-info .member-role {
  color: var(--accent-color);
  font-size: 0.95rem;
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
}

.leadership .leadership-grid .leadership-team-grid .team-member .member-info .member-description {
  font-size: 0.95rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

.leadership .leadership-philosophy {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 60px 40px;
  border-radius: 8px;
  text-align: center;
}

.leadership .leadership-philosophy .philosophy-content {
  max-width: 700px;
  margin: 0 auto;
}

.leadership .leadership-philosophy .philosophy-content h3 {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 25px;
}

.leadership .leadership-philosophy .philosophy-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 40px;
}

.leadership .leadership-philosophy .philosophy-content .philosophy-points {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.leadership .leadership-philosophy .philosophy-content .philosophy-points .point {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.leadership .leadership-philosophy .philosophy-content .philosophy-points .point i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.leadership .leadership-philosophy .philosophy-content .philosophy-points .point span {
  font-size: 0.95rem;
  color: var(--default-color);
  text-align: center;
  max-width: 140px;
}

@media (max-width: 992px) {
  .leadership .intro-section {
    margin-bottom: 60px;
  }

  .leadership .intro-section .content-wrapper .intro-title {
    font-size: 2.2rem;
  }

  .leadership .intro-section .content-wrapper .intro-description {
    font-size: 1.1rem;
  }

  .leadership .leadership-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }

  .leadership .leadership-grid .featured-leader .leader-image-large img {
    height: 400px;
  }

  .leadership .leadership-grid .featured-leader .leader-details .leader-stats {
    gap: 25px;
  }

  .leadership .leadership-grid .leadership-team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .leadership .leadership-philosophy {
    padding: 50px 30px;
  }

  .leadership .leadership-philosophy .philosophy-content .philosophy-points {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .leadership .intro-section {
    margin-bottom: 50px;
  }

  .leadership .intro-section .content-wrapper .intro-title {
    font-size: 1.8rem;
  }

  .leadership .leadership-grid {
    gap: 50px;
  }

  .leadership .leadership-grid .featured-leader .leader-details .leader-stats {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .leadership .leadership-grid .leadership-team-grid {
    grid-template-columns: 1fr;
  }

  .leadership .leadership-grid .leadership-team-grid .team-member .member-photo img {
    height: 320px;
  }

  .leadership .leadership-philosophy {
    padding: 40px 20px;
  }

  .leadership .leadership-philosophy .philosophy-content h3 {
    font-size: 1.6rem;
  }

  .leadership .leadership-philosophy .philosophy-content .philosophy-points {
    flex-direction: column;
    gap: 25px;
  }
}

/*--------------------------------------------------------------
# Admissions Section
--------------------------------------------------------------*/
.admissions .admission-hero {
  margin-bottom: 5rem;
}

.admissions .admission-hero .hero-content h2 {
  font-size: 2.8rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .admissions .admission-hero .hero-content h2 {
    font-size: 2.2rem;
  }
}

.admissions .admission-hero .hero-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2.5rem;
}

.admissions .admission-hero .hero-stats {
  display: flex;
  gap: 3rem;
}

@media (max-width: 576px) {
  .admissions .admission-hero .hero-stats {
    gap: 1.5rem;
  }
}

.admissions .admission-hero .hero-stats .stat-item {
  text-align: center;
}

.admissions .admission-hero .hero-stats .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent-color);
  line-height: 1;
}

.admissions .admission-hero .hero-stats .stat-item .stat-label {
  display: block;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 0.3rem;
}

.admissions .admission-hero .hero-image {
  position: relative;
}

.admissions .admission-hero .hero-image img {
  border-radius: 16px;
}

.admissions .admission-hero .hero-image .floating-badge {
  position: absolute;
  top: -15px;
  right: -15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.admissions .admission-hero .hero-image .floating-badge i {
  font-size: 1.2rem;
}

@media (max-width: 992px) {
  .admissions .admission-hero .hero-image .floating-badge {
    position: static;
    margin-top: 1rem;
    align-self: flex-start;
  }
}

.admissions .application-timeline {
  margin-bottom: 5rem;
}

.admissions .application-timeline .timeline-header {
  text-align: center;
  margin-bottom: 3rem;
}

.admissions .application-timeline .timeline-header h3 {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.admissions .application-timeline .timeline-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.admissions .application-timeline .timeline-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

@media (max-width: 992px) {
  .admissions .application-timeline .timeline-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .admissions .application-timeline .timeline-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.admissions .application-timeline .timeline-container::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), transparent 60%) 100%);
  z-index: 0;
}

@media (max-width: 992px) {
  .admissions .application-timeline .timeline-container::before {
    display: none;
  }
}

.admissions .application-timeline .timeline-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.admissions .application-timeline .timeline-item .timeline-marker {
  width: 50px;
  height: 50px;
  background-color: var(--surface-color);
  border: 3px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.admissions .application-timeline .timeline-item .timeline-marker i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.admissions .application-timeline .timeline-item .timeline-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--heading-color);
}

.admissions .application-timeline .timeline-item .timeline-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1rem;
}

.admissions .application-timeline .timeline-item .timeline-content .timeline-duration {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.admissions .requirements-checklist h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

.admissions .requirements-checklist .checklist-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.admissions .requirements-checklist .checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
}

.admissions .requirements-checklist .checklist-item .check-icon {
  width: 24px;
  height: 24px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.admissions .requirements-checklist .checklist-item .check-icon i {
  font-size: 0.9rem;
  color: var(--contrast-color);
}

.admissions .requirements-checklist .checklist-item .check-content h5 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--heading-color);
}

.admissions .requirements-checklist .checklist-item .check-content p {
  margin: 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.admissions .requirements-checklist .international-note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
}

.admissions .requirements-checklist .international-note i {
  font-size: 1.3rem;
  color: var(--accent-color);
  margin-top: 2px;
}

.admissions .requirements-checklist .international-note h6 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--heading-color);
}

.admissions .requirements-checklist .international-note p {
  margin: 0;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.admissions .tuition-overview h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

.admissions .tuition-overview .tuition-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.admissions .tuition-overview .tuition-card {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.admissions .tuition-overview .tuition-card:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.admissions .tuition-overview .tuition-card .card-header {
  padding: 1.2rem 1.5rem;
  background-color: color-mix(in srgb, var(--heading-color), transparent 95%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.admissions .tuition-overview .tuition-card .card-header h4 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--heading-color);
}

.admissions .tuition-overview .tuition-card .card-header .program-type {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.admissions .tuition-overview .tuition-card .pricing-details {
  padding: 1.5rem;
}

.admissions .tuition-overview .tuition-card .price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.admissions .tuition-overview .tuition-card .price-item:last-child {
  border-bottom: none;
}

.admissions .tuition-overview .tuition-card .price-item .label {
  font-size: 0.9rem;
  color: var(--default-color);
}

.admissions .tuition-overview .tuition-card .price-item .amount {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-color);
}

.admissions .tuition-overview .financial-support {
  padding: 1.5rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 12px;
}

.admissions .tuition-overview .financial-support h5 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  color: var(--heading-color);
}

.admissions .tuition-overview .financial-support p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.admissions .tuition-overview .financial-support .support-link {
  color: var(--accent-color);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.admissions .tuition-overview .financial-support .support-link:hover {
  gap: 0.8rem;
}

.admissions .tuition-overview .financial-support .support-link i {
  font-size: 0.9rem;
}

.admissions .deadlines-showcase {
  margin-bottom: 4rem;
}

.admissions .deadlines-showcase .showcase-header {
  text-align: center;
  margin-bottom: 3rem;
}

.admissions .deadlines-showcase .showcase-header h3 {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.admissions .deadlines-showcase .showcase-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.admissions .deadlines-showcase .deadlines-slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 992px) {
  .admissions .deadlines-showcase .deadlines-slider {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .admissions .deadlines-showcase .deadlines-slider {
    grid-template-columns: 1fr;
  }
}

.admissions .deadlines-showcase .deadline-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background-color: var(--surface-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.admissions .deadlines-showcase .deadline-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.admissions .deadlines-showcase .deadline-card.priority::before {
  background-color: var(--accent-color);
}

.admissions .deadlines-showcase .deadline-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.admissions .deadlines-showcase .deadline-card .date-badge {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

.admissions .deadlines-showcase .deadline-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--heading-color);
}

.admissions .deadlines-showcase .deadline-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1.5rem;
}

.admissions .deadlines-showcase .deadline-card .card-footer {
  font-size: 0.8rem;
  color: var(--accent-color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.admissions .contact-section .contact-content h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.admissions .contact-section .contact-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2.5rem;
}

.admissions .contact-section .inquiry-form .form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 576px) {
  .admissions .contact-section .inquiry-form .form-group-row {
    grid-template-columns: 1fr;
  }
}

.admissions .contact-section .inquiry-form .form-group.full-width {
  grid-column: 1/-1;
}

.admissions .contact-section .inquiry-form .form-group input,
.admissions .contact-section .inquiry-form .form-group select,
.admissions .contact-section .inquiry-form .form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  transition: all 0.3s ease;
}

.admissions .contact-section .inquiry-form .form-group input:focus,
.admissions .contact-section .inquiry-form .form-group select:focus,
.admissions .contact-section .inquiry-form .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.admissions .contact-section .inquiry-form .form-group input::placeholder,
.admissions .contact-section .inquiry-form .form-group select::placeholder,
.admissions .contact-section .inquiry-form .form-group textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.admissions .contact-section .inquiry-form .form-actions {
  margin-top: 1.5rem;
}

.admissions .contact-section .inquiry-form .form-actions .submit-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.admissions .contact-section .inquiry-form .form-actions .submit-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--heading-color) 15%);
  transform: translateY(-2px);
}

.admissions .contact-section .visit-invitation .visit-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.admissions .contact-section .visit-invitation .visit-image .visit-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  color: var(--heading-color);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.admissions .contact-section .visit-invitation .visit-image .visit-overlay i {
  font-size: 1.5rem;
}

.admissions .contact-section .visit-invitation .visit-details h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.admissions .contact-section .visit-invitation .visit-details .visit-options {
  margin-bottom: 2rem;
}

.admissions .contact-section .visit-invitation .visit-details .visit-option {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.admissions .contact-section .visit-invitation .visit-details .visit-option i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-top: 2px;
}

.admissions .contact-section .visit-invitation .visit-details .visit-option .option-title {
  display: block;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 0.2rem;
}

.admissions .contact-section .visit-invitation .visit-details .visit-option .option-detail {
  display: block;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.admissions .contact-section .visit-invitation .visit-details .schedule-btn {
  display: inline-block;
  background-color: var(--surface-color);
  color: var(--accent-color);
  padding: 0.8rem 2rem;
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.admissions .contact-section .visit-invitation .visit-details .schedule-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Academics Section
--------------------------------------------------------------*/
.academics .section-subtitle {
  color: var(--heading-color);
  font-size: 1.4rem;
  font-weight: 300;
  /* margin-bottom: 2.5rem; */
  position: relative;
}

.academics .section-subtitle:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: var(--accent-color);
}

.academics .academic-programs .programs-grid {
  display: grid;
  gap: 2rem;
}

.academics .academic-programs .program-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.academics .academic-programs .program-item:last-child {
  border-bottom: none;
}

.academics .academic-programs .program-icon {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.academics .academic-programs .program-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.academics .academic-programs .program-details h4 {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.academics .academic-programs .program-details p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.academics .academic-programs .program-details .program-stats {
  display: flex;
  gap: 1.5rem;
}

.academics .academic-programs .program-details .program-stats span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.academics .academic-programs .program-details .program-stats span strong {
  color: var(--accent-color);
  font-weight: 600;
}

@media (max-width: 576px) {
  .academics .academic-programs .program-details .program-stats {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.academics .academic-achievements {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 4px;
  height: 100%;
}

.academics .academic-achievements .achievements-list {
  margin-bottom: 2.5rem;
}

.academics .academic-achievements .achievement-item {
  text-align: center;
  margin-bottom: 2rem;
}

.academics .academic-achievements .achievement-item:last-child {
  margin-bottom: 0;
}

.academics .academic-achievements .achievement-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.5rem;
}

.academics .academic-achievements .achievement-number:after {
  content: "%";
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.academics .academic-achievements .achievement-item h4 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.academics .academic-achievements .achievement-item p {
  font-size: 0.85rem;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.academics .academic-achievements .accreditation-info {
  padding-top: 1.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.academics .academic-achievements .accreditation-info h4 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

.academics .academic-achievements .accreditation-info p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.academics .academic-achievements .accreditation-info .accreditation-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  font-size: 0.9rem;
  transition: 0.3s ease;
}

.academics .academic-achievements .accreditation-info .accreditation-link:hover i {
  transform: translateX(3px);
}

.academics .academic-achievements .accreditation-info .accreditation-link i {
  transition: 0.3s ease;
}

.academics .featured-departments .departments-showcase {
  position: relative;
}

.academics .featured-departments .department-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 320px;
  margin-bottom: 1.5rem;
}

.academics .featured-departments .department-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.academics .featured-departments .department-card .department-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, color-mix(in srgb, var(--heading-color), transparent 20%));
  color: var(--contrast-color);
  padding: 2rem 1.5rem 1.5rem;
}

.academics .featured-departments .department-card .department-overlay h4 {
  color: var(--contrast-color);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.academics .featured-departments .department-card .department-overlay p {
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.academics .featured-departments .department-card .department-overlay .dept-link {
  color: var(--contrast-color);
  font-size: 0.9rem;
  border-bottom: 1px solid color-mix(in srgb, var(--contrast-color), transparent 50%);
  transition: 0.3s ease;
}

.academics .featured-departments .department-card .department-overlay .dept-link:hover {
  border-bottom-color: var(--contrast-color);
}

.academics .featured-departments .departments-tabs {
  display: flex;
  gap: 0.5rem;
}

.academics .featured-departments .departments-tabs .tab-btn {
  background: none;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--default-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.academics .featured-departments .departments-tabs .tab-btn.active,
.academics .featured-departments .departments-tabs .tab-btn:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

@media (max-width: 576px) {
  .academics .featured-departments .departments-tabs .tab-btn {
    flex: 1;
    padding: 0.5rem 0.8rem;
    font-size: 0.8rem;
  }
}

.academics .academic-calendar {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 4px;
  height: 100%;
}

.academics .academic-calendar .calendar-events {
  margin-bottom: 1.5rem;
}

.academics .academic-calendar .calendar-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.academics .academic-calendar .calendar-item:last-child {
  border-bottom: none;
}

.academics .academic-calendar .date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 4px;
  flex-shrink: 0;
}

.academics .academic-calendar .date-block .month {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  line-height: 1;
}

.academics .academic-calendar .date-block .day {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-color);
  line-height: 1;
}

.academics .academic-calendar .event-info h4 {
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.academics .academic-calendar .event-info p {
  font-size: 0.85rem;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.academics .academic-calendar .view-full-calendar {
  color: var(--accent-color);
  font-size: 0.9rem;
  transition: 0.3s ease;
}

.academics .academic-calendar .view-full-calendar:hover {
  color: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
}

.academics .curriculum-pathways .pathways-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .academics .curriculum-pathways .pathways-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.academics .curriculum-pathways .pathway-track {
  text-align: center;
  padding: 2rem 1rem;
}

.academics .curriculum-pathways .pathway-track .track-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 4px;
  overflow: hidden;
}

.academics .curriculum-pathways .pathway-track .track-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.academics .curriculum-pathways .pathway-track h4 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.academics .curriculum-pathways .pathway-track p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.academics .curriculum-pathways .pathway-track .track-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.academics .curriculum-pathways .pathway-track .track-features li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.academics .curriculum-pathways .pathway-track .track-features li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 0.8rem;
}

.academics .faculty-research {
  padding-bottom: 1rem;
}

.academics .faculty-research .research-highlight {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.academics .faculty-research .research-highlight img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 4px;
}

.academics .faculty-research .research-highlight .research-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 1.5rem;
  border-radius: 4px;
}

.academics .faculty-research .research-highlight .research-badge span {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.academics .faculty-research .research-highlight .research-badge small {
  font-size: 0.8rem;
  opacity: 0.9;
}

.academics .faculty-research .faculty-content {
  padding: 0 2rem;
}

@media (max-width: 992px) {
  .academics .faculty-research .faculty-content {
    padding: 2rem 0 0;
  }
}

.academics .faculty-research .faculty-content h3 {
  font-size: 1.8rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.academics .faculty-research .faculty-content .lead {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.academics .faculty-research .faculty-content .faculty-highlights {
  margin-bottom: 2rem;
}

.academics .faculty-research .faculty-content .faculty-stat {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.academics .faculty-research .faculty-content .faculty-stat .stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.academics .faculty-research .faculty-content .faculty-stat .stat-icon i {
  font-size: 1.3rem;
  color: var(--accent-color);
}

.academics .faculty-research .faculty-content .faculty-stat .stat-content h4 {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.academics .faculty-research .faculty-content .faculty-stat .stat-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.academics .faculty-research .faculty-content .research-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.academics .faculty-research .faculty-content .research-cta .btn-research {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.academics .faculty-research .faculty-content .research-cta .btn-research:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
  transform: translateY(-2px);
}

.academics .faculty-research .faculty-content .research-cta .faculty-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  font-size: 0.9rem;
  transition: 0.3s ease;
}

.academics .faculty-research .faculty-content .research-cta .faculty-link:hover i {
  transform: translateX(3px);
}

.academics .faculty-research .faculty-content .research-cta .faculty-link i {
  transition: 0.3s ease;
}

/*--------------------------------------------------------------
# Students Life Section
--------------------------------------------------------------*/
/* .students-life .content-wrapper {
  padding: 80px 0;
} */

/* @media (max-width: 992px) {
  .students-life .content-wrapper {
    padding: 40px 0;
  }
} */

.students-life h2 {
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.2;
  /* margin-bottom: 32px; */
}

@media (max-width: 768px) {
  .students-life h2 {
    font-size: 2.25rem;
  }
}

.students-life .lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 48px;
}

.students-life .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 40px;
  margin-top: 48px;
}

.students-life .stat-item {
  text-align: center;
}

.students-life .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-color);
  display: block;
  line-height: 1;
}

.students-life .stat-item .stat-label {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.students-life .image-showcase {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.students-life .image-showcase .main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.students-life .image-showcase .floating-image {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 992px) {
  .students-life .image-showcase .floating-image {
    bottom: 20px;
    right: 20px;
    width: 150px;
    height: 150px;
  }
}

.students-life .image-showcase .floating-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 992px) {
  .students-life .image-showcase {
    margin-top: 40px;
    min-height: 400px;
  }
}

.students-life .activities-section {
  margin-top: 120px;
}

@media (max-width: 992px) {
  .students-life .activities-section {
    margin-top: 80px;
  }
}

.students-life .activities-section h3 {
  font-size: 2.25rem;
  font-weight: 300;
  /* margin-bottom: 24px; */
}

@media (max-width: 768px) {
  .students-life .activities-section h3 {
    font-size: 1.875rem;
  }
}

/* .students-life .activities-section>.row:first-child {
  margin-bottom: 80px;
} */

/* @media (max-width: 768px) {
  .students-life .activities-section>.row:first-child {
    margin-bottom: 60px;
  }
} */

.students-life .activities-section>.row:first-child p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.students-life .activity-card {
  height: 100%;
  transition: transform 0.3s ease;
}

.students-life .activity-card:hover {
  transform: translateY(-8px);
}

.students-life .activity-card .activity-image {
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.students-life .activity-card .activity-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.students-life .activity-card:hover .activity-image img {
  transform: scale(1.05);
}

.students-life .activity-card .activity-content h4 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.students-life .activity-card .activity-content p {
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.students-life .testimonial-section {
  /* margin-top: 120px; */
  margin-top: 60px;
}

/* @media (max-width: 992px) {
  .students-life .testimonial-section {
    margin-top: 80px;
  }
} */

.students-life .testimonial-section .testimonial-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 992px) {
  .students-life .testimonial-section .testimonial-image img {
    height: 300px;
    margin-bottom: 40px;
  }
}

.students-life .testimonial-section .testimonial-content {
  padding-left: 60px;
}

@media (max-width: 992px) {
  .students-life .testimonial-section .testimonial-content {
    padding-left: 0;
  }
}

.students-life .testimonial-section .testimonial-content blockquote {
  font-size: 1.375rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 32px;
  color: var(--heading-color);
  position: relative;
}

.students-life .testimonial-section .testimonial-content blockquote::before {
  content: '"';
  font-size: 4rem;
  color: var(--accent-color);
  position: absolute;
  top: -20px;
  left: -30px;
  font-family: serif;
}

@media (max-width: 768px) {
  .students-life .testimonial-section .testimonial-content blockquote {
    font-size: 1.125rem;
  }

  .students-life .testimonial-section .testimonial-content blockquote::before {
    font-size: 3rem;
    top: -15px;
    left: -20px;
  }
}

.students-life .testimonial-section .testimonial-content .testimonial-author h5 {
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.students-life .testimonial-section .testimonial-content .testimonial-author span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.875rem;
}

/*--------------------------------------------------------------
# Faculty  Staff Section
--------------------------------------------------------------*/
.faculty--staff .faculty-search-bar .search-input-wrapper {
  position: relative;
  max-width: 100%;
}

.faculty--staff .faculty-search-bar .search-input-wrapper .search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 1.1rem;
  z-index: 2;
}

.faculty--staff .faculty-search-bar .search-input-wrapper .search-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 50px;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 1rem;
  font-weight: 300;
  transition: all 0.3s ease;
}

.faculty--staff .faculty-search-bar .search-input-wrapper .search-input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  font-weight: 300;
}

.faculty--staff .faculty-search-bar .search-input-wrapper .search-input:focus {
  outline: none;
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.faculty--staff .featured-faculty {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 8px 40px color-mix(in srgb, var(--default-color), transparent 94%);
}

.faculty--staff .featured-faculty .featured-image img {
  border-radius: 16px;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.faculty--staff .featured-faculty .featured-content {
  padding-left: 2rem;
}

.faculty--staff .featured-faculty .featured-content .faculty-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.faculty--staff .featured-faculty .featured-content h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.faculty--staff .featured-faculty .featured-content .title {
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.faculty--staff .featured-faculty .featured-content .biography {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
  font-weight: 300;
}

.faculty--staff .featured-faculty .featured-content .expertise-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.faculty--staff .featured-faculty .featured-content .expertise-areas span {
  padding: 0.5rem 1.2rem;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 300;
}

.faculty--staff .featured-faculty .featured-content .contact-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.faculty--staff .featured-faculty .featured-content .contact-actions .contact-btn {
  padding: 0.8rem 2rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 25px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.faculty--staff .featured-faculty .featured-content .contact-actions .contact-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.faculty--staff .featured-faculty .featured-content .contact-actions .social-links {
  display: flex;
  gap: 1rem;
}

.faculty--staff .featured-faculty .featured-content .contact-actions .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 50%;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.faculty--staff .featured-faculty .featured-content .contact-actions .social-links a:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.faculty--staff .faculty-profile {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.faculty--staff .faculty-profile:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color), transparent 88%);
}

.faculty--staff .faculty-profile .profile-image {
  overflow: hidden;
}

.faculty--staff .faculty-profile .profile-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.faculty--staff .faculty-profile .profile-content {
  padding: 2rem;
}

.faculty--staff .faculty-profile .profile-content h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.faculty--staff .faculty-profile .profile-content .position {
  color: var(--accent-color);
  font-size: 1rem;
  margin-bottom: 0.8rem;
  font-weight: 400;
}

.faculty--staff .faculty-profile .profile-content .department-info {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.faculty--staff .faculty-profile .profile-content .research-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.faculty--staff .faculty-profile .profile-content .research-focus span {
  padding: 0.3rem 0.8rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 300;
}

.faculty--staff .faculty-profile .profile-actions {
  padding: 0 2rem 2rem;
}

.faculty--staff .faculty-profile .profile-actions .view-profile {
  color: var(--accent-color);
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  position: relative;
}

.faculty--staff .faculty-profile .profile-actions .view-profile::after {
  content: "→";
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.faculty--staff .faculty-profile .profile-actions .view-profile:hover::after {
  margin-left: 1rem;
}

.faculty--staff .load-more-section .load-more-btn {
  padding: 1rem 3rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  color: var(--accent-color);
  border-radius: 30px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.faculty--staff .load-more-section .load-more-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .faculty--staff .featured-faculty {
    padding: 2rem;
  }

  .faculty--staff .featured-faculty .featured-content {
    padding-left: 0;
    margin-top: 2rem;
  }

  .faculty--staff .featured-faculty .featured-content h2 {
    font-size: 2rem;
  }

  .faculty--staff .featured-faculty .featured-content .contact-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .faculty--staff .filter-tabs {
    flex-wrap: wrap;
    gap: 1rem !important;
    justify-content: center;
  }

  .faculty--staff .featured-faculty {
    padding: 1.5rem;
  }

  .faculty--staff .featured-faculty .featured-content h2 {
    font-size: 1.8rem;
  }

  .faculty--staff .featured-faculty .featured-content .expertise-areas {
    gap: 0.5rem;
  }

  .faculty--staff .featured-faculty .featured-content .expertise-areas span {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
}

/*--------------------------------------------------------------
# Campus Facilities Section
--------------------------------------------------------------*/
/* .campus-facilities .campus-overview {
  margin-bottom: 8rem;
} */

.campus-facilities .campus-overview .overview-content h1 {
  /* font-size: clamp(2.5rem, 5vw, 4rem); */
  /* font-weight: 300; */
  line-height: 1.2;
  /* margin-bottom: 2rem; */
  color: var(--heading-color);
  letter-spacing: -0.02em;
}

.campus-facilities .campus-overview .overview-content .lead-text {
  /* font-size: 1.25rem; */
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  /* margin-bottom: 3rem; */
  font-weight: 400;
}

.campus-facilities .campus-overview .overview-content .campus-stats {
  display: flex;
  gap: 3rem;
}

.campus-facilities .campus-overview .overview-content .campus-stats .stat-item {
  text-align: left;
}

.campus-facilities .campus-overview .overview-content .campus-stats .stat-item .stat-number {
  display: block;
  font-size: 4rem;
  font-weight: 300;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.campus-facilities .campus-overview .overview-content .campus-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

@media (max-width: 768px) {
  .campus-facilities .campus-overview .overview-content .campus-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.campus-facilities .campus-overview .overview-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
}

/* @media (max-width: 992px) {
  .campus-facilities .campus-overview .overview-content {
    margin-bottom: 3rem;
  }
} */

/* .campus-facilities .facility-categories {
  margin-bottom: 8rem;
} */

.campus-facilities .facility-categories .categories-header {
  text-align: center;
  /* margin-bottom: 5rem; */
}

.campus-facilities .facility-categories .categories-header h2 {
  /* font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; */
  color: var(--heading-color);
  /* margin-bottom: 1.5rem; */
  /* letter-spacing: -0.01em; */
}

.campus-facilities .facility-categories .categories-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.campus-facilities .facility-categories .categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.campus-facilities .facility-categories .categories-grid .facility-card {
  background: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.campus-facilities .facility-categories .categories-grid .facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.campus-facilities .facility-categories .categories-grid .facility-card .card-image {
  position: relative;
  overflow: hidden;
}

.campus-facilities .facility-categories .categories-grid .facility-card .card-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.campus-facilities .facility-categories .categories-grid .facility-card .card-content {
  padding: 2.5rem;
}

.campus-facilities .facility-categories .categories-grid .facility-card .card-content .category-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.campus-facilities .facility-categories .categories-grid .facility-card .card-content .category-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.campus-facilities .facility-categories .categories-grid .facility-card .card-content h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.campus-facilities .facility-categories .categories-grid .facility-card .card-content .facility-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.campus-facilities .facility-categories .categories-grid .facility-card .card-content .facility-features li {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0.8rem;
  line-height: 1.5;
  position: relative;
  padding-left: 1.5rem;
}

.campus-facilities .facility-categories .categories-grid .facility-card .card-content .facility-features li:before {
  content: "";
  position: absolute;
  left: 0;
  /* top: 0.6rem; */
  width: 4px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 50%;
}

.campus-facilities .facility-categories .categories-grid .facility-card .card-content .facility-link {
  color: var(--accent-color);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.campus-facilities .facility-categories .categories-grid .facility-card .card-content .facility-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.campus-facilities .facility-categories .categories-grid .facility-card:hover .card-image img {
  transform: scale(1.05);
}

/* .campus-facilities .virtual-tour-section {
  margin-bottom: 8rem;
} */

.campus-facilities .virtual-tour-section .tour-container {
  background: color-mix(in srgb, var(--surface-color), var(--accent-color) 2%);
  border-radius: 8px;
  /* padding: 4rem 3rem; */
}

/* @media (max-width: 768px) {
  .campus-facilities .virtual-tour-section .tour-container {
    padding: 2rem 1.5rem;
  }
} */

.campus-facilities .virtual-tour-section .tour-visual .video-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.campus-facilities .virtual-tour-section .tour-visual .video-wrapper video {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.campus-facilities .virtual-tour-section .tour-visual .video-wrapper .tour-overlay {
  position: absolute;
  top: 2rem;
  right: 2rem;
}

.campus-facilities .virtual-tour-section .tour-visual .video-wrapper .tour-overlay .tour-badge {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.8rem 1.2rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.campus-facilities .virtual-tour-section .tour-visual .video-wrapper .tour-overlay .tour-badge i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.campus-facilities .virtual-tour-section .tour-visual .video-wrapper .tour-overlay .tour-badge span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--heading-color);
}

.campus-facilities .virtual-tour-section .tour-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.campus-facilities .virtual-tour-section .tour-content p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.campus-facilities .virtual-tour-section .tour-content .tour-features {
  margin-bottom: 2.5rem;
}

.campus-facilities .virtual-tour-section .tour-content .tour-features .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.campus-facilities .virtual-tour-section .tour-content .tour-features .feature-item i {
  font-size: 1.3rem;
  color: var(--accent-color);
}

.campus-facilities .virtual-tour-section .tour-content .tour-features .feature-item span {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  font-weight: 400;
}

.campus-facilities .virtual-tour-section .tour-content .tour-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.campus-facilities .virtual-tour-section .tour-content .tour-actions .btn-tour {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.campus-facilities .virtual-tour-section .tour-content .tour-actions .btn-tour:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-2px);
}

.campus-facilities .virtual-tour-section .tour-content .tour-actions .btn-schedule {
  color: var(--accent-color);
  padding: 1rem 2rem;
  border: 1px solid var(--accent-color);
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.campus-facilities .virtual-tour-section .tour-content .tour-actions .btn-schedule:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/* @media (max-width: 992px) {
  .campus-facilities .virtual-tour-section .tour-content {
    margin-top: 3rem;
  }
} */

/* .campus-facilities .campus-gallery {
  margin-bottom: 8rem;
} */

.campus-facilities .campus-gallery .gallery-header {
  text-align: center;
  /* margin-bottom: 4rem; */
}

.campus-facilities .campus-gallery .gallery-header h2 {
  /* font-size: clamp(2rem, 4vw, 3rem); */
  font-weight: 300;
  color: var(--heading-color);
  /* margin-bottom: 1.5rem; */
  letter-spacing: -0.01em;
}

.campus-facilities .campus-gallery .gallery-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.campus-facilities .campus-gallery .gallery-showcase .swiper-wrapper {
  height: auto !important;
}

.campus-facilities .campus-gallery .gallery-showcase .gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.campus-facilities .campus-gallery .gallery-showcase .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.campus-facilities .campus-gallery .gallery-showcase .gallery-item .item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 3rem 2rem 2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.campus-facilities .campus-gallery .gallery-showcase .gallery-item .item-overlay .overlay-content h4 {
  color: white;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.campus-facilities .campus-gallery .gallery-showcase .gallery-item .item-overlay .overlay-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

.campus-facilities .campus-gallery .gallery-showcase .gallery-item:hover img {
  transform: scale(1.1);
}

.campus-facilities .campus-gallery .gallery-showcase .gallery-item:hover .item-overlay {
  transform: translateY(0);
}

.campus-facilities .campus-gallery .gallery-showcase .swiper-pagination {
  margin-top: 3rem;
}

.campus-facilities .campus-gallery .gallery-showcase .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
}

.campus-facilities .campus-gallery .gallery-showcase .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
}

.campus-facilities .campus-gallery .gallery-showcase .swiper-button-prev,
.campus-facilities .campus-gallery .gallery-showcase .swiper-button-next {
  /* color: var(--accent-color);
  background: white; */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.campus-facilities .campus-gallery .gallery-showcase .swiper-button-prev:after,
.campus-facilities .campus-gallery .gallery-showcase .swiper-button-next:after {
  font-size: 1rem;
}

.campus-facilities .campus-gallery .gallery-showcase .swiper-button-prev:hover,
.campus-facilities .campus-gallery .gallery-showcase .swiper-button-next:hover {
  background: var(--accent-color);
  color: white;
}

.campus-facilities .campus-map-section .map-header {
  text-align: center;
  margin-bottom: 4rem;
}

.campus-facilities .campus-map-section .map-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.campus-facilities .campus-map-section .map-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.campus-facilities .campus-map-section .map-container {
  background: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.campus-facilities .campus-map-section .map-embed iframe {
  border: none;
}

.campus-facilities .campus-map-section .map-sidebar {
  padding: 3rem 2.5rem;
  height: 100%;
}

.campus-facilities .campus-map-section .map-sidebar .map-info {
  margin-bottom: 2.5rem;
}

.campus-facilities .campus-map-section .map-sidebar .map-info h4 {
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.campus-facilities .campus-map-section .map-sidebar .map-info p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
  line-height: 1.5;
}

.campus-facilities .campus-map-section .map-sidebar .map-services {
  margin-bottom: 2.5rem;
}

.campus-facilities .campus-map-section .map-sidebar .map-services .service-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.campus-facilities .campus-map-section .map-sidebar .map-services .service-item i {
  font-size: 1.2rem;
  color: var(--accent-color);
  margin-top: 0.2rem;
}

.campus-facilities .campus-map-section .map-sidebar .map-services .service-item .service-content strong {
  display: block;
  color: var(--heading-color);
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.campus-facilities .campus-map-section .map-sidebar .map-services .service-item .service-content span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.campus-facilities .campus-map-section .map-sidebar .map-actions .map-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 0;
  color: var(--accent-color);
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.campus-facilities .campus-map-section .map-sidebar .map-actions .map-link:last-child {
  border-bottom: none;
}

.campus-facilities .campus-map-section .map-sidebar .map-actions .map-link i {
  font-size: 1.1rem;
}

.campus-facilities .campus-map-section .map-sidebar .map-actions .map-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-left: 0.5rem;
}

@media (max-width: 992px) {
  .campus-facilities .campus-map-section .map-sidebar {
    padding: 2rem;
  }
}

/*--------------------------------------------------------------
# News Hero Section
--------------------------------------------------------------*/
.news-hero .featured-post {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.news-hero .featured-post img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.news-hero .featured-post .post-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  padding: 2rem;
  color: var(--contrast-color);
}

.news-hero .featured-post .post-content {
  max-width: 800px;
}

.news-hero .featured-post .post-title {
  font-size: 2rem;
  margin: 1rem 0;
}

.news-hero .featured-post .post-title a {
  color: var(--contrast-color);
}

.news-hero .featured-post .post-title a:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.news-hero .featured-post .post-excerpt {
  font-size: 1rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.news-hero .secondary-post {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}

.news-hero .secondary-post .post-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.news-hero .secondary-post .post-content {
  padding: 1.5rem;
}

.news-hero .secondary-post .post-title {
  font-size: 1.25rem;
  margin: 0.5rem 0;
  line-height: 1.4;
}

.news-hero .secondary-post .post-title a {
  color: var(--heading-color);
}

.news-hero .secondary-post .post-title a:hover {
  color: var(--accent-color);
}

.news-hero .news-tabs {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
}

.news-hero .news-tabs .nav-tabs {
  border: none;
  padding: 1rem 1rem 0;
  gap: 0.5rem;
  background-color: var(--surface-color);
}

.news-hero .news-tabs .nav-tabs .nav-link {
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--default-color);
  font-weight: 500;
  border-radius: 20px;
  transition: 0.3s;
}

.news-hero .news-tabs .nav-tabs .nav-link:hover {
  color: var(--accent-color);
}

.news-hero .news-tabs .nav-tabs .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.news-hero .news-tabs .tab-content {
  padding: 1.5rem;
}

.news-hero .tab-post {
  padding: 1rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.news-hero .tab-post:first-child {
  padding-top: 0;
}

.news-hero .tab-post:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.news-hero .tab-post img {
  border-radius: 8px;
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.news-hero .tab-post .post-content {
  padding-left: 1rem;
}

.news-hero .tab-post .post-title {
  font-size: 0.9375rem;
  margin: 0.5rem 0;
  line-height: 1.4;
}

.news-hero .tab-post .post-title a {
  color: var(--heading-color);
}

.news-hero .tab-post .post-title a:hover {
  color: var(--accent-color);
}

.news-hero .category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-right: 0.5rem;
}

.news-hero .date {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.news-hero .post-author {
  font-size: 0.8125rem;
  margin-top: 0.5rem;
}

.news-hero .post-author span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.news-hero .post-author a {
  color: var(--accent-color);
  font-weight: 500;
}

.news-hero .post-author a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

@media (max-width: 991.98px) {
  .news-hero .featured-post img {
    height: 400px;
  }

  .news-hero .featured-post .post-title {
    font-size: 1.75rem;
  }

  .news-hero .secondary-post .post-image img {
    height: 220px;
  }

  .news-hero .news-tabs {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .news-hero .featured-post img {
    height: 500px;
  }

  .news-hero .featured-post .post-title {
    font-size: 1.5rem;
  }

  .news-hero .featured-post .post-overlay {
    padding: 1.5rem;
  }

  .news-hero .tab-post .post-title {
    font-size: 0.875rem;
  }

  .news-hero .tab-post img {
    height: 80px;
  }
}

/*--------------------------------------------------------------
# News Posts Section
--------------------------------------------------------------*/
.news-posts .post-box {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.news-posts .post-box .post-img {
  overflow: hidden;
  position: relative;
}

.news-posts .post-box .post-img img {
  transition: 0.5s;
}

.news-posts .post-box .meta {
  margin-top: 15px;
}

.news-posts .post-box .meta .post-date {
  font-size: 15px;
  font-weight: 400;
  color: var(--accent-color);
}

.news-posts .post-box .meta .post-author {
  font-size: 15px;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.news-posts .post-box .post-title {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 700;
  margin: 15px 0 0 0;
  position: relative;
  transition: 0.3s;
}

.news-posts .post-box p {
  margin: 15px 0 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.news-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  margin-top: 15px;
}

.news-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}

.news-posts .post-box:hover .post-title {
  color: var(--accent-color);
}

.news-posts .post-box:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
  padding-top: 0;
}

.pagination-2 nav {
  position: relative;
}

.pagination-2 ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-2 li {
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.pagination-2 li.ellipsis {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 8px 16px;
  user-select: none;
}

.pagination-2 li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px 16px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 4px color-mix(in srgb, var(--default-color), transparent 90%);
}

.pagination-2 li a.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.pagination-2 li a:hover:not(.active) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-1px);
  box-shadow: 0 3px 6px color-mix(in srgb, var(--default-color), transparent 85%);
}

.pagination-2 li a i {
  font-size: 14px;
}

.pagination-2 li a span {
  margin: 0 4px;
}

@media (max-width: 575px) {
  .pagination-2 ul {
    gap: 4px;
  }

  .pagination-2 li a {
    min-width: 36px;
    height: 36px;
    padding: 8px 12px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-details .post-img {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.blog-details .post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .blog-details .post-img {
    height: 300px;
  }
}

.blog-details .article-content {
  padding: 2rem;
}

@media (max-width: 768px) {
  .blog-details .article-content {
    padding: 1.5rem;
  }
}

.blog-details .meta-categories {
  margin-bottom: 1rem;
}

.blog-details .meta-categories .category,
.blog-details .meta-categories .reading-time {
  display: inline-flex;
  align-items: center;
  margin-right: 1rem;
  font-size: 0.9rem;
  color: var(--heading-color);
}

.blog-details .meta-categories .category i,
.blog-details .meta-categories .reading-time i {
  margin-right: 0.5rem;
  font-size: 1rem;
}

.blog-details .title {
  font-size: 2.5rem;
  line-height: 1.3;
  margin: 1rem 0 1.5rem;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .blog-details .title {
    font-size: 2rem;
  }
}

.blog-details .meta-top {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-top ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.blog-details .meta-top ul li {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .meta-top ul li i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

.blog-details .meta-top ul li .author-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.blog-details .meta-top ul li a {
  color: var(--heading-color);
}

.blog-details .meta-top ul li a:hover {
  color: var(--accent-color);
}

.blog-details .content {
  font-size: 1.1rem;
  line-height: 1.8;
}

.blog-details .content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.blog-details .content h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  color: var(--heading-color);
}

.blog-details .content p {
  margin-bottom: 1.5rem;
}

.blog-details .content ul {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}

.blog-details .content ul li {
  margin-bottom: 0.5rem;
}

.blog-details .content .content-image {
  margin: 2rem 0;
}

.blog-details .content .content-image img {
  width: 100%;
  border-radius: 8px;
}

.blog-details .content .content-image figcaption {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .content .content-image-split {
  margin: 2rem 0;
}

.blog-details .content .content-image-split img {
  border-radius: 8px;
}

.blog-details .content blockquote {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-left: 4px solid var(--accent-color);
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.blog-details .content blockquote p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--heading-color);
  margin: 0 0 1rem;
}

.blog-details .content blockquote cite {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-style: normal;
  display: block;
}

.blog-details .content blockquote cite:before {
  content: "— ";
}

.blog-details .meta-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.blog-details .meta-bottom .article-tags {
  display: flex;
  align-items: center;
}

.blog-details .meta-bottom .article-tags i {
  margin-right: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .meta-bottom .article-tags .tags {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-details .meta-bottom .article-tags .tags li a {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.9rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.blog-details .meta-bottom .article-tags .tags li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-details .meta-bottom .article-share {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-details .meta-bottom .article-share span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .meta-bottom .article-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.blog-details .meta-bottom .article-share a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-details .meta-bottom .article-share a i {
  font-size: 1rem;
}

/*--------------------------------------------------------------
# Events 2 Section
--------------------------------------------------------------*/
.events-2 .events-list {
  margin-bottom: 2rem;
}

.events-2 .events-list .event-item {
  display: flex;
  background: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.events-2 .events-list .event-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.events-2 .events-list .event-item .event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 90px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 0;
  text-align: center;
}

.events-2 .events-list .event-item .event-date .day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.events-2 .events-list .event-item .event-date .month {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
}

.events-2 .events-list .event-item .event-content {
  padding: 1.5rem;
  flex: 1;
}

.events-2 .events-list .event-item .event-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--heading-color);
  font-weight: 600;
}

.events-2 .events-list .event-item .event-content .event-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
}

.events-2 .events-list .event-item .event-content .event-meta i {
  margin-right: 0.25rem;
}

.events-2 .events-list .event-item .event-content .event-meta p {
  margin: 0;
}

.events-2 .events-list .event-item .event-content p {
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.events-2 .events-list .event-item .event-content .btn-event {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--accent-color);
}

.events-2 .events-list .event-item .event-content .btn-event i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.events-2 .events-list .event-item .event-content .btn-event:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.events-2 .events-list .event-item .event-content .btn-event:hover i {
  transform: translateX(5px);
}

@media (max-width: 576px) {
  .events-2 .events-list .event-item {
    flex-direction: column;
  }

  .events-2 .events-list .event-item .event-date {
    width: 100%;
    flex-direction: row;
    padding: 0.75rem;
  }

  .events-2 .events-list .event-item .event-date .day {
    margin-right: 0.5rem;
  }

  .events-2 .events-list .event-item .event-content .event-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.events-2 .pagination-wrapper {
  margin-top: 2rem;
}

.events-2 .pagination-wrapper .pagination .page-link {
  color: var(--heading-color);
  border-color: color-mix(in srgb, var(--heading-color), transparent 80%);
  transition: all 0.3s ease;
  margin: 0 3px;
  background-color: var(--background-color);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.events-2 .pagination-wrapper .pagination .page-link:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--accent-color);
}

.events-2 .pagination-wrapper .pagination .page-item.active .page-link {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.events-2 .pagination-wrapper .pagination .page-item.disabled .page-link {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.events-2 .sidebar .sidebar-item {
  background: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  padding: 1.5rem;
}

.events-2 .sidebar .sidebar-item .sidebar-title {
  font-size: 1.25rem;
  font-weight: 600;
  position: relative;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
}

.events-2 .sidebar .sidebar-item .sidebar-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 60px;
  background: var(--accent-color);
}

.events-2 .sidebar .sidebar-item.featured-event .featured-event-content img {
  border-radius: 6px;
  margin-bottom: 1rem;
}

.events-2 .sidebar .sidebar-item.featured-event .featured-event-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.events-2 .sidebar .sidebar-item.featured-event .featured-event-content p {
  margin-bottom: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-size: 0.95rem;
}

.events-2 .sidebar .sidebar-item.featured-event .featured-event-content p i {
  color: var(--accent-color);
  margin-right: 0.25rem;
}

.events-2 .sidebar .sidebar-item.featured-event .featured-event-content .btn-register {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  margin-top: 0.5rem;
}

.events-2 .sidebar .sidebar-item.featured-event .featured-event-content .btn-register:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.events-2 .sidebar .sidebar-item .categories ul {
  padding: 0;
  list-style: none;
  margin: 0;
}

.events-2 .sidebar .sidebar-item .categories ul li {
  border-bottom: 1px solid color-mix(in srgb, var(--heading-color), transparent 90%);
}

.events-2 .sidebar .sidebar-item .categories ul li:last-child {
  border-bottom: none;
}

.events-2 .sidebar .sidebar-item .categories ul li a {
  display: flex;
  justify-content: space-between;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  padding: 0.75rem 0;
  transition: color 0.3s ease;
}

.events-2 .sidebar .sidebar-item .categories ul li a:hover {
  color: var(--accent-color);
}

.events-2 .sidebar .sidebar-item .categories ul li a span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background: color-mix(in srgb, var(--heading-color), transparent 90%);
  border-radius: 50px;
  padding: 0.15rem 0.5rem;
  font-size: 0.8rem;
  transition: background-color 0.3s ease;
}

.events-2 .sidebar .sidebar-item .categories ul li a:hover span {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

.events-2 .sidebar .event-calendar .calendar-header {
  margin-bottom: 0.75rem;
  text-align: center;
}

.events-2 .sidebar .event-calendar .calendar-header h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.events-2 .sidebar .event-calendar .calendar-body .weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--heading-color), transparent 25%);
  border-bottom: 1px solid color-mix(in srgb, var(--heading-color), transparent 85%);
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}

.events-2 .sidebar .event-calendar .calendar-body .weekdays div {
  padding: 0.25rem;
}

.events-2 .sidebar .event-calendar .calendar-body .days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.events-2 .sidebar .event-calendar .calendar-body .days .day {
  padding: 0.5rem;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3px auto;
  transition: all 0.2s ease;
}

.events-2 .sidebar .event-calendar .calendar-body .days .day:hover:not(.other-month) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
}

.events-2 .sidebar .event-calendar .calendar-body .days .day.has-event {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
}

.events-2 .sidebar .event-calendar .calendar-body .days .day.has-event:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.events-2 .sidebar .event-calendar .calendar-body .days .day.other-month {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  cursor: default;
}

/*--------------------------------------------------------------
# Event Section
--------------------------------------------------------------*/
.event .event-meta {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 15px;
  border-radius: 8px;
}

.event .event-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.event .event-meta .meta-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.event .event-meta .meta-item span {
  font-weight: 500;
}

.event .event-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .event .event-content h2 {
    font-size: 1.8rem;
  }
}

.event .event-content h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.event .event-content h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 3px;
  width: 50px;
  background-color: var(--accent-color);
}

.event .event-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.event .event-content .event-highlights {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.event .event-content .event-highlights li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.event .event-content .event-highlights li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 3px;
}

.event .event-content .event-highlights li span {
  flex: 1;
}

.event .event-content .schedule-table {
  margin-top: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.event .event-content .schedule-table .schedule-row {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.event .event-content .schedule-table .schedule-row:last-child {
  border-bottom: none;
}

.event .event-content .schedule-table .schedule-row:nth-child(odd) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

@media (max-width: 576px) {
  .event .event-content .schedule-table .schedule-row {
    flex-direction: column;
  }
}

.event .event-content .schedule-table .schedule-time {
  width: 180px;
  padding: 15px;
  font-weight: 600;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
}

@media (max-width: 576px) {
  .event .event-content .schedule-table .schedule-time {
    width: 100%;
  }
}

.event .event-content .schedule-table .schedule-activity {
  flex: 1;
  padding: 15px 20px;
}

.event .event-content .schedule-table .schedule-activity h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.event .event-content .schedule-table .schedule-activity p {
  margin: 0;
  font-size: 0.95rem;
}

.event .event-content .event-gallery img {
  transition: all 0.3s ease;
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.event .event-content .event-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.event .event-sidebar .sidebar-widget {
  margin-bottom: 30px;
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 25px;
}

.event .event-sidebar .sidebar-widget h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}

.event .event-sidebar .sidebar-widget h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 3px;
  width: 60px;
  background-color: var(--accent-color);
}

.event .event-sidebar .registration-form .btn-register {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 0;
  font-weight: 600;
  transition: all 0.3s ease;
}

.event .event-sidebar .registration-form .btn-register:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.event .event-sidebar .registration-form .btn-register:active {
  transform: translateY(0);
}

.event .event-sidebar .organizer-info .organizer-details {
  display: flex;
  flex-direction: column;
}

.event .event-sidebar .organizer-info .organizer-details .organizer-image {
  margin-bottom: 15px;
}

.event .event-sidebar .organizer-info .organizer-details .organizer-image img {
  border-radius: 8px;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.event .event-sidebar .organizer-info .organizer-details .organizer-content h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.event .event-sidebar .organizer-info .organizer-details .organizer-content .organizer-position {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.event .event-sidebar .organizer-info .organizer-details .organizer-content .organizer-contact {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 15px;
  border-radius: 6px;
  margin-top: 15px;
}

.event .event-sidebar .organizer-info .organizer-details .organizer-content .organizer-contact p {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.event .event-sidebar .organizer-info .organizer-details .organizer-content .organizer-contact p:last-child {
  margin-bottom: 0;
}

.event .event-sidebar .organizer-info .organizer-details .organizer-content .organizer-contact p i {
  color: var(--accent-color);
}

.event .event-sidebar .related-events .related-event-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.event .event-sidebar .related-events .related-event-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.event .event-sidebar .related-events .related-event-item .related-event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 70px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px;
}

.event .event-sidebar .related-events .related-event-item .related-event-date .day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.event .event-sidebar .related-events .related-event-item .related-event-date .month {
  font-size: 0.9rem;
  text-transform: uppercase;
}

.event .event-sidebar .related-events .related-event-item .related-event-info {
  flex: 1;
}

.event .event-sidebar .related-events .related-event-item .related-event-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.event .event-sidebar .related-events .related-event-item .related-event-info p {
  margin: 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

/*--------------------------------------------------------------
# Alumni Section
--------------------------------------------------------------*/
.alumni .alumni-intro {
  padding: 5rem 0 6rem;
}

.alumni .alumni-intro .intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.alumni .alumni-intro .intro-text h2 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 2rem;
  letter-spacing: -1px;
}

.alumni .alumni-intro .intro-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.alumni .alumni-intro .intro-text .metrics-row {
  display: flex;
  gap: 3rem;
}

.alumni .alumni-intro .intro-text .metrics-row .metric-item .metric-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.alumni .alumni-intro .intro-text .metrics-row .metric-item .metric-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.alumni .alumni-intro .intro-visual .visual-wrapper {
  position: relative;
}

.alumni .alumni-intro .intro-visual .visual-wrapper img {
  border-radius: 8px;
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.alumni .alumni-intro .intro-visual .visual-wrapper:after {
  content: "";
  position: absolute;
  top: 20px;
  left: -20px;
  right: 20px;
  bottom: -20px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 8px;
  z-index: -1;
}

.alumni .success-stories {
  padding: 5rem 0;
}

.alumni .success-stories .stories-header {
  margin-bottom: 4rem;
}

.alumni .success-stories .stories-header h3 {
  font-size: 2.5rem;
  font-weight: 300;
  text-align: center;
  position: relative;
}

.alumni .success-stories .stories-header h3:after {
  content: "";
  width: 60px;
  height: 1px;
  background-color: var(--accent-color);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.alumni .success-stories .stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.alumni .success-stories .stories-grid .story-item {
  text-align: center;
  transition: all 0.3s ease;
}

.alumni .success-stories .stories-grid .story-item:hover {
  transform: translateY(-10px);
}

.alumni .success-stories .stories-grid .story-item:hover .story-image img {
  transform: scale(1.05);
}

.alumni .success-stories .stories-grid .story-item .story-image {
  position: relative;
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  margin-left: auto;
  margin-right: auto;
}

.alumni .success-stories .stories-grid .story-item .story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.alumni .success-stories .stories-grid .story-item .story-image .graduation-year {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: var(--surface-color);
  color: var(--accent-color);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.alumni .success-stories .stories-grid .story-item .story-content h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.alumni .success-stories .stories-grid .story-item .story-content .story-role {
  display: block;
  color: var(--accent-color);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.alumni .success-stories .stories-grid .story-item .story-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.alumni .success-stories .stories-grid .story-item .story-content .story-link {
  color: var(--default-color);
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.alumni .success-stories .stories-grid .story-item .story-content .story-link:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.alumni .success-stories .stories-grid .story-item .story-content .story-link:hover {
  color: var(--accent-color);
}

.alumni .success-stories .stories-grid .story-item .story-content .story-link:hover:after {
  width: 100%;
}

.alumni .engagement-opportunities {
  padding: 5rem 0;
}

.alumni .engagement-opportunities .opportunities-layout {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.alumni .engagement-opportunities .opportunities-content h3 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.alumni .engagement-opportunities .opportunities-content>p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.alumni .engagement-opportunities .opportunities-content .opportunity-list .opportunity-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  transition: all 0.3s ease;
}

.alumni .engagement-opportunities .opportunities-content .opportunity-list .opportunity-item:hover .opportunity-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.alumni .engagement-opportunities .opportunities-content .opportunity-list .opportunity-item .opportunity-icon {
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.alumni .engagement-opportunities .opportunities-content .opportunity-list .opportunity-item .opportunity-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.alumni .engagement-opportunities .opportunities-content .opportunity-list .opportunity-item .opportunity-info p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.alumni .engagement-opportunities .opportunities-content .opportunity-list .opportunity-item .opportunity-info .opportunity-action {
  font-size: 0.9rem;
  color: var(--accent-color);
  font-weight: 500;
  position: relative;
}

.alumni .engagement-opportunities .opportunities-content .opportunity-list .opportunity-item .opportunity-info .opportunity-action:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.alumni .engagement-opportunities .opportunities-content .opportunity-list .opportunity-item .opportunity-info .opportunity-action:hover:after {
  width: 100%;
}

.alumni .engagement-opportunities .opportunities-visual img {
  border-radius: 8px;
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.alumni .impact-section {
  padding: 5rem 0;
  position: relative;
}

.alumni .impact-section .impact-visual {
  position: relative;
  margin-bottom: 4rem;
}

.alumni .impact-section .impact-visual img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.alumni .impact-section .impact-visual .impact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alumni .impact-section .impact-visual .impact-overlay .impact-stat {
  text-align: center;
  color: var(--contrast-color);
}

.alumni .impact-section .impact-visual .impact-overlay .impact-stat .stat-value {
  display: block;
  font-size: 4rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.alumni .impact-section .impact-visual .impact-overlay .impact-stat .stat-description {
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.9;
}

.alumni .impact-section .impact-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.alumni .impact-section .impact-content h3 {
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.alumni .impact-section .impact-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.alumni .impact-section .impact-content .impact-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.alumni .impact-section .impact-content .impact-actions .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
}

.alumni .impact-section .impact-content .impact-actions .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.alumni .impact-section .impact-content .impact-actions .btn-secondary {
  color: var(--default-color);
  padding: 0.875rem 2rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.alumni .impact-section .impact-content .impact-actions .btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.alumni .alumni-events {
  padding: 5rem 0;
}

.alumni .alumni-events .events-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.alumni .alumni-events .events-header h3 {
  font-size: 2.5rem;
  font-weight: 300;
  margin: 0;
}

.alumni .alumni-events .events-header .view-all-events {
  color: var(--accent-color);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.alumni .alumni-events .events-header .view-all-events:after {
  content: "→";
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.alumni .alumni-events .events-header .view-all-events:hover:after {
  transform: translateX(5px);
}

.alumni .alumni-events .events-list .event-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.alumni .alumni-events .events-list .event-card:last-child {
  border-bottom: none;
}

.alumni .alumni-events .events-list .event-card:hover .event-date {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.alumni .alumni-events .events-list .event-card .event-date {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.alumni .alumni-events .events-list .event-card .event-date .month {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.alumni .alumni-events .events-list .event-card .event-date .day {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
}

.alumni .alumni-events .events-list .event-card .event-details {
  flex: 1;
}

.alumni .alumni-events .events-list .event-card .event-details h4 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.alumni .alumni-events .events-list .event-card .event-details .event-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.alumni .alumni-events .events-list .event-card .event-details p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.alumni .alumni-events .events-list .event-card .event-details .event-register {
  color: var(--accent-color);
  font-weight: 500;
  position: relative;
}

.alumni .alumni-events .events-list .event-card .event-details .event-register:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;
}

.alumni .alumni-events .events-list .event-card .event-details .event-register:hover:after {
  width: 100%;
}

@media (max-width: 1200px) {
  .alumni .alumni-intro .intro-text h2 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .alumni .alumni-intro .intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .alumni .engagement-opportunities .opportunities-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .alumni .stories-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .alumni .events-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .alumni section {
    padding: 40px 0;
  }

  .alumni .alumni-intro {
    padding: 3rem 0 4rem;
  }

  .alumni .alumni-intro .intro-text h2 {
    font-size: 2.5rem;
  }

  .alumni .alumni-intro .intro-text .metrics-row {
    gap: 2rem;
    justify-content: center;
  }

  .alumni .success-stories,
  .alumni .engagement-opportunities,
  .alumni .impact-section,
  .alumni .alumni-events {
    padding: 3rem 0;
  }

  .alumni .impact-actions {
    flex-direction: column;
    align-items: center;
  }

  .alumni .impact-actions .btn-primary,
  .alumni .impact-actions .btn-secondary {
    width: 100%;
    max-width: 250px;
  }

  .alumni .event-card {
    flex-direction: column;
    text-align: center;
  }

  .alumni .event-card .event-date {
    margin: 0 auto;
  }

  .alumni .event-card .event-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-card {
  background-color: var(--surface-color);
  padding: 30px;
  text-align: center;
  height: 100%;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease-in-out;
}

.contact .info-card:hover {
  transform: translateY(-5px);
}

.contact .info-card .icon-box {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.contact .info-card .icon-box i {
  font-size: 24px;
  color: var(--accent-color);
}

.contact .info-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact .info-card p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.6;
}

.contact .form-wrapper .input-group .input-group-text {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px 0 0 8px;
  padding: 12px 15px;
}

.contact .form-wrapper .input-group .form-control {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0 8px 8px 0;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 12px 15px;
}

.contact .form-wrapper .input-group .form-control:focus {
  border-color: var(--accent-color);
}

.contact .form-wrapper .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .form-wrapper select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 40px;
}

.contact .form-wrapper textarea.form-control {
  min-height: 160px;
}

.contact .form-wrapper button {
  background-color: var(--accent-color);
  border: 0;
  padding: 12px 40px;
  color: var(--contrast-color);
  border-radius: 8px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
}

.contact .form-wrapper button:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy .privacy-content {
  font-size: 16px;
  line-height: 1.7;
}

.privacy .privacy-content .last-updated {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 40px;
  border-left: 4px solid var(--accent-color);
}

.privacy .privacy-content .last-updated p {
  margin: 0;
  color: var(--heading-color);
}

.privacy .privacy-content .privacy-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .privacy-section h3 {
  font-size: 28px;
  margin-bottom: 25px;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 15px;
}

.privacy .privacy-content .privacy-section h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.privacy .privacy-content .privacy-section h4 {
  color: var(--heading-color);
  font-size: 22px;
  margin: 30px 0 15px 0;
}

.privacy .privacy-content .privacy-section h5 {
  color: var(--heading-color);
  font-size: 18px;
  margin-bottom: 10px;
}

.privacy .privacy-content .privacy-section p {
  margin-bottom: 20px;
  color: var(--default-color);
}

.privacy .privacy-content .privacy-section ul,
.privacy .privacy-content .privacy-section ol {
  margin: 20px 0;
  padding-left: 30px;
}

.privacy .privacy-content .privacy-section ul li,
.privacy .privacy-content .privacy-section ol li {
  margin-bottom: 10px;
  color: var(--default-color);
}

.privacy .privacy-content .privacy-section .info-box {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-content .privacy-section .info-box h4 {
  color: var(--heading-color);
  margin-top: 0;
}

.privacy .privacy-content .privacy-section .highlight-box {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 20%));
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  color: var(--contrast-color);
  margin: 40px 0;
}

.privacy .privacy-content .privacy-section .highlight-box i {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.privacy .privacy-content .privacy-section .highlight-box h4 {
  color: var(--contrast-color);
  margin-bottom: 15px;
}

.privacy .privacy-content .privacy-section .highlight-box p {
  color: var(--contrast-color);
  margin: 0;
  opacity: 0.9;
}

.privacy .privacy-content .privacy-section .security-measures {
  margin: 30px 0;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.privacy .privacy-content .privacy-section .security-measures .measure-item i {
  font-size: 36px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item h5 {
  margin-bottom: 15px;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item p {
  margin: 0;
  font-size: 14px;
}

.privacy .privacy-content .privacy-section .rights-list {
  margin: 30px 0;
}

.privacy .privacy-content .privacy-section .rights-list .right-item {
  display: flex;
  align-items: flex-start;
  padding: 25px;
  margin-bottom: 20px;
  background: var(--surface-color);
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.privacy .privacy-content .privacy-section .rights-list .right-item:hover {
  border-color: var(--accent-color);
  transform: translateX(5px);
}

.privacy .privacy-content .privacy-section .rights-list .right-item i {
  font-size: 24px;
  color: var(--accent-color);
  margin-right: 20px;
  margin-top: 5px;
  min-width: 24px;
}

.privacy .privacy-content .privacy-section .rights-list .right-item div {
  flex: 1;
}

.privacy .privacy-content .privacy-section .rights-list .right-item div h5 {
  margin-bottom: 10px;
}

.privacy .privacy-content .privacy-section .rights-list .right-item div p {
  margin: 0;
  font-size: 14px;
}

.privacy .privacy-content .privacy-section .cookie-types {
  margin: 30px 0;
}

.privacy .privacy-content .privacy-section .cookie-types h4 {
  margin-bottom: 20px;
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table {
  margin: 0;
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table thead {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table thead th {
  border: none;
  color: var(--heading-color);
  font-weight: 600;
  padding: 15px 20px;
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table tbody td {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 15px 20px;
  color: var(--default-color);
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table tbody tr:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
}

.privacy .privacy-content .contact-section {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.privacy .privacy-content .contact-section h3 {
  color: var(--heading-color);
  margin-bottom: 20px;
}

.privacy .privacy-content .contact-section h3:after {
  background: var(--accent-color);
}

.privacy .privacy-content .contact-section .contact-info {
  margin-top: 30px;
}

.privacy .privacy-content .contact-section .contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.privacy .privacy-content .contact-section .contact-info .contact-item i {
  font-size: 18px;
  color: var(--accent-color);
  margin-right: 15px;
  min-width: 18px;
}

.privacy .privacy-content .contact-section .contact-info .contact-item span {
  color: var(--default-color);
}

@media (max-width: 768px) {
  .privacy .privacy-content {
    font-size: 15px;
  }

  .privacy .privacy-content .privacy-section h3 {
    font-size: 24px;
  }

  .privacy .privacy-content .privacy-section h4 {
    font-size: 20px;
  }

  .privacy .privacy-content .privacy-section .security-measures .row>div {
    margin-bottom: 20px;
  }

  .privacy .privacy-content .privacy-section .rights-list .right-item {
    flex-direction: column;
    text-align: center;
  }

  .privacy .privacy-content .privacy-section .rights-list .right-item i {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}



/* ================= CARD BASE ================= */
/* .choose-card {
  --stripe-gradient: linear-gradient(90deg, #6a11cb, #2575fc);
  --shadow-color: rgba(106, 17, 203, 0.35);
  background: #fff;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  transition: 0.35s ease;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.choose-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: var(--stripe-gradient);
}

.choose-card .icon {
  font-size: 50px;
  margin-bottom: 24px;
  background: var(--stripe-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: 0.35s ease;
}


.choose-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 45px var(--shadow-color);
}

.choose-card:hover .icon {
  transform: scale(1.20);
}

.choose-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.choose-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
} */

/* ================== COLOR VARIANTS ================== */

/* .card-blue {
  --stripe-gradient: linear-gradient(90deg, #6a11cb, #2575fc);
  --shadow-color: rgba(38, 117, 252, 0.35);
}

.card-green {
  --stripe-gradient: linear-gradient(90deg, #00c853, #00e676);
  --shadow-color: rgba(0, 200, 83, 0.35);
}

.card-orange {
  --stripe-gradient: linear-gradient(90deg, #ff6a00, #ff8e53);
  --shadow-color: rgba(255, 106, 0, 0.35);
}

.card-purplepink {
  --stripe-gradient: linear-gradient(90deg, #8e2de2, #ff6bd6);
  --shadow-color: rgba(142, 45, 226, 0.35);
}

.card-gold {
  --stripe-gradient: linear-gradient(90deg, #f2c94c, #f7df71);
  --shadow-color: rgba(242, 201, 76, 0.35);
}

.card-mint {
  --stripe-gradient: linear-gradient(90deg, #00c9ff, #92fe9d);
  --shadow-color: rgba(0, 201, 255, 0.35);
}

.card-rose {
  --stripe-gradient: linear-gradient(90deg, #ff758c, #ff7eb3);
  --shadow-color: rgba(255, 117, 140, 0.35);
} */



/* ================= BASE CARD ================= */
.choose-card {
  --stripe-gradient: linear-gradient(180deg, #7b1e2b, #4a0f18);
  --shadow-color: rgba(123, 30, 43, 0.28);
  background: #ffffff;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  /* text-align: left; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border: 1px solid rgba(123, 30, 43, 0.1);
  transition: all 0.4s ease;
}

/* ================= LEFT BORDER STRIPE ================= */
.choose-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: var(--stripe-gradient);
}

/* ================= ICON ================= */
.choose-card .icon {
  font-size: 46px;
  margin-bottom: 22px;
  color: #7b1e2b;
  transition: transform 0.4s ease;
}

/* ================= TEXT ================= */
.choose-card h3 {
  font-size: 22px;
  font-weight: bold;
  color: #1f1f1f;
  margin-bottom: 10px;
}

.choose-card p {
  font-size: 16px;
  line-height: 1.5;
  color: #555;
}

/* ================= HOVER ================= */
.choose-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 18px 40px var(--shadow-color);
  background: linear-gradient(180deg,
      #ffffff,
      #fff9f7);
}

.choose-card:hover .icon {
  transform: scale(1.15);
}

/* ================= VARIANTS ================= */
.card-blue {
  --stripe-gradient: linear-gradient(180deg, #7b1e2b, #d8b66c);
}

.card-purplepink {
  --stripe-gradient: linear-gradient(180deg, #6d1723, #d8b66c);
}

.card-orange {
  --stripe-gradient: linear-gradient(180deg, #8a2432, #d8b66c);
}

/* ================= MOBILE ================= */
/* @media (max-width: 576px) {
  .choose-card h3 {
    font-size: 20px;
  }

  .choose-card p {
    font-size: 15px;
  }
} */




/* CARD DESIGN WITH IMAGE BACKGROUND */
.student-card {
  height: 350px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: 0.45s ease;
}

.student-card .bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
  transition: 0.4s ease;
}

/* OVERLAY */
.student-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.65));
  z-index: 1;
}

/* CONTENT */
.student-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  color: #fff;
}

.student-content h4 {
  font-size: 22px;
  font-weight: 700;
  color: white;
}

.student-content p {
  font-size: 15px;
  max-width: 85%;
}

/* HOVER EFFECTS */
.student-card:hover {
  transform: translateY(-10px);
}

.student-card:hover .bg-img {
  transform: scale(1.15);
  filter: brightness(0.85);
}


.section-title span {
  background: linear-gradient(90deg, #3f51b5, #ff9800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* ================= TESTIMONIAL CARD ================= */
.testimonial-card {
  position: relative;
  padding: 45px 35px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  border: 1px solid rgba(128, 0, 32, 0.15);
  /* maroon soft border */

  /* PREMIUM MAROON SHADOW */
  box-shadow:
    0 12px 28px rgba(128, 0, 32, 0.18),
    0 6px 12px rgba(0, 0, 0, 0.08);

  transition: all 0.4s ease;
  overflow: hidden;
}

/* Hover effect – subtle & premium */
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 40px rgba(128, 0, 32, 0.28),
    0 8px 18px rgba(0, 0, 0, 0.12);
}

/* ================= GRADIENT GLOW BORDER ================= */
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 25px;
  padding: 2px;

  /* MAROON + GOLD ACADEMIC GRADIENT */
  background: linear-gradient(135deg,
      #800020,
      /* maroon */
      #a0002a,
      #d4af37
      /* gold */
    );

  z-index: -1;
  filter: blur(6px);
  opacity: 0.45;
}

/* ================= QUOTE ICON ================= */
.quote-icon {
  font-size: 15rem;
  position: absolute;
  top: 5px;
  right: 15px;

  /* Elegant maroon tone */
  color: #800020;
  opacity: 0.08;

  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}

/* Mobile */
@media (max-width: 576px) {
  .quote-icon {
    right: 10px;
    top: 5px;
  }
}

/* ================= PARENT IMAGE ================= */
.parent-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;

  border: 4px solid #fff;

  /* Premium maroon shadow */
  box-shadow:
    0 6px 16px rgba(128, 0, 32, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.15);
}

/* ================= CAROUSEL INDICATORS ================= */
.carousel-indicators button {
  width: 13px !important;
  height: 13px !important;
  border-radius: 50%;
  background-color: #d6b4bd !important;
  /* soft maroon tint */
  border: none !important;
  margin: 6px;
  opacity: 1 !important;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  width: 15px !important;
  height: 15px !important;

  /* Maroon → Gold gradient */
  background: linear-gradient(90deg, #800020, #d4af37) !important;

  box-shadow: 0 0 10px rgba(128, 0, 32, 0.6);
}

/* ================= TEXT STYLING ================= */
.testimonial-text {
  font-size: 17px;
  line-height: 1.75;
  color: #3b3b3b;
}

.parent-role {
  color: #800020;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ================= BUTTON ================= */
.welcome-btn {
  background: linear-gradient(135deg, #800020, #a0002a);
  color: #fff;
  border: none;

  box-shadow:
    0 6px 18px rgba(128, 0, 32, 0.4);

  transition: all 0.3s ease;
}

.welcome-btn:hover {
  background: linear-gradient(135deg, #a0002a, #800020);
  box-shadow:
    0 10px 26px rgba(128, 0, 32, 0.55);
}


/* .testimonial-card {
  position: relative;
  padding: 45px 35px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}


.testimonial-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 25px;
  padding: 2px;
  background: linear-gradient(135deg, #3f51b5, #7e57c2, #ff9800);
  z-index: -1;
  filter: blur(5px);
  opacity: 0.4;
}

.quote-icon {
  font-size: 15rem;
  position: absolute;
  top: 5px;
  right: 15px;
  color: #3f51b5;
  opacity: 0.10;
  font-family: Arial, sans-serif;
  line-height: 1;
  pointer-events: none;
  transform: translateY(0);
}

@media (max-width: 576px) {
  .quote-icon {
    right: 10px;
    top: 5px;
  }
}

.parent-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.carousel-indicators button {
  width: 13px !important;
  height: 13px !important;
  border-radius: 50%;
  background-color: #c7c7c7 !important;
  border: none !important;
  margin: 6px;
  opacity: 1 !important;
  transition: 0.3s ease-in-out;
}

.carousel-indicators .active {
  background: linear-gradient(90deg, #3f51b5, #ff9800) !important;
  width: 15px !important;
  height: 15px !important;
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
}

.parent-role {
  color: #3f51b5;
  font-size: 14px;
}

.welcome-btn {
  background-color: var(--accent-color);
} */



/* ===== PARALLAX SECTION ===== */
/* .parallax-section {
    position: relative;
    background-image: url("./assets/img/campus1.jpeg"); 
    height: 80vh;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.parallax-overlay {
    width: 100%;
    height: 100%;
    background: rgba(47, 23, 37, 0.65); 
    display: flex;
    justify-content: center;
    align-items: center;
}

.parallax-content {
    text-align: center;
    color: #fff;
}

.parallax-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.parallax-content p {
    font-size: 1.2rem;
    margin-top: 10px;
    opacity: 0.9;
}

.btn-admission {
    background: #b94d63;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    border: none;
    color: white;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-admission:hover {
    background: #7c3848;
    transform: scale(1.05);
} */



/* -------------------------------------
           PARALLAX SECTION BANNER
        ---------------------------------------*/
.parallax-banner {
  background-image: url('../img/education-2.jpg');
  height: 350px;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.parallax-banner h2 {
  font-size: 45px;
  font-weight: 700;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}


.admission-btn {
  background-color: var(--accent-color);
  color: white !important;
  font-size: 1rem;
  border-radius: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.admission-btn:hover {
  background: white;
  color: var(--accent-color) !important;
}

.global-explore-btn {
  font-size: 1rem;
  /* background: linear-gradient(135deg, var(--brand-1), var(--brand-2)); */
  border: 1px solid white !important;
  color: white;
  border-radius: 20px;
  font-weight: bold;
  transition: all 0.3s ease;

}

.global-explore-btn:hover {
  background-color: white;
  color: black;
  /* background-color: var(--accent-color);
  color: white; */
}


.explore-curriculum-btn {
  border: 1px solid white !important;
}

/* .explore-curriculum-btn:hover{
  background-color: var(--accent-color);
  border: 0;

} */

/* ===== Facilities Section ===== */
/* .facilities-section {
    background: #f9f4f6;
} */

/* .section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #7c3848;
} */

/* .section-subtitle {
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto;
    color: #6f6f6f;
} */

/* ===== Facility Cards ===== */
.facility-card {
  /* background: rgba(255, 255, 255, 0.85); */
  border-radius: 22px;
  /* box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08); */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  /* box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px; */
  transition: all 0.35s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-top: 5px solid #5c2b35;

}

.facility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(124, 56, 72, 0.25);
  transition: all 0.5s ease;
}

/* .facility-card:hover .icon-wrap{
  scale: (1.40);
} */

.icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3848, #5c2b35);
  box-shadow: 0 6px 15px rgba(124, 56, 72, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-wrap i {
  font-size: 40px;
  color: #fff;
}

.facility-card h5 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #5c2b35;
}

.facility-card p {
  font-size: 0.95rem;
  color: #6f6f6f;
  line-height: 1.6;
}



/* ==========================================PARALLAX QUOTE STRIP==========================================*/
.parallax-quote {
  position: relative;
  /* height: 300px; */
  height: 350px;
  background-image: url('../img/education-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.parallax-quote h2 {
  font-size: 34px;
  font-weight: 700;
  position: relative;
}

.parallax-quote p {
  font-size: 18px;
  margin-top: 10px;
  opacity: 0.9;
}

/* ---------- ADMISSION MODAL ---------- */
.cta-card {
  /* background-color: #7c3848; */
  background: linear-gradient(135deg, #5c2b35, #7c3848);
  /* background-color: #8f4455; */
  color: white;
  border: none
    /* background-color: #5c2b35; */
}

.apply-btn {
  background-color: white;
  border: none;
  /* font-size: 18px; */
}

.apply-btn:hover {
  background-color: #000;
  color: white;
}

.contact-btn {
  background-color: #000;
  color: white;
}

.contact-btn:hover {
  background-color: white;
  color: #000;

}

.modal-header {
  background: var(--accent-color);
  color: #fff;
}

.form-floating .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: none;
}


.about-bg-parallax {
  position: relative;
  min-height: 75vh;
  background: url('../img/campus-img.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

/* .about-hero .parallax-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/campus-6.jpg');
  background-size: cover;
  background-position: center;
  transform: translateZ(0);
  will-change: transform;
  filter: brightness(0.55) contrast(1.05);
} */

.about-bg-parallax .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(92, 43, 53, 0.6), rgba(124, 56, 72, 0.45) 60%);
  /* background: linear-gradient(to right, rgba(0, 0, 0, .7), rgba(0, 0, 0, .35)); */
}

.about-bg-parallax .container {
  position: relative;
  z-index: 2;
}

.about-bg-parallax h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.4px;
}

.about-bg-parallax p.lead {
  font-size: 1.05rem;
  opacity: 0.95;
}

/* MISSION / VALUES */
.card-feature {
  border: none;
  border-radius: 20px;
  transition: transform .36s ease, box-shadow .36s ease;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 246, 246, 0.98));
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
  border-left: 5px solid var(--accent-color);
}

.card-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(128, 0, 32, 0.2);
  /* box-shadow: 0 18px 40px rgba(124, 56, 72, 0.12); */
}

.card-feature h5 {
  font-weight: bold;
  color: var(--accent-color);
}

/* STATS COUNTERS */
.stats {
  background: linear-gradient(90deg, var(--accent), #fff);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  /* box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px; */
  border-top: 5px solid var(--accent-color);
  border-radius: 20px;
  padding: 20px;
  /* box-shadow: var(--card-shadow); */
}

.stat-number {
  color: var(--maroon-2);
  font-weight: bold;
  font-size: clamp(20px, 3vw, 36px);
}

/* FACULTY / CTA */
.pink-strip {
  display: block;
  height: 6px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--maroon-2), var(--maroon-3));
  /* margin: 12px 0 18px; */
  width: 64px;

}

/* .badge-theme {
  background: linear-gradient(90deg, var(--maroon-1), var(--maroon-3));
  color: white;
  border-radius: 8px;
  padding: 6px 10px;
  font-weight: 600;
} */


/* Parallax Image Section */
.methodology-img {
  background-image: url("../img/methodology-img.jpg");
  /* background-attachment: fixed; */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 250px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.4);
  border-radius: 8px;

}

/* Text Block */
.methodology-card p {
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
  color: #333;
}

.methodology-card {
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.4);
}


/* -------------------------------------------
   PARALLAX HERO SECTION
------------------------------------------- */
.establish-hero {
  height: 300px;
  background-image: url('../img/library-img1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.establish-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 61, 0.80);
}

.establish-box {
  position: relative;
  z-index: 2;
}

.gold-line {
  width: 120px;
  height: 4px;
  background: var(--gold);
  /* background: var(--maroon-3); */
  border-radius: 10px;
}

/* -------------------------------------------
   CARD STYLING
------------------------------------------- */
.info-card {
  background: linear-gradient(135deg, var(--navy), var(--maroon));
  color: white;
  text-align: center;
  border-radius: 20px;
  padding: 40px;
}

.icon-style {
  font-size: 55px;
  color: var(--gold);
}

.text-card {
  background: #ffffff;
  border-left: 6px solid var(--maroon);
  border-radius: 18px;
  transition: 0.3s ease;
}

.text-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Circular profile image */
.profile-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto;
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #d4b26a;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}


/* Responsive fix */
@media (max-width: 768px) {
  .info-card {
    padding: 30px;
  }
}




/* =====================PARALLAX BANNER=========================== */
.inspiring-bg-parallax {
  background-image: url("../img/inspiring-img.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  /* text-align: center; */
  color: white;
  position: relative;
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.inspiring-bg-parallax h2 {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 3px 8px rgba(0, 0, 0, .5);

}




/* ==================== CONTENT SECTIONS =========================== */
.content-box {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: all .3s;
}

.content-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.12);
}

.content-box ul li {
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
}

/* ===========================
            PREMIUM GOAL STRIP
        =========================== */
.goal-strip-pro {
  background: linear-gradient(135deg, var(--maroon-1), var(--maroon), var(--maroon-2));
  /* padding: 100px 20px; */
  padding: 60px;
  position: relative;
  overflow: hidden;
}

/* Decorations */
.goal-strip-pro::before,
.goal-strip-pro::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  top: -60px;
  right: -80px;
}

.goal-strip-pro::after {
  bottom: -60px;
  left: -80px;
  top: auto;
}

/* Goal Card */
.goal-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  /* padding: 60px; */
  border-radius: 25px;
  text-align: center;
  color: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all .4s ease;
}

.goal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.35);
}

.icon-wrap-eye {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  /* margin-bottom: 25px; */
  /* font-size: 3rem; */
  transition: 0.3s ease;
}

.icon-wrap-eye i {
  font-size: 2.9rem;
}

.goal-card:hover .icon-wrap {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.28);
}

.goal-title {
  font-size: 2.2rem;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.goal-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #fff;
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  border-radius: 10px;
  transition: 0.4s;
}

.goal-card:hover .goal-title::after {
  width: 130px;
}

.goal-text {
  /* margin-top: 25px; */
  font-size: 1rem;
  line-height: 1.8;
  max-width: 900px;
  /* margin-left: auto; */
  /* margin-right: auto; */
}

/* Responsive */
@media (max-width: 768px) {
  .goal-card {
    padding: 40px 25px;
  }

  .goal-title {
    font-size: 2rem;
  }

  .icon-wrap {
    width: 75px;
    height: 75px;
    font-size: 2rem;
  }

  .goal-text {
    font-size: 1.05rem;
  }
}

/* IMAGE STYLE */
.rounded-img {
  border-radius: 20px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.mv-card {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  /* box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1); */
}


.mv-title {
  /* color: var(--heading-color); */
  /* font-size: 1.8rem; */
  color: var(--maroon-2);
}

.mv-list {
  font-size: 0.95rem;
}

.mv-list li {
  color: #333;
}

.mv-list i {
  font-size: 1.2rem;
}


/* Image box */
.image-box {
  border: 3px solid var(--maroon-1);
}

.image-box img {
  height: 100%;
  object-fit: cover;
}

/* Responsive fixes */
@media (max-width: 991px) {
  .mv-title {
    text-align: center;
  }
}





/* Premium 2-Column About Section */
.achievement-box {
  /* background: #fff; */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Image styling */
.achievement-img {
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Achievements heading */
.ach-title {
  font-size: 30px;
  font-weight: 700;
  color: #6a2b37;
  /* margin-top: 50px; */
  /* margin-bottom: 20px; */
}

/* Achievements bullet box */
.ach-box {
  background: white;
  border-left: 5px solid #6a2b37;
  /* padding: 20px; */
  margin-bottom: 18px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  text-align: justify;
}

.ach-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.ach-box i {
  font-size: 22px;
  color: #6a2b37;
  /* margin-right: 8px; */
}

/* Parallax Banner */
.achievement-bg-parallax {
  /* background-image: url("../img/achievement.jpg"); */
  /* background-image: url("https://example.com/img/bg-img1.jpg"); */
  background-image: url("../img/achievement-img.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 60vh;
  /* font-size: 40px;
  font-weight: 800; */
  text-shadow: 0 5px 25px rgba(0, 0, 0, 0.6);
}


/* .achievement-bg-parallax::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
} */


.achievement-bg-parallax h2 {
  font-size: 3.2rem;
  color: var(--gold);
  /* color: white; */
}

.achievement-bg-parallax p {
  font-weight: 800;
  font-size: 2rem;
  max-width: 900px;
}





/* --- PREMIUM PARALLAX HEADER --- */
.blog-hero {
  background: url('../img/blog-img.jpg') center/cover fixed no-repeat;
  height: 350px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.blog-hero h2 {
  /* color: #fff; */
  color: var(--gold);
  font-size: 3.2rem;
  z-index: 10;
  font-weight: 800;
  letter-spacing: 1px;
}

/* --- GRID BLOG CARDS --- */
.blog-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: 0.35s ease;
  background: #fff;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h4 {
  font-weight: 700;
}

.blog-content p {
  color: #555;
}

.read-more {
  color: #ffb300;
  font-weight: 600;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

/* --- SIDEBAR --- */
.sidebar-box {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
  margin-bottom: 25px;
}

.sidebar-title {
  font-size: 1.3rem;
  color: #ffb300;
  font-weight: 700;
  margin-bottom: 15px;
}

.sidebar-list li {
  list-style: none;
  /* padding: 8px 0; */
  border-bottom: 1px solid #eee;
}

.sidebar-list li:last-child {
  border-bottom: none;
}

.sidebar-list a {
  color: #333;
  font-weight: 500;
  text-decoration: none;
}

.sidebar-list a:hover {
  color: #ffb300;
}

/* --- SEARCH BUTTON --- */
.search-btn {
  background: #ffb300;
  border: none;
  font-weight: bold;
  padding: 10px 20px;
}

.search-btn:hover {
  background: #e29d00;
}


/* ---------------- HERO PARALLAX ---------------- */
.newsletter-parallax {
  height: 300px;
  background-image: url('../img/newsletter-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.newsletter-parallax::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.newsletter-parallax h2 {
  position: relative;
  /* color: #fff; */
  color: var(--gold);
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 0 5px 18px rgba(0, 0, 0, 0.9);
  z-index: 10;
  animation: fadeDown 1.3s ease-out;
}

@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------------- CONTENT BOX ---------------- */
.content-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  margin-bottom: 70px;
  transition: 0.4s;
}

.content-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.content-card p {
  line-height: 1.85;
  font-size: 16px;
  color: #444;
}

.premium-box {
  background: #ffffff;
  /* border-radius: 20px; */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: .4s ease-in-out;
  border-left: 6px solid #7a112f;
  position: relative;
  overflow: hidden;
}

.premium-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.14);
}

.premium-box::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(122, 17, 47, 0.08);
  top: -60px;
  right: -60px;
  border-radius: 50%;
  z-index: 0;
}

.premium-box p {
  position: relative;
  z-index: 2;
  color: #444;
  line-height: 1.7;
  margin-bottom: 14px;
}



/* ================= SECTION ================= */
.distinct-section {
  /* background: #f6f6f6; */
  overflow: hidden;
}

/* ================= PARALLAX ================= */
.distinct-parallax {
  height: 60vh;
  background: url('../img/science-lab.jpg') center/cover fixed no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.parallax-title {
  position: relative;
  /* color: #ffd700; */
  color: var(--gold);
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: 3px;
  /* padding: 18px 45px; */
  border-radius: 18px;
  /* border:2px solid rgba(255,215,0,0.6); */
  /* backdrop-filter: blur(6px); */
  z-index: 2;
}

/* ================= GLASS CARDS ================= */
.glass-card {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
  height: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
  color: #fff !important;
}


/* ================= UNIQUE CARDS ================= */
.unique-cards {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.unique-cards span {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  font-weight: 500;
  color: #2e2e2e;
  padding: 10px 14px;
  border-radius: 12px;
  transition: 0.4s ease;
}

.unique-cards span i {
  font-size: 1.25rem;
  color: #8b0000;
  min-width: 26px;
}

.unique-cards span:hover {
  background: linear-gradient(135deg, #8b0000, #b22222);
  color: #fff;
  transform: translateX(6px);
}

.unique-cards span:hover i {
  color: #ffd700;
}


/* .unique-cards span {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(145deg, #ffffff, #f3f3f3);
    padding: 14px 18px;
    margin-bottom: 14px;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 500;
    color: #2c2c2c;
    transition: all 0.4s ease;
    box-shadow:
        0 6px 18px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.unique-cards span i {
    min-width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #8b0000, #a80000);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.4);
}

.unique-cards span:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, #8b0000, #b22222);
    color: #ffffff;
    box-shadow:
        0 15px 35px rgba(139, 0, 0, 0.45),
        0 0 0 1px rgba(255, 215, 0, 0.4);
}


.unique-cards span:hover i {
    background: #ffd700;
    color: #8b0000;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
} */


.gallery-item {
  position: relative;
  overflow: hidden;
  /* height: 100%; */
  aspect-ratio: 4/3;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .1)
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .5s;
  border-radius: 16px;
}

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

.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}


.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  opacity: 0;
  transition: .3s;
  z-index: 1
}

.gallery-item:hover::before {
  opacity: 1
}

/* ICON BUTTON */
.glightbox-trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  /* color: #1e2a78; */
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  opacity: 0;
  z-index: 2;
  transition: .3s;
  text-decoration: none
}

.gallery-item:hover .glightbox-trigger {
  opacity: 1
}



.filter-btns .btn {
  margin: 6px;
  /* padding:8px 24px; */
  border-radius: 50px;
  border: 2px solid var(--accent-color);
  background: transparent;
  color: var(--accent-color);
  font-weight: bold;
  position: relative;
  overflow: hidden;
  transition: all .35s ease;
}

/* Hover effect */
.filter-btns .btn:hover {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(30, 42, 120, .25);
}

/* Active button */
.filter-btns .btn.active {
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 10px 28px rgba(30, 42, 120, .3);
}


/* ================= PARALLAX HEADER ================= */
.parallax-header {
  background: url('../img/teachers-img1.jpg');
  /* background-attachment: fixed; */
  background-size: cover;
  background-position: center;
  position: relative;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.parallax-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
}

.parallax-header .content {
  position: relative;
  text-align: center;
  /* color: var(--maroon-2); */

}

.parallax-header h2 {
  color: white;
  font-size: 3.2rem;
  font-weight: bold;

}


/* ================= TABLES ================= */
.premium-table {
  /* background: #fff; */
  border-radius: 16px;
  overflow: hidden;
  /* box-shadow: 0 15px 35px rgba(0, 0, 0, .08); */
}

/* .premium-table thead {
  background: linear-gradient(45deg, #c89b3c, #f4c430);
  color: #000;
} */

.premium-table th,
.premium-table td {
  /* padding: 14px; */
  vertical-align: middle;
  /* font-size: 14px; */
}

.premium-table tbody tr:hover {
  background: #f9f6ef;
}


.table th,
td {
  border: 1px solid #000;
}

.message-text-card {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* ================= PARALLAX HEADER ================= */
.team-header {
  background: url('../img/teachers-teams-img.jpg') center/cover fixed;
  height: 60vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.team-header h2 {
  color: white;
  font-size: 3.2rem;
  font-weight: bold;
  z-index: 1;
}

.team-header p {
  /* color: #ddd; */
  color: yellow;
  font-weight: bold;
  font-size: 18px;
  z-index: 1;
}

/* ================= CARD DESIGN ================= */
.teacher-card {
  /* background: #fff; */
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1); */
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  /* box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset; */
  /* box-shadow: 0 22px 48px rgba(10, 20, 40, 0.12); */
  transition: 0.5s;
  position: relative;
  height: 100%;
}

.teacher-card:hover {
  transform: translateY(-15px);
}

.teacher-img {
  position: relative;
  overflow: hidden;
  /* border-radius: 20px; */
}

.teacher-img img {
  width: 100%;
  /* height: 200px; */
  object-fit: cover;
  transition: 0.5s;
}

.teacher-card:hover img {
  transform: scale(1.1);
}

.teacher-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .75), transparent);
  opacity: 0;
  transition: 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  /* flex-wrap: wrap;
  flex-direction: row;
  align-content: center;
  justify-content: center; */
}

.teacher-card:hover .teacher-overlay {
  opacity: 1;
}


.social-team-icons a {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  display: inline-flex;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
  font-size: 1.2rem;
}

.social-team-icons a:hover {
  background: var(--maroon-2);
}

/* ================= CONTENT ================= */
.teacher-content {
  text-align: center;
}

.team-designation {
  font-size: 16px;
}

/* .teacher-content p {
  font-size: 14px;
  color: #666;
} */

/* ================= RESPONSIVE ================= */
/* @media(max-width:768px){
    .team-header h1{font-size:36px;}
} */



/* Parallax hero */
/* .team-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50vh;
  color: white;
}

.parallax-team-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1529070538774-1843cb3265df?q=80&w=1600&auto=format&fit=crop&ixlib=rb-4.0.3&s=3b5d0b22f1c8d3e8a2d3bce0613d5a75');
  background-size: cover;
  background-position: center;
  transform: translateY(0);
  filter: brightness(0.6) saturate(1.05) contrast(1);
  z-index: 0;
}

.team-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 32, 63, 0.35), rgba(255, 255, 255, 0.05));
  z-index: 1;
}

.team-hero .container {
  z-index: 2;
}



.team-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}

.teachers-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.82));
  border-radius: var(--card-radius);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
  padding: var(--card-padding);
  transition: transform .4s cubic-bezier(.2, .9, .32, 1), box-shadow .4s;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(13, 110, 253, 0.06);
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.teachers-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(10, 20, 40, 0.12)
}

.teacher-media {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.teacher-photo {
  width: 96px;
  height: 96px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(12, 32, 63, 0.08);
  border: 4px solid rgba(255, 255, 255, 0.65);
  background: linear-gradient(180deg, #fff, #f6f9ff);
}

.teacher-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.teacher-info h5 {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem
}

.teacher-info small {
  display: block;
  color: var(--muted);
  margin-top: 6px
}

.teacher-bio {
  margin-top: 0.9rem;
  color: #394455;
  flex: 1;
}

.teacher-footer {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 1rem
}

.social-btn {
  background: transparent;
  border: none;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
  color: var(--primary);
}

.social-btn:hover {
  transform: translateY(-3px);
  background: rgba(13, 110, 253, 0.06)
}


.card-overlay {
  position: absolute;
  inset: auto 0 0 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(12, 32, 63, 0.03));
  pointer-events: none;
}


.dept-filters {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1.6rem
}

.dept-filters .btn {
  border-radius: 999px;
  padding: .45rem .9rem
}

.modal-teacher-photo {
  width: 140px;
  height: 140px;
  border-radius: 14px;
  overflow: hidden;
  margin-right: 1rem
}

@media (max-width:991px) {
  .teacher-photo {
    width: 84px;
    height: 84px
  }
}

@media (max-width:576px) {
  .section-title h2 {
    font-size: 1.45rem
  }

  .teacher-card {
    min-height: 300px
  }
} */



/* ===========================
   ACADEMICS HERO SECTION
=========================== */

.academics-hero {
  position: relative;
  height: 75vh;
  overflow: hidden;
  color: #fff;
}

/* PARALLAX BACKGROUND */
.parallax-academics-bg {
  position: absolute;
  inset: 0;
  background: url("../img/student-img.jpg") center center / cover no-repeat;
  transform: scale(1.08);
  will-change: transform;
  z-index: 1;
  filter: brightness(0.55) contrast(1.05);
  /* transform: translateZ(0); */
}

/* DARK OVERLAY */
.academics-hero .overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to right,
      rgba(5, 35, 75, 0.85),
      rgba(5, 35, 75, 0.55)); */
  background: linear-gradient(180deg, rgba(92, 43, 53, 0.6), rgba(124, 56, 72, 0.45) 60%);
  z-index: 2;
}

/* CONTENT ABOVE */
.academics-hero .container {
  position: relative;
  z-index: 3;
}


/* .academics-hero .btn:hover {
  background: #ff4081;
  transform: translateY(-2px);
} */



.academic-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  color: #4a4a4a;
}

.academic-feature-list li i {
  color: var(--accent-color);
  font-size: 1.4rem;
}



/* Parallax Section */
.parallax-teaching {
  background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.9)), url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 60vh;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.teaching-para {
  max-width: 700px;
  text-align: center;
}




/* MOBILE OPTIMIZATION */
/* @media (max-width: 768px) {
  .academics-hero {
    text-align: center;
  }

  .pink-strip {
    margin-left: auto;
    margin-right: auto;
  }
} */


/* ======= Curriculum Section ======= */

/* Card Design */
.curriculum-card {
  background: #fff;
  /* padding: 45px 35px; */
  text-align: center;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  height: 100%;
  /* box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08); */
  transition: all 0.45s ease;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

/* Border Animation */
.curriculum-card .hover-border {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 2px solid transparent;
  transition: 0.4s;
}

.curriculum-card:hover .hover-border {
  border-color: #6b0f1a;
}

.curriculum-card:hover {
  transform: translateY(-12px);
}

/* Icon */
.icon-wrap {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6b0f1a, #9e1b32);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 10px 25px rgba(107, 15, 26, 0.4);
}

.icon-wrap i {
  font-size: 32px;
  color: #fff;
}

/* Card Title */
.curriculum-card h4 {
  font-size: 1.45rem;
  font-weight: 600;
  color: #6b0f1a;
  margin-bottom: 15px;
}

/* Card Text */
.curriculum-card p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #666;
  margin-bottom: 25px;
}

/* Button */
.curriculum-btn {
  padding: 10px 28px;
  border-radius: 30px;
  background: linear-gradient(to right, #6b0f1a, #9e1b32);
  color: #fff;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.4s ease;
  border: none;
}

.curriculum-btn:hover {
  background: #fff;
  color: #6b0f1a;
  border: 1px solid #6b0f1a;
}


/* ===== Academic Journey Section ===== */

.academic-journey {
  background: #faf7f8;
  position: relative;
}

/* Timeline Wrapper */
.timeline-wrapper {
  position: relative;
  padding: 50px 0;
}

/* Center Line */
.timeline-wrapper::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: #6b0f1a;
  transform: translateX(-50%);
}

/* Timeline Card */
.timeline-card {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.timeline-card.left {
  left: 0;
  text-align: right;
}

.timeline-card.right {
  left: 50%;
  text-align: left;
}

/* Card Content */
.timeline-content {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.timeline-content h4 {
  font-size: 1.4rem;
  color: #6b0f1a;
  font-weight: 600;
}

.timeline-content span {
  display: inline-block;
  font-size: 0.85rem;
  color: #9e1b32;
  margin-bottom: 10px;
  font-weight: 600;
}

.timeline-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Icon */
.timeline-icon {
  position: absolute;
  top: 35px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #6b0f1a, #9e1b32);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(107, 15, 26, 0.45);
  z-index: 10;
}

.timeline-card.left .timeline-icon {
  right: -27px;
}

.timeline-card.right .timeline-icon {
  left: -27px;
}

/* Hover Effect */
.timeline-content:hover {
  transform: translateY(-8px);
}

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  .timeline-wrapper::before {
    left: 20px;
  }

  .timeline-card {
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
    text-align: left !important;
    left: 0 !important;
    margin-bottom: 30px;
  }

  .timeline-icon {
    left: -5px !important;
  }
}



/* ===== Facilities Section ===== */

.facilities-section {
  overflow: hidden;
}

/* Facility Card */
.facility-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 280px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.facility-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.facility-card:hover img {
  transform: scale(1.15);
}

/* Overlay */
.facility-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(107, 15, 26, 0.95),
      rgba(107, 15, 26, 0.25),
      transparent);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: all 0.5s ease;
}

.facility-card:hover .facility-overlay {
  opacity: 1;
}

/* Overlay Content */
.overlay-content h5 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.overlay-content span {
  color: #f1cbd1;
  font-size: 0.85rem;
}

/* Hover Lift */
.facility-card:hover {
  transform: translateY(-12px);
}

/* Mobile Optimizations */
@media (max-width: 767px) {
  .facility-card {
    height: 240px;
  }

}




/* ============ TIMELINE ============ */
.timeline {
  position: relative;
  max-width: 1100px;
  margin: 80px auto 0;
}

/* vertical line */
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--maroon));
  transform: translateX(-50%);
}

/* item */
.timeline-item {
  position: relative;
  width: 50%;
  padding: 25px 45px;
}

/* left */
.timeline-item.left {
  left: 0;
  text-align: right;
}

/* right */
.timeline-item.right {
  left: 50%;
}

/* card */
.timeline-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  transition: .4s ease;
  border-left: 5px solid var(--gold);
}

.timeline-item.right .timeline-content {
  border-left: none;
  border-right: 5px solid var(--gold);
}

.timeline-content:hover {
  transform: translateY(-8px);
}

.timeline-content h5 {
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 14.5px;
  color: #555;
  margin: 0;
}

/* icon */
.timeline-icon {
  position: absolute;
  top: 35px;
  right: -28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), #5c0012);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 4px solid var(--gold);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.timeline-item.right .timeline-icon {
  left: -28px;
  right: auto;
}

/* ============ MOBILE ============ */
@media(max-width:991px) {
  .timeline::before {
    left: 30px;
  }

  .timeline-item {
    width: 100%;
    padding: 20px 20px 20px 80px;
    text-align: left !important;
    left: 0 !important;
  }

  .timeline-icon {
    left: 3px !important;
    right: auto;
  }

  .timeline-content {
    border-left: 5px solid var(--gold) !important;
    border-right: none !important;
  }
}

@media(max-width:575px) {
  .section-title {
    font-size: 28px;
  }

  .timeline-content {
    padding: 22px;
  }
}


/* ===========================
       HERO / BEYOND ACADEMICS
       =========================== */
.beyond-academics {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: url('../img/sports-img2.jpg') center/cover no-repeat;
  background-attachment: fixed;
  /* isolation: isolate; */
}

/* Parallax background element (we transform it on scroll) */
/* .beyond-parallax-bg {
  position: absolute;
  inset: 0;
  background: url('../img/sports-img2.jpg') center/cover no-repeat;
  transform: translateY(0px);
  will-change: transform, filter;
  filter: brightness(0.55) contrast(0.95);
  background-attachment: fixed;
  z-index: 0;
} */

/* decorative gradient overlay with blend for maroon-gold vibe */
.beyond-academics .overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(135deg, rgba(122, 16, 32, 0.42) 0%, rgba(180, 40, 50, 0.08) 40%, rgba(240, 195, 109, 0.12) 100%); */
  /* background: linear-gradient(135deg, rgba(122, 16, 32, 0.25), rgba(240, 195, 109, 0.12)); */
  background: radial-gradient(60% 55% at 50% 30%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.6) 100%);
  mix-blend-mode: multiply;
  z-index: 1;
}

/* subtle vignette */
/* .beyond-academics::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 55% at 50% 30%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
  z-index: 2;
} */

.beyond-content {
  position: relative;
  z-index: 2;
}

.beyond-content p {
  font-size: 1.05rem;
  color: rgba(253, 243, 208, 0.95);
  margin-bottom: 1.6rem;
}


.beyond-badges {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.badge-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 1rem 1.5rem;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);

}


/* ✅ MOBILE FIX (important) */
@media (max-width: 768px) {
  .beyond-academics {
    background-attachment: scroll;
  }
}


/* feature cards */
/* .feature-box {
  background: #fff;
  color: #222;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(122, 12, 29, 0.08);
  padding: 1.25rem;
  height: 100%;
  transition: transform .28s ease, box-shadow .28s ease;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(122, 12, 29, 0.12);
}

.feature-box img {
  border-radius: 12px;
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  margin-bottom: 6px;
}

.feature-box h5 {
  font-weight: 700;
  margin: 0;
  color: var(--maroon-dark);
}

.feature-box p {
  margin: 0;
  color: #5b5b5b;
  font-size: 0.95rem;
  margin-top: 6px;
  line-height: 1.45;
  flex-grow: 1;
} */











/* ===== SWIPER ===== */
.swiper {
  padding-bottom: 90px;
}

.beyond-events-card {
  /* background: #fff; */
  /* color:#222; */
  border-radius: 16px;
  overflow: hidden;
  /* box-shadow:0 35px 90px rgba(0,0,0,.45); */
  display: flex;
  /* box-shadow:
    0 18px 38px rgba(0, 0, 0, .28),
    0 6px 14px rgba(0, 0, 0, .18); */
  min-height: 300px;
}


/* ✅ SUBTLE HOVER LIFT (premium feel) */
/* .swiper-slide-active .feature-card {
  transform: translateY(-6px);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, .35),
    0 10px 26px rgba(0, 0, 0, .22);
} */

/* ===== IMAGE FIX (IMPORTANT) ===== */
.image-wrap {
  width: 45%;
  /* height:360px; */
  height: 300px;
  overflow: hidden;
  position: relative;
  /* background:#000; */
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;

}

/* .image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, .25), rgba(0, 0, 0, .05));
} */

/* ===== CONTENT ===== */
.content-wrap {
  width: 55%;
  /* padding:38px 42px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, .28),
    0 6px 14px rgba(0, 0, 0, .18);
  position: relative;
  z-index: 3;
}



.content-wrap h3 {
  color: var(--maroon);
  font-weight: 800;
  margin-bottom: 12px;
}

.content-wrap p {
  font-size: 15.5px;
  line-height: 1.75;
}


/* ===== CUSTOM CONTROLS ===== */
.slider-controls {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 10;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  /* background:rgba(0,0,0,.45); */
  background-color: var(--accent-color);
  color: white;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
  /* transition:.3s; */
}

.slider-btn:hover {
  background: var(--maroon-3);
  color: white;
}

/* ✅ PAUSED STATE */
.play-pause.paused {
  background: var(--maroon) !important;
  color: #fff !important;
}




/* ===== NAVIGATION ===== */
/* .swiper-button-next,
.swiper-button-prev{
  color:var(--gold);
  width:48px;
  height:48px;
  background:rgba(0,0,0,.35);
  border-radius:50%;
}

.swiper-pagination{
  bottom:18px !important;
  z-index:6;
}

.swiper-pagination-bullet{
  width:14px;
  height:14px;
  background:#fff;
  opacity:.4;
  margin:0 6px !important;
}

.swiper-pagination-bullet-active{
  background:var(--gold);
  opacity:1;
  transform:scale(1.2);
} */

/* ===== RESPONSIVE ===== */
@media(max-width:991px) {
  .beyond-events-card {
    flex-direction: column;
    min-height: auto;
  }

  .image-wrap {
    width: 100%;
    height: 260px;
  }

  .content-wrap {
    width: 100%;
    padding: 24px;
  }

  .parallax-bg {
    background-attachment: scroll;
  }
}

@media(max-width:575px) {

  .image-wrap {
    height: 220px;
  }
}



/* ================= HERO PARALLAX ================= */
.health-parallax-bg {
  position: relative;
  height: 50vh;
  background: url('../img/health1.jpg') center/cover fixed;
}

.health-parallax-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.health-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}

.health-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.health-content span {
  display: inline-block;
  margin-top: 8px;
  font-size: 1.1rem;
  color: #f5d88c;
}


/* ================= CONTENT ================= */
.health-img {
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  transition: .5s;
}

.health-img:hover {
  transform: scale(1.04);
}

.health-text p {
  line-height: 1.9;
  font-size: 1.02rem;
}

/* Quote Section */
.quote-section {
  padding: 4rem 0;
  /* background: linear-gradient(135deg, var(--maroon-dark), var(--maroon)); */
  background: linear-gradient(135deg,
      rgba(123, 30, 60, 0.95),
      rgba(60, 10, 25, 0.95));
  color: #fff;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
}

.quote-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
}

.quote-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  /* padding: 1rem; */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-content h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--light-gold);
  position: relative;
  display: inline-block;
}

.quote-content h3::before,
.quote-content h3::after {
  content: '"';
  font-size: 4rem;
  color: var(--gold);
  position: absolute;
  opacity: 0.7;
}

.quote-content h3::before {
  top: -30px;
  left: -20px;
}

.quote-content h3::after {
  bottom: -50px;
  right: -20px;
}

.quote-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}



/* ================= PARALLAX BACKGROUND ================= */
.quote-parallax {
  position: relative;
  padding: 140px 20px;
  background-image: url('https://images.unsplash.com/photo-1543362906-acfc16c67564');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

/* Dark overlay */
.quote-parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(75, 10, 30, 0.75),
      rgba(30, 5, 15, 0.75));
}

/* ================= GLASS CARD ================= */
.quote-glass {
  position: relative;
  max-width: 900px;
  margin: auto;
  padding: 60px 50px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  animation: floatCard 6s ease-in-out infinite;
}

/* Floating animation */
@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ================= BLOCKQUOTE ================= */
.quote-glass blockquote {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  line-height: 1.6;
  text-align: center;
  margin: 0;
}

.quote-icon {
  font-size: 4rem;
  color: #f1c97a;
}

.quote-icon.end {
  vertical-align: bottom;
}

/* ================= AUTHOR ================= */
.quote-author {
  display: inline-block;
  margin-top: 30px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #f1c97a;
  position: relative;
}

/* Gold animated underline */
.gold-underline {
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f1c97a, #ffd700);
  transform: translateX(-50%);
  animation: underlineGrow 2s ease forwards;
}

@keyframes underlineGrow {
  to {
    width: 70%;
  }
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px) {
  .quote-glass {
    padding: 40px 25px;
  }

  .quote-glass blockquote {
    font-size: 1.4rem;
  }
}


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

.schemes-hero {
  position: relative;
  height: 50vh;
  background: url("../img/campus-img3.jpg") center/cover fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.schems-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.schemes-content {
  position: relative;
  color: #fff;
}

.schemes-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
}

.schemes-content p {
  opacity: 0.9;
}

/* ================= SCHEME CARDS ================= */
.scheme-card {
  background: #fff;
  padding: 35px;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

/* .scheme-card span {
  position: absolute;
  top: -18px;
  right: 20px;
  font-size: 60px;
  font-weight: 700;
  color: rgba(212, 175, 55, 0.15);

} */

.scheme-card h5 {
  color: var(--accent-color);
  font-weight: bold;
}

.scheme-card p {
  font-size: 0.95rem;
  color: #555;
  margin-top: 10px;
}

.scheme-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.scheme-card span {
  position: absolute;
  top: -18px;
  right: 20px;
  font-size: 50px;
  font-weight: bold;
  background: linear-gradient(135deg, var(--gold), var(--maroon));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
}

.scheme-card:hover span {
  color: rgba(212, 175, 55, 0.35);
}


.health-card {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}


/* ===== Campus HERO =====  */
.campus-hero {
  position: relative;
  min-height: 75vh;
  background:
    /* linear-gradient(90deg,rgba(88,12,20,.85) 45%,rgba(0,0,0,.4)), */
    linear-gradient(180deg, rgba(92, 43, 53, 0.6), rgba(124, 56, 72, 0.45) 60%),
    url('../img/student3.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
}

.campus-badge {
  background: #fff;
  color: var(--maroon);
  display: inline-block;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: .85rem;
  font-weight: 600;
  /* margin-bottom:18px; */
}

.campus-text {
  max-width: 520px;
  /* margin:18px 0 28px; */
  opacity: .95;
}


/* ===== FLOAT CARD ===== */
.campus-card {
  background: #fff;
  color: #333;
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.campus-card img {
  width: 75px;
  height: 75px;
  object-fit: cover;
  border-radius: 12px;
}

.campus-card h5 {
  margin: 0;
  font-weight: 600;
  color: var(--maroon);
}

.campus-card p {
  font-size: .9rem;
  margin: 6px 0 10px;
}

.campus-meta {
  font-size: .8rem;
  color: #666;
  /* border-top:1px solid var(--accent-color); */
  /* padding-top:8px; */
}

/* ===== RESPONSIVE ===== */
/* @media(max-width:992px){
  .hero-title{font-size:2.4rem;}
  .hero-card{margin-top:40px;}
} */



/* Gallery strip */
.gallery-strip .gallery-track {
  display: flex;
  gap: 12px;
  will-change: transform;
}

.gallery-track-item {
  flex: 0 0 auto;
  width: 320px;
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-track-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


@media (max-width: 991px) {

  .gallery-track-item {
    width: 260px;
    height: 150px;
  }

}

@media (max-width: 575px) {
  .gallery-track-item {
    width: 210px;
    height: 130px;
  }

}

/* CTA */
.contact-cta {
  background: linear-gradient(90deg, var(--maroon-1), var(--maroon-2));
  color: #fff !important;
  padding: 30px;
  border-radius: 16px;
}



/* ========================== CARD BASE ========================== */
.premium-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: all 0.35s ease;
  position: relative;
  /* border: 1px solid rgba(255,255,255,0.5); */
  cursor: pointer;
}

.premium-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  /* border-color: var(--accent-color); */
}

.premium-card h5,
.premium-card h6 {
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 12px;
}

.premium-card p {
  color: #666;
  font-size: 14px;
}


/* COUNTER */
.counter-box {
  background: #fff;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all .35s ease;
}

.counter-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
  /* border-color: var(--gold); */
}

.counter-box h3 {
  font-size: 38px;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 5px;
}


/* MAIN IMAGE */
.main-learning-img {
  border-radius: 18px;
  transition: .4s ease;
  width: 100%;
  object-fit: cover;
}

.main-learning-img:hover {
  transform: scale(1.02);
}

/* GLASS CARD */
.learning-card {
  background: rgba(107, 15, 26, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  /* padding: 25px; */
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: .3s ease-in-out;
}

.learning-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.global-campus-title {
  font-size: 2.6rem !important;
}

/* FACULTY ICON BOX (if used later) */
/* .icon-box {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 15px;
} */

/* ----------campus-parallax-section ---------- */
.campus-parallax-section {
  background: url('../img/library-img1.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  min-height: 60vh;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* .campus-parallax-section h2 {
  font-size: 2.8rem;
  color: white;
} */


/* .campus-parallax-section p {
  color: var(--maroon-1);
} */

.campus-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}


/* ---------- IMAGE GALLERY ---------- */
.campus-gallery img {
  width: 100%;
  border-radius: 15px;
  height: 280px;
  object-fit: cover;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
}

/* ---------- CAMPUS HIGHLIGHTS ---------- */
.campus-highlight {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
  transition: 0.35s;
  height: 100%;
}

.campus-highlight:hover {
  transform: translateY(-10px);
}

.highlight-img {
  height: 230px;
  background-size: cover;
  background-position: center;
}

.highlight-content {
  padding: 12px;
}

.highlight-content h3 {
  color: var(--maroon);
  font-weight: bold;
}

/* ---------- FACULTY LIFE PARALLAX ---------- */
.faculty-life-section {
  position: relative;
  height: 60vh;
  overflow: hidden;
  /* margin-top: 60px; */
}

.faculty-parallax-bg {
  background: url("../img/Teachers-img.jpg") center/cover fixed;
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.faculty-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  /* background: rgba(30, 0, 0, 0.65); */
  /* backdrop-filter: blur(2px); */
}

/* ---------- FACULTY CARDS ---------- */
.faculty-cards {
  /* background: white; */
  border-radius: 20px;
  text-align: center;
  /* padding: 35px; */
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-top 0.4s ease;
  border-top: 5px solid var(--maroon-3);
  /* Prevent flicker / layout shift */
  will-change: transform;
}

.faculty-cards:hover {
  transform: translateY(-10px);
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.2);
  /* border-top: 5px solid var(--maroon-3); */
}

.faculty-cards h4 {
  font-weight: bold;
  color: var(--maroon-3);
  /* color: var(--accent-color); */

}

.faculty-icon {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background: var(--maroon);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  margin: 0 auto 20px;
  transition:
    transform 0.4s ease;
}

.faculty-cards:hover .faculty-icon {
  background: var(--maroon-3);
  /* color: #000; */
  transform: scale(1.1);
}





/* ---------- PREMIUM FACILITIES HERO (Parallax + Glass) ---------- */
.facilities-hero {
  min-height: 75vh;
  position: relative;
  display: flex;
  align-items: center;
  background-image: linear-gradient(180deg, rgba(92, 43, 53, 0.6), rgba(124, 56, 72, 0.45) 60%), url('../img/facilities-img.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  z-index: 1;
}

.facilities-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 18, 18, 0.75), rgba(18, 18, 18, 0.28));
  z-index: 0;
}

.facilities-hero .container {
  position: relative;
  z-index: 2
}

.global-badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 40px;
  /* background: #fff0f3; */
  background-color: var(--accent-color);
  color: white;
  /* color: var(--brand-2); */
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 6px 18px rgba(192, 46, 89, 0.08);
}

.facilities-title {
  color: #fff;
  font-size: 3.2rem;
  line-height: 1.05
}

.facilities-text {
  color: rgba(255, 255, 255, 0.92);
  max-width: 600px;
  margin-top: 14px;
  font-size: 1.05rem
}

.explore-facilities-btn {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  border: 1px solid white;
  color: white;
  border-radius: 20px;
  font-weight: bold;
  font-size: 1.2rem;
  /* transition: all 0.3s ease; */
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
  display: inline-block;
  /* box-shadow: 0 12px 30px rgba(201, 42, 89, 0.18); */
  /* transition: all .35s ease; */
  /* transform: translateY(0); */
}


.explore-facilities-btn:hover {
  color: #000;
  font-weight: 700;
  background-color: white;
  /* transform: translateY(-3px); */
}

/* .admission-btn-border {
  border: 2px solid rgba(255, 199, 209, 0.18);
  color: #fff;
  padding: 12px 26px;
  border-radius: 999px;
  background: transparent
} */

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 60px rgba(6, 6, 6, 0.28)
}

.facility-img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 12px
}

/* ---------- FACILITIES GRID ---------- */

.facility-item {
  border-radius: 16px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 12px 30px rgba(5, 5, 10, 0.04)
}

.facility-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px
}

.facility-title {
  font-weight: 700;
  margin-bottom: 6px
}

.facility-desc {
  color: var(--muted);
  font-size: 0.95rem
}


/* Parallax Gallery (Swiper) */
.campus-slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px
}


/* Responsive tweaks */
@media(max-width:992px) {
  .facilities-title {
    font-size: 2.2rem
  }

  .facilities-hero {
    padding: 60px 0
  }

  .campus-slide img {
    height: 260px
  }
}



/* ---------- PREMIUM PARALLAX HERO ---------- */
.parent-parallax-section {
  background-image: url('../img/parents-digital-app.jpg');
  height: 50vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parent-parallax-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.parent-title {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
}


/* ---------- FEATURE BOXES ---------- */
.mobile-feature-box {
  background: #f8f9fc;
  padding: 28px;
  border-radius: 15px;
  height: 100%;
  transition: 0.4s ease;
  border: 1px solid #eee;
}

.mobile-feature-box:hover {
  transform: translateY(-10px);
  background: #fff;
  box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.1);
}

.mobile-feature-title {
  color: var(--accent-color);
  font-weight: bold;
  font-size: 20px;
}



/* ----------Sports PARALLAX SECTION ---------- */
.sports-parallax-section {
  background: url('../img/yoga-img.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  min-height: 50vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sports-parallax-section .overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.sports-parallax-content {
  position: relative;
  color: #fff;
  z-index: 2;
}


/* ==============================
   PREMIUM MAROON + GOLD CARDS
=================================*/

/* #facilities-premium {
  background: #faf8f4;
  padding-top: 70px;
  padding-bottom: 70px;
} */

/* Premium Card */
.vs-premium-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  padding: 40px 28px;
  text-align: center;
  position: relative;
  border: 2px solid rgba(212, 175, 55, 0.4);
  /* Gold border */
  box-shadow: 0 12px 32px rgba(128, 0, 0, 0.12);
  /* Maroon glow */
  backdrop-filter: blur(10px);
  transition: 0.45s ease;
}

/* Hover Effect */
.vs-premium-card:hover {
  transform: translateY(-12px);
  border-color: #D4AF37;
  /* Strong gold */
  box-shadow: 0 20px 45px rgba(128, 0, 0, 0.28);
}

/* Icon Wrapper */
.vs-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: radial-gradient(circle, #D4AF37, #b48a2c);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

/* Icon */
.vs-icon {
  font-size: 34px;
  filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.25));
}

/* Title */
.vs-premium-card h5 {
  font-weight: 700;
  font-size: 20px;
  color: #800000;
  /* Maroon */
  margin-bottom: 10px;
}

/* Description */
.vs-premium-card p {
  color: #5a5a5a;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .vs-premium-card {
    padding: 30px 20px;
  }

  .vs-icon-wrap {
    width: 65px;
    height: 65px;
  }
}

/* ========================== CARD STYLING ========================== */
.maroon-premium-card {
  background: #ffffff;
  border-radius: 20px;
  /* padding: 40px 25px; */
  text-align: center;
  height: 100%;
  border: 1px solid rgba(128, 0, 32, 0.25);
  background: linear-gradient(135deg, #ffffff, #fbf6f6);
  box-shadow: 0 8px 28px rgba(128, 0, 32, 0.12);
  transition: all 0.4s ease;
}

/* HOVER – premium gold glow + elevation */
.maroon-premium-card:hover {
  transform: translateY(-12px);
  border-color: #820026;
  box-shadow: 0 20px 50px rgba(128, 0, 32, 0.25);
}

/* ========================== ICON CIRCLE ========================== */
.maroon-icon-circle {
  height: 78px;
  width: 78px;
  border-radius: 50%;
  margin: 0 auto;

  background: linear-gradient(135deg, #7a0026, #a6002c);
  box-shadow: 0 10px 25px rgba(128, 0, 32, 0.45);

  display: flex;
  align-items: center;
  justify-content: center;
}

.maroon-icon-circle i {
  font-size: 32px;
  color: #fff;
}

/* ========================== TEXT ========================== */
.maroon-premium-card h5 {
  margin-top: 18px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #4a0020;
}

.maroon-premium-card p {
  color: #555;
  margin-top: 8px;
  font-size: 0.96rem;
  line-height: 1.55;
}

/* Gold strip under heading */
.gold-strip {
  width: 75px;
  height: 4px;
  border-radius: 20px;
  background: linear-gradient(90deg, #d4af37, #f4d77a);
}





/* ---------- EDU SPORTS SECTION (parallax bg image) ---------- */
#edu-sports {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background-color: #fbfbfb;
}

/* parallax bg container */
#edu-sports .parallax {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url('../img/sports-bg.jpg');
  background-size: cover;
  background-position: center;
  transform: translateZ(0);
  will-change: transform;
  filter: brightness(0.55) contrast(0.95);
}

/* maroon color overlay */
#edu-sports::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(123, 15, 36, 0.25), rgba(10, 33, 74, 0.15));
  mix-blend-mode: multiply;
}

#edu-sports .container {
  position: relative;
  z-index: 2;
}

.sports-quote {
  font-weight: 700;
  font-style: italic;
  color: #ecf3ff;
  max-width: 1000px;
  margin: auto;
  font-size: 1.25rem;
  text-align: center;
}

.edu-text-block {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 14px;
  max-width: 1000px;
  margin: auto;
  box-shadow: 0 12px 40px rgba(10, 33, 74, 0.06);
  color: #333;
  line-height: 1.75;
}

/* .sports-title {
  background: var(--accent-color);
  color: #fff;
  padding: 12px 18px;
  display: inline-block;
  font-weight: 800;
  border-radius: 6px;
  letter-spacing: 1px;
} */

.sports-benefits ul {
  list-style: none;
  padding-left: 0;
}

.sports-benefits li {
  display: flex;
  align-items: center;
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-weight: 600;
  color: #4a4a4a;
}

.sports-benefits i {
  font-size: 1.4rem;
  margin-right: 14px;
  color: #8B0000;
  /* background-color: var(--accent-color); */
  /* color: white; */
  background: rgba(139, 0, 0, 0.12);
  padding: 10px 12px;
  border-radius: 12px;
}



.edu-footer-text p {
  margin-top: 26px;
  font-weight: 700;
  text-align: center;
  color: #08204a;
  background: rgba(255, 255, 255, 0.92);
  padding: 18px 20px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(10, 33, 74, 0.06);
}

/* ---------- SMARTCLASS SECTION ---------- */
.smartclass-parallax-section {
  background: url('../img/classroom-img1.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  min-height: 60vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.smartclass-parallax-section .overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.smartsclass-content {
  position: relative;
  color: #fff;
  z-index: 2;
}


.smartcard {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  /* box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.08); */
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  /* box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px; */
  transition: 0.4s ease;
}

.smartcard:hover {
  transform: translateY(-6px);
  /* box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.12); */
}

.smart-badge {
  display: inline-block;
  background: linear-gradient(135deg, #7a1f1f, #b13535);
  padding: 6px 18px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.smart-desc {
  color: #444;
  /* line-height: 1.4; */
  font-size: 16px;
}

.smart-heading {
  color: var(--maroon-1);
}

.circle-icon {
  color: var(--maroon-1);
}

.smart-list {
  list-style: none;
  padding-left: 0;
}

.smart-list li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.smart-icon {
  font-size: 18px;
  margin-right: 12px;
  /* color: #b13535; */
  /* background: #ffe8e8; */
  color: white;
  background-color: var(--maroon-3);
  padding: 10px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.smart-img-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
}

.smart-img {
  transition: 0.4s ease;
}

.smart-img:hover {
  transform: scale(1.05);
}

.smart-para {
  font-size: 1.2rem;
  color: #ffe4c7;
}




.educomp-card {
  background: #fff;
  border-radius: 20px;
  border-left: 5px solid var(--maroon);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.educomp-card h2 {
  color: var(--maroon);
}

.final-box {
  background: #fff;
  padding: 40px;
  border-radius: 14px;
  border-top: 6px solid var(--gold);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.image-box img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

/* ================= PARALLAX BANNER ================= */
.educomp-parallax-banner {
  height: 50vh;
  background: url('../img/smart-classroom.jpg') center/cover fixed;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Dark overlay */
.educomp-parallax-banner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(35, 0, 0, 0.55);
  /* maroon overlay */
  top: 0;
  left: 0;
}

/* Text container */
.educomp-heading {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
}

/* Main heading */
.educomp-heading h2 {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Subheading */
.educomp-heading p {
  font-size: 1.2rem;
  color: #f5d7a1;
  /* gold shade */
  letter-spacing: 0.5px;
}





/* PARALLAX HERO */
.laboratory-parallax-section {
  background: url('../img/science-lab.png');
  position: relative;
  height: 50vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.laboratory-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 45, 108, 0.7), rgba(0, 0, 0, 0.35));
  z-index: 1;
}

/* .laboratoty-title {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 50px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
} */

/* PREMIUM CONTENT CARD */
.global-content {
  background: #fff;
  border-radius: 18px;
  /* box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12); */
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
  transition: transform .4s ease;
}

.global-content:hover {
  transform: translateY(-5px);
}

/* IMAGE HOVER FX */
.global-img {
  /* width: 100%;
  height: 300px; */
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  transition: transform .5s ease;
  object-fit: cover;

}

.global-img:hover {
  transform: scale(1.05);
}


/* PARALLAX HERO */
.transport-parallax-section {
  background: url('../img/school-transport2.jpg');
  position: relative;
  height: 50vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.transport-parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 45, 108, 0.7), rgba(0, 0, 0, 0.35));
  z-index: 1;
}



/* PARALLAX HERO */
.NCC-parallax-section {
  background: url('../img/ncc-2.jpg');
  position: relative;
  height: 50vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.NCC-parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 45, 108, 0.7), rgba(0, 0, 0, 0.35));
  z-index: 1;
}



/* NCC BLOCK */
.ncc-info {
  padding: 15px;
  background: linear-gradient(135deg, #0d2d6c, #2c61e6);
  color: white;
  font-weight: 600;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 15px;
}



.lab-list li {
  display: flex;
  align-items: flex-start;
  /* margin-bottom: 18px; */
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

.lab-icon {
  color: var(--maroon-2);
  font-size: 20px;
  margin-top: 5px;
}

.contact-text {
  color: var(--maroon-2);
}


.global-heading {
  color: var(--maroon-2);
}



/* ===== NCC INTRO ===== */
.ncc-intro {
  /* background: #ffffff; */
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
  border-left: 5px solid var(--maroon);
}

.ncc-intro h2 {
  color: var(--maroon);
}

.ncc-intro p {
  max-width: 900px;
  margin: auto;
  text-align: center;
  color: #555;
  line-height: 1.9;
  font-size: 16px;
}

/* ===== MOTTO STRIP ===== */
.motto-strip {
  background: var(--maroon);
  /* padding: 50px 0; */
  text-align: center;
  overflow-x: hidden;
}

.motto-strip h3 {
  color: #fff;
  font-weight: 600;
}

.motto-strip p {
  color: #c9a227;
  font-size: 20px;
  font-style: italic;
  margin-top: 8px;
}

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

.unity-feature-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
  height: 100%;
  /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07); */
  transition: 0.3s;
  border-left: 5px solid var(--maroon);
}

.unity-feature-card:hover {
  transform: translateY(-8px);
}

.unity-feature-card h4 {
  color: var(--maroon);
  font-weight: bold;
  margin-bottom: 15px;
}

.unity-feature-card p {
  color: #666;
  line-height: 1.8;
}

/* ===== CERTIFICATION ===== */
.certification-box {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
  /* background: #ffffff; */
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); */
  border-left: 5px solid var(--maroon);
  border-right: 5px solid var(--maroon);
}

.certification-box h2 {
  /* color: #0b2a4a; */
  font-weight: bold;
  text-align: center;
  color: var(--maroon);
}

.certification-box p {
  color: #555;
  line-height: 1.9;
  text-align: center;
}





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

/* Prevent background scroll */
/* body.modal-open {
  overflow: hidden !important;
} */

/* ================= GALLERY ================= */
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.5s;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(107, 15, 26, 0.9));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.gallery-overlay h5 {
  color: #fff;
}

.gallery-overlay span {
  color: #f3d77a;
  font-size: 14px;
}

.gallery-lightbox .modal-content {
  background: #fff;
  border-radius: 24px;
  border: none;
  padding: 20px;
}



.gallery-lightbox .modal-dialog {
  margin-top: 90px;
}

.gallery-lightbox .modal-body {
  padding: 30px;
  position: relative;
}

.gallery-lightbox img {
  max-height: 70vh;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
  cursor: zoom-in;
  transition: 0.4s;
}

.gallery-lightbox img.zoom {
  transform: scale(1.5);
  cursor: zoom-out;
}


.lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1056;
  filter: none;
}

.counter {
  position: absolute;
  top: 20px;
  left: 25px;
  color: #444;
  font-weight: 500;
}

#lightboxTitle {
  font-family: 'Playfair Display', serif;
  color: #6b0f1a;
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #6b0f1a;
  color: #fff;
  border: none;
  font-size: 28px;
  padding: 10px 18px;
  border-radius: 50%;
  z-index: 1056;
}

.prev {
  left: -12px;
}

.next {
  right: -12px;
}





/* ===== Facility Card ===== */
.school-facility-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  /* box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08); */
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
  /* box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px; */
  /* box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset; */
  transition: all 0.4s ease;
  height: 100% !important;
}

.school-facility-card:hover {
  transform: translateY(-12px);
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
  /* box-shadow: 0 28px 70px rgba(0, 0, 0, 0.15); */
}

.school-facility-img {
  height: 250px;
  overflow: hidden;
  cursor: pointer;
}

.school-facility-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.school-facility-card:hover .school-facility-img img {
  transform: scale(1.08);
}

.facility-body {
  /* padding: 28px 25px; */
  text-align: center;
}

.facility-body i {
  font-size: 2.3rem;
  color: #8b1d2c;
  margin-bottom: 12px;
}

.facility-body h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #1a1a1a;

}

.facility-body p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===== Lightbox Modal ===== */
/* .lightbox-modal .modal-content {
  background: #fff;
  border: none;
  border-radius: 18px;
  padding: 15px;
}

.lightbox-modal img {
  width: 100%;
  border-radius: 12px;
}

.btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
} */


.vs-cta {
  background: var(--maroon);
  position: relative;
  overflow: hidden;
}

.cta-contact-btn {
  background: var(--gold);
  font-size: 1.2rem;
  border: none;
  font-weight: bold;
  /* color: #1a1a1a; */

}

.cta-contact-btn:hover {
  /* background: linear-gradient(135deg, #f1d87a, #d4af37); */
  /* transform: translateY(-3px); */
  /* background-color: #000; */
  background-color: white;
  color: var(--accent-color) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  /* border: none; */
}



.admission-hero {
  min-height: 75vh;
  background: linear-gradient(180deg, rgba(92, 43, 53, 0.6), rgba(124, 56, 72, 0.45) 60%), url("../img/campus.jpg") center/cover fixed no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}

.admission-overlay {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 18, 18, 0.75), rgba(18, 18, 18, 0.28));
  z-index: 0;
}


/* .admission-hero .container {
  position: relative;
  z-index: 2
} */

.admission-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.admission-content h2 {
  color: #fff;
  font-weight: bold;
  font-size: 3.2rem;
  line-height: 1.05
}

.admission-content p {
  /* max-width: 550px; */
  color: #ddd;
  color: rgba(255, 255, 255, 0.92);
  max-width: 600px;
  /* font-size: 1.05rem */
}

.btn-outline-custom {
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
  display: inline-block;
  font-weight: bold;
}

.btn-outline-custom:hover {
  color: var(--accent-color);
  background-color: white !important;
}


.btn-primary-custom {
  background: var(--accent-color);
  border: none;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
}


.btn-primary-custom:hover {
  background: white;
  color: var(--accent-color);
}

/* ================= GLASS CARD ================= */
/* .glass-card {
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
  color: #fff;
} */

.admission-img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 12px
}


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

/* Card Design */
.process-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 42px 22px;
  height: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.45s ease;
}

/* Hover Effect (Maroon Shadow) */
.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(91, 15, 27, 0.35);
}

/* Step Number */
.process-step {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, #7a1221, #4b0c15);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icon Circle */
.process-icon {
  width: 68px;
  height: 68px;
  margin: 32px auto 22px;
  border-radius: 50%;
  background: rgba(91, 15, 27, 0.08);
  color: #5b0f1b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  transition: all 0.35s ease;
}

/* Icon Hover */
.process-card:hover .process-icon {
  background: #5b0f1b;
  color: #ffffff;
}

/* Title */
.process-card h6 {
  font-size: 1.08rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 10px;
}

/* Description */
.process-card p {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 767px) {
  .process-title {
    font-size: 1.9rem;
  }
}

/* ================= TABLE ================= */
.table thead,
tbody {
  background: var(--secondary);
  border: 2px solid black;
  color: #fff;
}

.school-information-card {
  border-radius: 20px;
  border-left: 5px solid var(--accent-color);
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

/* ================= CTA ================= */
.cta-parallax {
  background: url("../img/campus-img.jpg") center/cover fixed;
  min-height: 60vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 18, 18, 0.75), rgba(18, 18, 18, 0.28));
  ;
  /* background: rgba(13, 110, 253, 0.75); */

}

.cta-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.cta-content h2 {
  font-size: 3.2rem;
}



/* HERO */
.cbse-hero {
  min-height: 75vh;
  background: url('../img/library-img1.jpg') center/cover fixed;
  position: relative;
  display: flex;
  align-items: center;
}

.cbse-overlay {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(92, 43, 53, 0.6), rgba(124, 56, 72, 0.45) 60%);
  /* background: radial-gradient(circle at left, rgba(122, 36, 48, .75), rgba(0, 0, 0, .85)); */
}

.cbse-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

/* .btn-primary {
  background: var(--maroon);
  border: none;
  border-radius: 30px;
  padding: 12px 28px;
  box-shadow: 0 10px 30px rgba(122, 36, 48, .4);
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  border-radius: 30px;
  padding: 12px 28px;
} */



.cbse-content h2 {
  color: #fff;
  font-weight: bold;
  font-size: 3.2rem;
  line-height: 1.05
}

.cbse-content p {
  /* max-width: 550px; */
  color: #ddd;
  color: rgba(255, 255, 255, 0.92);
  max-width: 600px;
  /* font-size: 1.05rem */
}


.doc-link.disabled {
  pointer-events: none;
}

.note-text {
  color: red;
}


/* HERO PARALLAX  */
.contact-bg-parallax {
  background: url('../img/campus-img.jpg') center/cover fixed;
  min-height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* transform: translateZ(0);
  will-change: transform;
  filter: brightness(0.55) contrast(1.05); */
}

.contact-overlay {
  content: '';
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to right, rgba(0, 0, 0, .7), rgba(0, 0, 0, .35)); */
  /* background: radial-gradient(circle at left, rgba(122, 36, 48, .75), rgba(0, 0, 0, .85)); */
  background: linear-gradient(180deg, rgba(92, 43, 53, 0.6), rgba(124, 56, 72, 0.45) 60%);
}

.contact-content {
  position: relative;
  color: #fff;
  z-index: 2;
}

.contact-content h2 {
  color: #fff;
  font-weight: bold;
  font-size: 3.2rem;
  line-height: 1.05;
  max-width: 500px;
}

.contact-content p {
  color: #ddd;
  color: rgba(255, 255, 255, 0.92);
  max-width: 600px;
}

.btn-maroon {
  background: var(--maroon);
  color: #fff;
  border-radius: 30px;
  padding: 10px 26px;
  border: none;
}

.btn-maroon:hover {
  background: #5a1520;
}

@media(max-width:768px) {
  .contact-bg-parallax {
    background-attachment: scroll;
  }
}

.info-img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 12px
}



/* ================= CONTACT CARDS ================= */
.contact-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .1);
}

/* ================= MAPS ================= */
.map-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .2);
}

.map-box iframe {
  width: 100%;
  height: 350px;
  border: 0;
}


.vision-btn {
  color: var(--accent-color);
}

.vision-btn:hover {
  background: var(--accent-color);
  color: white;
}

.enquiry-btn:hover {
  color: var(--accent-color);
  background-color: white;
}

.meet-btn {
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.meet-btn:hover {
  background-color: var(--accent-color);
  color: white;
}

.safe-heading {
  color: var(--accent-color);
}

.global-heading-color {
  color: var(--accent-color);
  font-weight: bold;
}

.explore-btn {
  background-color: var(--accent-color);
  padding: 11px;
}

.explore-btn:hover {
  background-color: #d8b66c;
}

.phone-btn {
  color: var(--accent-color) !important;
}

.campus-btn:hover {
  background-color: white;
}


.career-card {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  background-color: var(--accent-color);
}

.career-para {
  max-width: 800px;
  /* text-align: center; */
}

.send-btn {
  background: var(--accent-color);
}

.send-btn:hover {
  background: var(--maroon-3);
}


.career-form {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}


/* .welcome-card{
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
} */


/* ================= FLOATING BUTTONS ================= */
/* .float-btn{
  position:fixed;
  right:20px;
  z-index:999;
  width:55px;
  height:55px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:24px;
  box-shadow:0 8px 25px rgba(0,0,0,.3);
}

.whatsapp-btn{
  bottom:90px;
  background:#25d366;
}

.call-btn{
  bottom:20px;
  background:var(--maroon);
} */





/* ================= COMPACT HORIZONTAL GLASS ================= */

/* .glass-divider{
  opacity:.35;
}

.contact-row.horizontal{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:10px;
}

.contact-row.horizontal:last-child{
  margin-bottom:0;
}


.contact-row .label{
  min-width:120px;
  font-size:13px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.5px;
  opacity:.85;
}

.contact-row .value{
  font-size:14px;
  line-height:1.5;
}


@media(max-width:576px){
  .contact-row.horizontal{
    flex-direction:column;
    gap:4px;
  }

  .contact-row .label{
    min-width:auto;
  }
} */



@media (max-width: 575.98px) {
  /* .topbar-info span{
    font-size: 10px;
  }  */


  .topbar-info span {
    white-space: wrap;
    font-size: 13px;
  }

  .topbar-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  /* .education-para{
    font-size: 0.55rem !important;
  } */


  .header .logo img {
    height: 90px;
  }

  .sitename {
    font-size: 20px !important;

  }

  .hero .hero-container .hero-content h1 {
    font-size: 2.4rem;
  }

  .hero .hero-container .hero-content p {
    font-size: 1rem;
  }

  .hero .hero-container .hero-content .announcement .announcement-badge {
    font-size: 0.55rem !important;
  }

  .hero .hero-container .hero-content .cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
  }

  .hero .hero-container .hero-content .cta-buttons a {
    margin: 0 5px;
  }

  p {
    /* margin-top: 0; */
    margin-bottom: 0rem;

  }

  .about .content>p {
    margin-bottom: 5px;
  }


  .about .content {
    margin-bottom: 20px;
  }

  .about .content {
    padding: 0px 0;
  }

  .students-life-block .content-wrapper h2 {
    font-size: 1.8rem;
  }

  .students-life-block .content-wrapper .description {
    line-height: 1.5;
    margin-bottom: 2rem;
  }

  .students-life-block .stats-row {
    flex-direction: row;
  }

  .students-life-block .content-wrapper {
    margin-bottom: 1rem;
  }

  .timeline {
    margin: 10px auto 0;
  }

  .timeline-item {
    padding: 15px 15px 15px 65px;
  }

  .testimonial-card {
    padding: 40px 20px;
  }


  .call-to-action .content-wrapper {
    margin-bottom: 35px;
  }


  .call-to-action .highlight-stats .stat-item .number {
    font-size: 2rem;
  }

  .call-to-action h2 {
    margin-bottom: 10px;
    /* line-height: 1.1; */
  }

  .call-to-action p {
    margin-bottom: 15px;
    line-height: 1.5;
  }

  .call-to-action .highlight-stats .stat-group {
    flex-direction: row;
  }

  .call-to-action .highlight-stats .stat-group {
    gap: 35px;
  }

  .call-to-action .highlight-stats {
    margin-bottom: 25px;
  }

  .call-to-action .action-buttons {
    display: flex;
    flex-direction: row;
  }


  .call-to-action .action-buttons .btn-primary {
    padding: 6px 18px;
    /* font-size: 0.90rem; */
  }

  /* .cta-card h2{
    font-size: 1.5rem;
  } */

  .cta-card p {
    font-size: 0.90rem;
  }


  .phone-btn {
    font-size: 1rem;
  }


  .logo-wrapper {
    display: flex;
    flex-direction: row;
  }


  .school-logo {
    height: 90px;
  }

  .footer h5 {
    font-size: 1rem;
  }


  .office-mail {
    font-size: 0.89rem !important;
  }


  /* .footer-bottom{
    font-size: 12px;
  } */

  /* 
  .website-para{
    font-size: 0.80rem !important;
  } */

  .cta-card {
    text-align: center;
  }


  .inspiring-bg-parallax h2 {
    font-size: 2.5rem;
  }


  .icon-wrap-eye {
    width: 70px;
    height: 70px;
  }

  .goal-title {
    font-size: 1.8rem;
  }

  .goal-strip-pro {
    padding: 25px;
  }

  .goal-text {
    font-size: 0.95rem;
  }

  .achievement-bg-parallax h2 {
    font-size: 2.5rem;
  }

  .achievement-bg-parallax p {
    font-size: 1.5rem;
    /* max-width: 900px; */
  }


  .blog-hero {
    height: 300px;
  }

  .blog-hero h2 {
    font-size: 2.5rem;
  }

  .newsletter-parallax h2 {
    font-size: 2.5rem;
  }

  .parallax-title {
    font-size: 2.5rem;
  }

  .filter-btns .btn {
    margin: 2px;
  }

  .parallax-header {
    height: 50vh;
  }

  .team-header {
    height: 50vh;
  }

  .team-header h2 {
    font-size: 2.5rem;
  }

  .team-header p {
    font-size: 16px;
  }


  /* .social-team-icons a{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
} */

  .campus-hero {
    min-height: 60vh;
  }

  .global-campus-title {
    font-size: 2rem !important;
  }

  .students-life h2 {
    font-size: 1.8rem !important;
  }

  .students-life .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(10px, 1fr));
    gap: 30px;
    margin-top: 0px;

  }

  .students-life .activities-section>.row:first-child p {
    line-height: 1.5;
  }

  .students-life .stat-item .stat-label {
    font-size: 0.66rem;
  }

  .students-life .testimonial-section .testimonial-content blockquote::before {
    left: -16px;
  }

  .students-life .lead {
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .students-life .image-showcase {
    margin-top: 20px;
  }

  .students-life .image-showcase .floating-image {
        bottom: 0px;
        /* height: 150px; */
    }

}