

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Montserrat",  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: "Montserrat",  sans-serif;
  --nav-font: "Montserrat",  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: #0e023d;
; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0e023d; /* 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. */
}

/* 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
--------------------------------------------------------------*/
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
--------------------------------------------------------------*/
.header {
  --background-color: #0e023d;
  --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 .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 68px;
  margin-right: 10px !important;
  margin-left: -12px; /* Desktop left shift */
}


.header .logo i {
  font-size: 24px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 22px;
  font-weight: 700; /* bold site name */
  color: var(--heading-color);
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center; /* center text with image */
  line-height: 1;
}

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


/* Mobile */
@media (max-width: 576px) {
  .header .logo img {
    margin-left: -5px;
    max-height: 55px;
  }
}

/* Tablet */
@media (max-width: 992px) and (min-width: 576px) {
  .header .logo img {
    margin-left: -8px;
    max-height: 60px;
  }
}
/*--------------------------------------------------------------
# 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: white;
    padding: 18px 15px;
    font-size: 14px;
    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;
  }
}

/* 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;
  }
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  margin-bottom: 0;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: rgba(4, 4, 74, 0.171)
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}
/*--------------------------------------------------------------
# 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: 400;
}

.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%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 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/main1.JPG") center/cover no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--contrast-color);
  padding: 120px 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-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: 30px;
}

@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);
}

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

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

.hero .hero-container .hero-content .cta-buttons .btn-tour:hover {
  background-color: var(--contrast-color);
  color: var(--heading-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 .experience-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  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;
  }
}



/*==============================
    Founder Section Button
==============================*/

.btn-readmore {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 20px;
    background-color: #3d0039;
    color: #fff;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-readmore:hover {
    background-color: #5a0055; /* Slightly lighter for hover effect */
    color: #fff;
    transform: translateY(-2px);
}


/* =============================
   Modern Timeline Section
   ============================= */
#timeline {
  background: #f8f9fc;
  padding: 100px 0;
  position: relative;
  font-family: "Montserrat", sans-serif;
}

/* Vertical Line */
#timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #140349, #0d0145);
  transform: translateX(-50%);
  border-radius: 10px;
}

/* Wrapper */
.demo-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* Timeline Card */
.demo-card {
  width: 80%;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 30px 40px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

/* Alternating Left & Right Layout */
.demo-card:nth-child(odd) {
  align-self: flex-start;
  border-left: 6px solid #450130;
}

.demo-card:nth-child(even) {
  align-self: flex-end;
  border-right: 6px solid #450130;
}

/* Year Box */
.number-box {
  position: absolute;
  top: -25px;
  left: 40px;
  background: linear-gradient(135deg, #2575fc, #6a11cb);
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(37, 117, 252, 0.4);
}

.demo-card:nth-child(even) .number-box {
  left: auto;
  right: 40px;
  background: linear-gradient(135deg, #0a0135, #2575fc);
}

/* Headings */
.demo-card .head h2 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.4;
}

.demo-card .head span.small {
  font-size: 14px;
  color: #777;
  text-transform: uppercase;
}

/* Paragraph */
.demo-card .body p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  text-align: justify;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  #timeline::before {
    left: 8px;
  }

  .demo-card {
    width: 95%;
    align-self: center !important;
    border-left: 4px solid #6a11cb;
    border-right: none;
  }

  .number-box {
    left: 20px !important;
    right: auto !important;
  }
}



/* =============================
   Our Classes Section
   ============================= */
.our-classes {
  padding: 60px 0;
}

/* Class Card Box */
.our-classes .post-box {
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.our-classes .post-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Class Thumbnail */
.our-classes .post-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Title */
.our-classes .post-title {
  font-size: 20px;
  font-weight: 700;
  margin-top: 15px;
  color: #222;
}

/* Description */
.our-classes p {
  font-size: 15px;
  margin-top: 10px;
  color: #6c757d;
}



/* =============================
   Counts Section
   ============================= */
.counts {
  padding: 25px 0;
}

/* Stats Item */
.counts .stats-item {
  padding: 30px;
  width: 100%;
  text-align: center;
}

/* Number */
.counts .stats-item span {
  font-size: 48px;
  font-weight: 700;
  display: block;
  color: var(--accent-color);
}

/* Label */
.counts .stats-item p {
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--heading-font);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}




/*--------------------------------------------------------------
# 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-weight: 300;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  position: relative;
}

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

.students-life-block .content-wrapper h2 {
  font-size: 2.75rem;
  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: 3rem;
}

.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 .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  position: relative;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid var(--background-color);
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

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

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}











.our-approach-section .title {
    font-weight: 700;
    font-size: 2rem;
}

.our-approach-section .lead {
    color: #555;
    font-size: 1.1rem;
}

.card-title {
    font-weight: 600;
    font-size: 1.5rem;
}

.animated-image {
    max-width: 100%;
    animation: float 3s ease-in-out infinite;
}

/* Simple floating animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Responsive text alignment for small screens */
@media (max-width: 991px) {
    .text-lg-start { text-align: center !important; }
    .text-lg-end { text-align: center !important; }
}



/*==============================
Facilities Cards - Full Background Image
===============================*/

.metric-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  transition: all 0.4s ease;
}

/* Overlay for better text contrast */
.metric-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.628), rgba(0, 0, 0, 0.769));
  z-index: 1;
}

/* Ensure text stays above overlay */
.metric-card .metric-info {
  position: relative;
  z-index: 2;
  text-align: left;
}

.metric-card .metric-info h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.metric-card .metric-info p {
  color: #f1f1f1;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Read More button styling */
.metric-card .btn {
  background-color: #39011f;
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  transition: all 0.3s ease;
}

.metric-card .btn:hover {
  background-color:  #39011f;
  transform: translateY(-2px);
}

/* Hover zoom effect */
.metric-card:hover {
  transform: translateY(-6px) scale(1.02);
}

/* Remove old header icon section (optional) */
.metric-card .metric-header {
  display: none;
}



/*--------------------------------------------------------------
# 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: 300;
  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;
}



/* =============================
   STAFF & FACILITIES / CAMPUS FACILITIES
   ============================= */

/* Facility Cards */
.facility-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Icons */
.facility-card i,
ul.list-unstyled li i {
  font-size: 2.5rem;
  color: #3f002b; /* Unified icon color */
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.facility-card:hover i {
  transform: scale(1.2);
}

/* Titles */
.facility-card h3,
.facility-card h4 {
  margin-bottom: 10px;
  font-weight: 700;
  color: #3f002b;
}

/* Description */
.facility-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}


/* =============================
   Lists with Icons
   ============================= */

ul.list-unstyled li {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
}

ul.list-unstyled li i {
  font-size: 1.2rem;
  margin-right: 0.5rem;
  color: #3f002b; /* Uniform icon color */
  line-height: 1.2;
}

/* =============================
   Staff / Admin Images
   ============================= */

.staff-features-single img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.staff-features-single img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}


/* =============================
   Campus Overview / Gallery / Stats
   ============================= */

/* Headings */
.campus-overview h1,
.overview-content h1 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #3f002b;
}

/* Lead Text */
.campus-overview .lead-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
}

/* Stats Container */
.campus-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}

/* Stats Numbers */
.stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #3f002b;
}

/* Stats Label */
.stat-item .stat-label {
  display: block;
  font-size: 0.9rem;
  color: #555;
}


/* =============================
   News & Events Section
   ============================= */

.news-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  height: 330px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Image */
.news-img {
  height: 160px;
  background-size: cover;
  background-position: center;
}

/* Content Wrapper */
.news-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Title */
.news-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #222;
}

/* Text */
.news-text {
  font-size: 14px;
  color: #555;
  flex-grow: 1;
}




/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .isotope-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
  padding: 0;
  list-style: none;
}

.gallery .isotope-filters li {
  display: inline-block;
  padding: 10px 20px;
  background: var(--surface-color);
  color: var(--default-color);
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.gallery .isotope-filters li:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.gallery .isotope-filters li.filter-active {
  background: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 576px) {
  .gallery .isotope-filters {
    gap: 8px;
  }

  .gallery .isotope-filters li {
    padding: 8px 14px;
    font-size: 14px;
  }
}

.gallery .gallery-item {
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .gallery .gallery-item {
    margin-bottom: 20px;
  }
}

.gallery .gallery-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
}

.gallery .gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.gallery .gallery-card:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery .gallery-card:hover .gallery-image img {
  transform: scale(1.1);
}

.gallery .gallery-image {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
  overflow: hidden;
}

.gallery .gallery-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  color: var(--contrast-color);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.gallery .gallery-overlay h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--contrast-color);
}

.gallery .gallery-overlay p {
  font-size: 14px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.gallery .gallery-overlay .gallery-actions {
  display: flex;
  gap: 15px;
}

.gallery .gallery-overlay .gallery-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 18px;
  transition: 0.3s;
}

.gallery .gallery-overlay .gallery-actions a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: scale(1.1);
}

.gallery .glightbox-clean .gslide-description {
  background: #272727;
}

.gallery .glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
  /* Mobile horizontal scroll */
  @media (max-width: 576px) {
    .gallery-scroll {
      display: flex;
      overflow-x: auto;
      gap: 15px;
      scroll-snap-type: x mandatory;
      padding-bottom: 10px;
    }
    .gallery-item {
      min-width: 80%;
      scroll-snap-align: center;
    }
  }




/* ---------------- Responsive ---------------- */
@media (max-width: 992px) {
    .facility-card p,
    .overview-content p {
        font-size: 0.9rem;
    }
    .stat-item .stat-number {
        font-size: 1.7rem;
    }
}

@media (max-width: 576px) {
    .facility-card h3,
    .facility-card h4 {
        font-size: 1.1rem;
    }
    .facility-card p {
        font-size: 0.85rem;
    }
    .stat-item {
        flex: 1 1 100%;
        text-align: center;
    }
    .video-wrapper video {
        height: auto;
    }
}


/* =============================
   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 .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;
}





/*-----------------------------------------------
# admmision--------------------------------
----------------------------------------*/

  .application-timeline {
    background-color: #f9fafc;
  }

  .timeline-item {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    padding: 30px 20px;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
  }

  .timeline-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  }

  .timeline-marker i {
    font-size: 40px;
    color:var(--accent-color);
  }

  .timeline-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--accent-color) !important;
  }

  .timeline-content p,
  .timeline-content ul {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
  }

  .timeline-duration {
    font-size: 0.9rem;
    font-weight: 600;
    color: #40012e;
    margin-top: 10px;
    display: block;
  }

  /* Responsive behavior */
  @media (max-width: 992px) {
    .timeline-item {
      min-height: auto;
    }
  }




  .deadlines-showcase {
    background-color: #f9fafc;
  }

  .showcase-header h3 {
    font-size: 1.8rem;
  }

  .key-section {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    padding: 30px;
    transition: all 0.3s ease;
  }

  .key-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  }

  .key-section ul {
    list-style-type: disc;
    padding-left: 25px;
    color: #555;
  }

   .key-section h4 {
    color: var(--accent-color) !important;
  }
  .key-section ul li {
    margin-bottom: 8px;
    line-height: 1.6;
  }

  .key-section p {
    font-size: 0.97rem;
    color: #555;
    line-height: 1.8;
  }

  @media (max-width: 992px) {
    .key-section {
      min-height: auto;
    }
  }







/* School Activities Section */
.school-activities {
    background-color: #f9fafc;
}

.school-activities .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #410248;
}


.school-activities .activity-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.school-activities .activity-item {
    background-color: #ffffff;
    flex: 0 1 calc(33.333% - 20px);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.school-activities .activity-item:hover {
    background-color: #410248;
    color: #ffffff;
    transform: translateY(-10px);
}

.school-activities .activity-item:hover .icon i {
    color: #ffffff;
}

.school-activities .activity-item .icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #410248; /* Same icon color for all */
    transition: all 0.3s ease;
}

.school-activities .activity-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}



.school-activities .activity-item p {
    font-size: 14px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.school-activities .activity-item:hover h3,
.school-activities .activity-item:hover p {
    color: #ffffff;
}


/* Responsive */
@media (max-width: 992px) {
    .school-activities .activity-item {
        flex: 0 1 calc(50% - 20px);
    }
}

@media (max-width: 576px) {
    .school-activities .activity-item {
        flex: 0 1 100%;
    }
}







/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.gallery .gallery-item img {
  transition: 0.3s;
}

.gallery .gallery-links {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s;
  line-height: 1.2;
  margin: 30px 8px 0 8px;
}

.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
  color: #ffffff;
}

.gallery .gallery-links .details-link {
  font-size: 30px;
  line-height: 0;
}

.gallery .gallery-item:hover .gallery-links {
  opacity: 1;
}

.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
  margin-top: 0;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.glightbox-clean .gslide-description {
  background: #272727;
}

.glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}



/*--------------------------------------------------------------
# Kinder Gardern  Section
--------------------------------------------------------------*/
/* Kindergarten Section Styles */
.kinder-section {
  background-color: #f9fafb;
  padding: 60px 0;
}

.kinder-section h2 {
  color:var(--accent-color);
  font-weight: 700;
}

.kinder-text,
.primary-text,
.higher-text {
  color: #444;
  line-height: 1.7;
  text-align: justify;
}

.kinder-image img,
.primary-image img,
.higher-image img {
  border-radius: 15px;
  max-width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out;
}

.kinder-image img:hover,
.primary-image img:hover,
.higher-image img:hover {
  transform: scale(1.03);
}

.btn-primary {
  background-color: var(--accent-color);
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
}

.btn-primary:hover {
  background-color: var(--accent-color);
}







/* School Achievements Section */
.school-achievements-section {
  background-color: #ffffff;
  padding: 60px 0;
}

.achievement-block {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.achievement-header {
  background: var(--accent-color);
  padding: 15px;
  border-radius: 10px;
}

.achievement-header h3 {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Table Styling */
.table {
  margin: 0;
  background-color: #fff;
}

.table th {
  background-color: #f4e5e9;
  color:  var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
}

.table td {
  color: #333;
  font-size: 0.95rem;
}

.table-hover tbody tr:hover {
  background-color: #f8f2f4;
  transition: background 0.3s ease;
}

.table-bordered th,
.table-bordered td {
  border-color: #e0c6cc !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .achievement-block {
    padding: 15px;
  }

  .achievement-header h3 {
    font-size: 1.1rem;
  }

  .table th, .table td {
    font-size: 0.85rem;
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .achievement-header h3 {
    font-size: 1rem;
  }

  .table th, .table td {
    font-size: 0.8rem;
  }
}





/* Co-Curricular Activities Section */
.co-curricular {
  background: #f9fafb;
}

.co-curricular .section-header h2, 
.co-curricular .section-header h3 {
  font-weight: 700;
  color: #333;
}

.co-curricular .achievement-list {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.achievement-item {
  margin-bottom: 10px;
  font-size: 16px;
}

.achievement-item i {
  color: #e63946;
}

.activity-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-5px);
}

.activity-card h4 {
  color: #7c3848;
  font-weight: 700;
  margin-bottom: 15px;
}

.activity-card p {
  font-size: 15px;
  margin-bottom: 8px;
}

@media (max-width: 767px) {
  .activity-card {
    text-align: center;
  }

  .activity-card h4 {
    font-size: 18px;
  }

  .activity-card p {
    font-size: 14px;
  }
}


/*=========================
Curricular Activityes======
-------------------------*/



/* RGB Box */
.rgb-box {
    margin-top: 10px;
    padding: 15px;
    background: var(--accent-color);
    border-radius: 10px;
    text-align: center;
}
.rgb-box h3, .rgb-box h4 {
    color: #fff;
}

/* Achievements */
.achievement-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 20px;
    margin: 20px 0;
}
.achievement {
    padding: 20px;
    background: linear-gradient(rgba(40,40,40,0.7), rgba(0,0,100,0.6)), url('../img/images/Gallery/sports/sport12.JPG');
    background-size: cover;
    border-radius: 10px;
    color: #fff;
    transition: transform 0.3s;
}
.achievement:hover {
    transform: scale(1.03);
}
.achievement i {
    color: #ffcc00;
}

/* Table */
.table thead {
    background-color: var(--accent-color);
    color: #fff;
}
.table th, .table td {
    text-align: center;
    vertical-align: middle;
}
.table-hover tbody tr:hover {
    background-color: rgba(0, 86, 179, 0.1);
}

/* Co-Curricular Cards */
.cocurricular-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.activity-box {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    flex: 1 1 calc(33.333% - 20px);
    padding: 20px;
    overflow: hidden;
    position: relative;
    max-height: 300px;
    transition: max-height 0.4s ease;
}
.activity-box.expanded {
    max-height: 100%;
}
.activity-box h3 {
    text-align: center;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: 700;
}
.activity-box p {
    color: #444;
    line-height: 1.6;
}
.activity-box i {
    color: #f39c12;
    margin-right: 5px;
}
.extra-content {
    display: none;
}
.activity-box.expanded .extra-content {
    display: block;
}
.toggle-btn {
    display: block;
    margin: 10px auto 0;
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.95rem;
}
.toggle-btn:hover {
    background:var(--accent-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .activity-box { flex: 1 1 calc(50% - 20px); }
}
@media (max-width: 768px) {
    .activity-box { flex: 1 1 100%; }
}



/*--------------------------------------------------------------
# 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: 32px;
  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: 16px;
}

.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;
}

@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;
  }
}


/* ====== Promo Section Styling ======
-------------------------------------
------------------------------------------ */
.promo-section {
  background: linear-gradient(135deg, #093028, #237a57);
  color: #fff;
  overflow: hidden;
  position: relative;
  padding: 0;
}

/* Animated gradient background */
.promo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0e023d;
  background-size: 400% 400%;
  animation: gradientFlow 12s ease infinite;
  z-index: 0;
  opacity: 0.9;
}
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Content Area */
.promo-content {
  position: relative;
  z-index: 2;
  padding: 80px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.promo-text {
  max-width: 550px;
}

.promo-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.promo-text p {
  font-size: 1.15rem;
  color: #e8e8e8;
  line-height: 1.6;
  margin-bottom: 30px;
}

.promo-btn {
  display: inline-block;
  background-color: #fff;
  color: #093028;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.promo-btn:hover {
  background-color: #69020c;
  color: #fff;
  transform: translateY(-2px);
}

/* Video Frame */
.promo-video {
  position: relative;
  height: 60vh;
  overflow: hidden;
  z-index: 1;
}

.video-frame {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-frame iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ====== Responsive Design ====== */
@media (max-width: 992px) {
  .promo-text h2 {
    font-size: 2rem;
  }
  .promo-text p {
    font-size: 1rem;
  }
  .promo-content {
    padding: 60px 30px;
  }
  .promo-video {
    height: 50vh;
  }
}

@media (max-width: 768px) {
  .promo-content {
    text-align: center;
    padding: 50px 20px;
  }
  .promo-text h2 {
    font-size: 1.75rem;
  }
  .promo-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
  .promo-video {
    height: 40vh;
  }
}











/*--------------------------------------------------------------
# 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;
  }
}

/*--------------------------------------------------------------
# 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;
}




/* ============================
   Video Card
============================ */
.video-card {
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.video-title {
    margin-top: 10px;
    font-weight: 600;
    text-align: center;
}

/* ============================
   Responsive Iframe Container
============================ */
.iframe-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    overflow: hidden;
    border-radius: 10px;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================
   Playlist Section
============================ */
.playlist-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}

.playlist-slider::-webkit-scrollbar {
    height: 8px;
}

.playlist-slider::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.playlist-item {
    min-width: 300px;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.playlist-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.playlist-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}





/*--------------------------------------------------------------
# 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%);
}


/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/* Common Sticky Button Styles */
.sticky-btn {
  position: fixed;
  right: 0;
  transform: rotate(90deg);
  transform-origin: right top;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
}

/* Button Design */
.sticky-btn a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 18px; /* reduced padding for smaller size */
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  gap: 6px; /* smaller gap */
  font-size: 14px; /* smaller text */
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

/* WhatsApp Button */
.whatsapp-btn {
  top: 67%;
}
.whatsapp-btn a {
  background: linear-gradient(135deg, #25d366, #128c7e);
}
.whatsapp-btn a:hover {
  background: linear-gradient(135deg, #20b358, #0e7b67);
}

/* Call Button */
.call-btn {
  top: 84%;
}
.call-btn a {
  background: linear-gradient(135deg, #007bff, #0056b3);
}
.call-btn a:hover {
  background: linear-gradient(135deg, #006ae6, #004a99);
}

/* Icons */
.sticky-btn i {
  font-size: 16px; /* smaller icon */
  color: #fff;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .sticky-btn a {
    padding: 6px 14px;
    font-size: 12px;
  }
  .sticky-btn i {
    font-size: 14px;
  }
}



.experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
  text-align: center;
}

.experience-badge .years {
  font-size: 28px;
  font-weight: 700;
  color: #1c3faa;
}

.experience-badge .text {
  font-size: 14px;
  font-weight: 500;
}
#schoolCarousel .carousel-item img {
  height: 630px;     /* change height here */
  object-fit: cover; /* crops nicely without distortion */
  width: 100%;
  border-radius: 10px;
}




/* Desktop image size control */
.ad-desktop-img {
    width: 38%;                   /* Reduced width (smaller images) */
    max-height: 640px;            /* Reduce height */
    object-fit: cover;            /* Clean cropping */
    border-radius: 8px;
}

/* Space between desktop images */
.d-md-flex img + img {
    margin-left: 20px;
}

/* Mobile images untouched */
.carousel-inner img {
    max-height: 700px;
    object-fit: cover;
}

/* ================================
   Close Button – White
================================ */
.btn-close-white {
    filter: invert(1);
    color: #ffffff !important;
    font-weight: bold;
    background-color: #eb0000;
    margin-right: 40px;   /* Move to LEFT */

}

/* ================================
   Previous Button Styling
================================ */
#prev-btn {
    position: fixed;
    top: 40%;
    left: 20px;
    width: 45px;
    height: 45px;
    background: #021d46 !important;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 9999;
    transition: 0.3s ease;
    text-decoration: none;
}

/* Hover effect */
#prev-btn:hover {
    background: #021e49;
    transform: scale(1.1);
    color: #fff;
}

/* ================================
   Responsive Fix
================================ */
@media (max-width: 768px) {
    .ad-desktop .ad-img {
        width: 100%;         /* full width on mobile */
        max-height: 200px;
        margin-bottom: 10px;
    }
}
#adModal .modal-body {
    background-color: transparent !important;
}

#adModal .modal-content {
    background-color: transparent !important;
    box-shadow: none !important;
}

#adModal .modal-header {
    background-color: transparent !important;
}



/* Section Heading */
.section-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #2b2b2b;
}




/* Sticky Vertical Login Button */
.login-btn {
  position: fixed;
  top: 70%;
  left: 0;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left top;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
}

/* Button Styling */
.login-btn a {
  background: linear-gradient(135deg, #710380, #210158); /* You can change colors */
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 0 0 10px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(10, 169, 148, 0.4);
  transition: all 0.3s ease;
}

/* Hover Effect */
.login-btn a:hover {
  background: linear-gradient(135deg, #51062c, #ac033e);
  transform: scale(1.05);
}

/* Icon Style */
.login-btn i {
  font-size: 20px;
  color: #fff;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .login-btn a {
    padding: 10px 18px;
    font-size: 13px;
  }
  .login-btn i {
    font-size: 18px;
  }
}
