/**
* Template Name: College
* Template URL: https://bootstrapmade.com/college-bootstrap-education-template/
* Updated: Jun 19 2025 with Bootstrap v5.3.6
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

:root { 
  --background-color: #f1f5f7; /* Background color for the entire website, including individual sections */
  --default-color: #010608; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #011e2c; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #04415f; /* 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. */
}

:root{
  --brand-navy: #0B2A6B;         /* primary */
  --brand-gold: #F4B400;         /* accent */
  --brand-maroon: #B3122F;       /* optional secondary */
  --nav-color: #0B2A6B;
  --nav-hover-color: #0B2A6B;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #0B2A6B;
  --nav-dropdown-hover-color: #B3122F;
  --nav-mobile-background-color: #ffffff;
  --accent-color: var(--brand-gold);
  --contrast-color: #ffffff;
}

/* 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: #04415f;  /* The default color of the main navmenu links */
  --nav-hover-color: #2086b8; /* 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: #010608; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #04415f; /* 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: #e6edf0;
  --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: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .header-container {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  transition: all 0.5s;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}

.header .logo {
  background: var(--accent-color);
  position: absolute;
  inset: 0 auto 0 0;
  padding: 0 20px;
}

.header .logo img {
  max-height: 40px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 26px;
  margin: 0;
  font-weight: 500;
  color: var(--contrast-color);
}

@media (max-width: 1199px) {
  .header .logo {
    order: 1;
  }

  .header .navmenu {
    order: 3;
  }
}

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

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
}

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

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
	gap: 10px;  /* spacing between Home & Contact */
  }

  .navmenu li {
    position: relative;
  }

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

  .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: 18px;  /* no cut-off */
  }

  .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;
	padding: 12px 18px;
    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;
  }
}

/* ===========================
   ZEBAISH Header — Theming & Overrides
   Place AFTER your existing header/nav CSS
   =========================== */


/* Header base */
.header{
   --background-color: #ffffff;   /* white background from start */
  color: var(--brand-navy);
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  padding: 10px 0;
  backdrop-filter: saturate(120%) blur(6px);
  transition: background-color .3s ease, box-shadow .3s ease, padding .3s ease;
}

/* Container stays airy */
.header .header-container{
  background: transparent;
  padding-block: 8px;
  height: 70px !important;
}

/* Logo block — inline, not stretched full */
.header .logo{
  position: relative;
  inset: auto;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
}

/* Logo image sizing (responsive) */
.header .logo img{
  width: clamp(34px, 20vw, 106px);
  height: auto;
  max-height: none;   /* override old rule */
}

/* Academy name sizing (responsive) */
.header .logo .sitename{
  margin: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .5px;
  color: #ffffff;
  font-size: clamp(14px, 1.6vw, 22px);
  text-transform: uppercase;
}

/* On scroll: solid background + subtle shadow, color flip */
.scrolled .header{
  --background-color: #ffffff;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}
.scrolled .header .logo .sitename{ color: var(--brand-navy); }

/* Desktop nav spacing & hover background */
@media (min-width: 1200px){
  .navmenu{ margin-right: 0; } /* align to the right cleanly */

  .navmenu ul{ gap: 6px; }

  .navmenu a,
  .navmenu a:focus{
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 10px;               /* rounded pill */
    transition: color .25s ease, background-color .25s ease, transform .05s ease;
  }

  /* Brand hover background */
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus{
    background-color: color-mix(in srgb, var(--brand-gold) 22%, transparent);
    color: #ffffff;
  }

  /* When header is scrolled (light bg), invert link colors */
  .scrolled .navmenu a,
  .scrolled .navmenu a:focus{
    color: var(--brand-navy);
  }
  .scrolled .navmenu a:hover,
  .scrolled .navmenu .active,
  .scrolled .navmenu .active:focus{
    background-color: color-mix(in srgb, var(--brand-gold) 18%, transparent);
    color: var(--brand-navy);
  }
}

/* Mobile: logo/name scale & nav colors on light sheet */
@media (max-width: 1199px){
  .header{ padding: 8px 0; }
  .header .logo .sitename{ font-size: 16px; }

  .navmenu ul{
    background-color: #ffffff;
  }
  .navmenu a,
  .navmenu a:focus{
    color: var(--brand-navy);
    border-radius: 8px;
  }
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus{
    background-color: color-mix(in srgb, var(--brand-gold) 18%, transparent);
    color: var(--brand-navy);
  }
}

/* Optional: subtle underline accent on hover (desktop) */
@media (min-width: 1200px){
  .navmenu a:hover{ box-shadow: inset 0 -3px 0 var(--brand-gold); }
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

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

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

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

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

.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 20%);
  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 .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: 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 #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s 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;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

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

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

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs 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: 32px;
  font-weight: 700;
  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 {
  position: relative;
  overflow: hidden;
  padding: 0px;
}

.hero .hero-wrapper {
  padding: 80px;
}

@media (max-width: 992px) {
  .hero .hero-wrapper {
    padding: 100px 0 60px;
    text-align: center;
  }
}

.hero .hero-wrapper .hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

@media (max-width: 576px) {
  .hero .hero-wrapper .hero-content h1 {
    font-size: 2rem;
  }
}

.hero .hero-wrapper .hero-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero .hero-wrapper .hero-content .stats-row {
  display: flex;
  margin-bottom: 2rem;
}

@media (max-width: 992px) {
  .hero .hero-wrapper .hero-content .stats-row {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.hero .hero-wrapper .hero-content .stats-row .stat-item {
  margin-right: 2.5rem;
}

@media (max-width: 992px) {
  .hero .hero-wrapper .hero-content .stats-row .stat-item {
    margin: 0 1.5rem 1rem;
  }
}

.hero .hero-wrapper .hero-content .stats-row .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
}

.hero .hero-wrapper .hero-content .stats-row .stat-item .stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero .hero-wrapper .hero-content .action-buttons {
  display: flex;
  gap: 15px;
}

@media (max-width: 992px) {
  .hero .hero-wrapper .hero-content .action-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.hero .hero-wrapper .hero-content .action-buttons a {
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 8px;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .hero .hero-wrapper .hero-content .action-buttons a {
    width: 100%;
  }
}

.hero .hero-wrapper .hero-content .action-buttons .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero .hero-wrapper .hero-content .action-buttons .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero .hero-wrapper .hero-content .action-buttons .btn-secondary {
  background: var(--surface-color);
  color: var(--default-color);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
}

.hero .hero-wrapper .hero-content .action-buttons .btn-secondary:hover {
  color: var(--heading-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero .hero-wrapper .hero-media {
  position: relative;
}

@media (max-width: 992px) {
  .hero .hero-wrapper .hero-media {
    margin-top: 3rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

.hero .hero-wrapper .hero-media .main-image {
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.5s ease;
}

.hero .hero-wrapper .hero-media .main-image:hover {
  transform: perspective(1000px) rotateY(0);
}

.hero .hero-wrapper .hero-media .image-overlay {
  position: absolute;
  bottom: -20px;
  right: -20px;
}

@media (max-width: 992px) {
  .hero .hero-wrapper .hero-media .image-overlay {
    right: -47px;
  }
}

.hero .hero-wrapper .hero-media .image-overlay .badge-accredited {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 9px 15px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.hero .hero-wrapper .hero-media .image-overlay .badge-accredited i {
  font-size: 1.3rem;
}

.hero .feature-cards-wrapper {
  margin-top: -40px;
  padding-bottom: 40px;
  position: relative;
  z-index: 10;
}

.hero .feature-cards-wrapper .feature-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
}

.hero .feature-cards-wrapper .feature-card:hover,
.hero .feature-cards-wrapper .feature-card.active {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.hero .feature-cards-wrapper .feature-card.active {
  background: var(--surface-color);
  border-left: 4px solid var(--accent-color);
}

.hero .feature-cards-wrapper .feature-card.active .feature-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .feature-cards-wrapper .feature-card .feature-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--heading-color), transparent 90%);
  color: var(--heading-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.hero .feature-cards-wrapper .feature-card .feature-content {
  flex: 1;
}

.hero .feature-cards-wrapper .feature-card .feature-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.hero .feature-cards-wrapper .feature-card .feature-content p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.hero .upcoming-event {
  background: var(--heading-color);
  color: var(--contrast-color);
  padding: 0;
  margin: 30px 0 0;
}

.hero .upcoming-event .event-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 992px) {
  .hero .upcoming-event .event-content {
    flex-direction: column;
    text-align: center;
  }
}

.hero .upcoming-event .event-content>* {
  position: relative;
  z-index: 1;
}

.hero .upcoming-event .event-content .event-date {
  display: flex;
  flex-direction: column;
  background: var(--accent-color);
  color: var(--contrast-color);
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  margin-right: 30px;
  min-width: 100px;
}

@media (max-width: 992px) {
  .hero .upcoming-event .event-content .event-date {
    margin: 0 auto 20px;
  }
}

.hero .upcoming-event .event-content .event-date .day {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.hero .upcoming-event .event-content .event-date .month {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.hero .upcoming-event .event-content .event-info {
  flex: 1;
  margin-right: 30px;
}

@media (max-width: 992px) {
  .hero .upcoming-event .event-content .event-info {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.hero .upcoming-event .event-content .event-info h3 {
  font-size: 1.6rem;
  color: var(--contrast-color);
  margin-bottom: 10px;
  font-weight: 700;
}

@media (max-width: 576px) {
  .hero .upcoming-event .event-content .event-info h3 {
    font-size: 1.3rem;
  }
}

.hero .upcoming-event .event-content .event-info p {
  font-size: 1rem;
  margin: 0;
}

.hero .upcoming-event .event-content .event-action {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .upcoming-event .event-content .event-action .btn-event {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.hero .upcoming-event .event-content .event-action .btn-event:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.hero .upcoming-event .event-content .event-action .countdown {
  font-size: 0.9rem;
  opacity: 0.8;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.about .about-content h3 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.about .about-content p {
  margin-bottom: 30px;
}

.about .about-content .timeline {
  position: relative;
  margin-top: 40px;
  padding-left: 30px;
}

.about .about-content .timeline:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.about .about-content .timeline .timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.about .about-content .timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.about .about-content .timeline .timeline-item .timeline-dot {
  position: absolute;
  left: -35px;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.about .about-content .timeline .timeline-item .timeline-content h4 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.about .about-content .timeline .timeline-item .timeline-content p {
  margin-bottom: 0;
}

.about .about-image {
  position: relative;
}

.about .about-image img {
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about .about-image .mission-vision {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .about .about-image .mission-vision {
    grid-template-columns: 1fr;
  }
}

.about .about-image .mission-vision .mission,
.about .about-image .mission-vision .vision {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.about .about-image .mission-vision .mission h3,
.about .about-image .mission-vision .vision h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  padding-left: 15px;
}

.about .about-image .mission-vision .mission h3:before,
.about .about-image .mission-vision .vision h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 20px;
  background-color: var(--accent-color);
  border-radius: 3px;
}

.about .about-image .mission-vision .mission p,
.about .about-image .mission-vision .vision p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.about .core-values {
  margin-top: 30px;
}

.about .core-values h3 {
  font-size: 1.8rem;
  font-weight: 700;
}

.about .core-values .value-card {
  background-color: var(--surface-color);
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about .core-values .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about .core-values .value-card .value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  margin-bottom: 20px;
}

.about .core-values .value-card .value-icon i {
  font-size: 32px;
  color: var(--accent-color);
}

.about .core-values .value-card h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.about .core-values .value-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Featured Programs Section
--------------------------------------------------------------*/
.featured-programs .program-banner {
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px 0 color-mix(in srgb, var(--heading-color), transparent 90%);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

.featured-programs .banner-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

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

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

.featured-programs .banner-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 15px 0 color-mix(in srgb, var(--accent-color), transparent 60%);
}

.featured-programs .banner-info {
  padding: 35px 30px;
}

.featured-programs .banner-info .program-header {
  margin-bottom: 20px;
}

.featured-programs .banner-info .program-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.featured-programs .banner-info .program-header .program-stats {
  display: flex;
  gap: 25px;
}

.featured-programs .banner-info .program-header .program-stats span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
}

.featured-programs .banner-info .program-header .program-stats span i {
  margin-right: 8px;
  color: var(--accent-color);
  font-size: 1rem;
}

.featured-programs .banner-info p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 25px;
  line-height: 1.7;
}

.featured-programs .banner-info .program-details {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.featured-programs .banner-info .program-details .detail-item {
  display: flex;
  align-items: center;
}

.featured-programs .banner-info .program-details .detail-item i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1.1rem;
}

.featured-programs .banner-info .program-details .detail-item span {
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
  font-weight: 600;
}

.featured-programs .banner-info .discover-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
  color: var(--contrast-color);
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px 0 color-mix(in srgb, var(--accent-color), transparent 70%);
}

.featured-programs .banner-info .discover-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.featured-programs .programs-grid {
  height: 100%;
  display: flex;
  align-items: center;
}

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

.featured-programs .program-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: translateX(10px);
}

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

.featured-programs .program-item .item-icon {
  width: 303px;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  margin-right: 20px;
  flex-shrink: 0;
}

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

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

.featured-programs .program-item .item-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

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

.featured-programs .program-item .item-content .meta-info {
  display: flex;
  gap: 15px;
}

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

.featured-programs .program-item .item-arrow {
  margin-left: 15px;
}

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

@media (max-width: 992px) {
  .featured-programs .row {
    flex-direction: column-reverse;
  }

  .featured-programs .banner-info {
    padding: 25px 20px;
  }

  .featured-programs .banner-info .program-header h3 {
    font-size: 1.5rem;
  }

  .featured-programs .banner-info .program-stats {
    flex-direction: column;
    gap: 10px;
  }

  .featured-programs .banner-info .program-details {
    flex-direction: column;
    gap: 15px;
  }

  .featured-programs .program-item {
    padding: 15px;
  }

  .featured-programs .program-item .item-icon {
    width: 300px;
    height: 200px;
  }

  .featured-programs .program-item .item-content h4 {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .featured-programs .banner-image {
    height: 220px;
  }

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

  .featured-programs .program-item .item-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .featured-programs .program-item .item-arrow {
    margin-left: 0;
    margin-top: 10px;
  }
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  position: relative;
  overflow: hidden;
  /* Swiper Navigation */
  /* Swiper Pagination */
  /* Responsive Styles */
}

.testimonials .testimonial-slider {
  position: relative;
  padding-bottom: 50px;
}

.testimonials .testimonial-slider .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 2%) 100%);
  border-radius: 20px;
  padding: 0;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.testimonials .testimonial-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonials .testimonial-item:hover {
  border-color: var(--accent-color);
}

.testimonials .testimonial-item:hover::before {
  transform: scaleX(1);
}

.testimonials .testimonial-item:hover .testimonial-header img {
  transform: scale(1.05);
}

.testimonials .testimonial-item:hover .quote-icon {
  color: var(--accent-color);
  transform: scale(1.1);
}

.testimonials .testimonial-header {
  position: relative;
  text-align: center;
  padding: 30px 30px 20px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%, var(--surface-color) 100%);
}

.testimonials .testimonial-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-header .rating {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testimonials .testimonial-header .rating i {
  color: #ffc107;
  font-size: 0.9rem;
}

.testimonials .testimonial-body {
  padding: 0 30px 20px;
}

.testimonials .testimonial-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  font-style: italic;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-body p::before,
.testimonials .testimonial-body p::after {
  content: '"';
  font-size: 1.5rem;
  color: var(--accent-color);
  opacity: 0.6;
  font-family: serif;
  position: absolute;
}

.testimonials .testimonial-body p::before {
  top: -5px;
  left: -10px;
}

.testimonials .testimonial-body p::after {
  bottom: -20px;
  right: -5px;
}

.testimonials .testimonial-footer {
  padding: 20px 30px 30px;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-footer h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 5px;
}

.testimonials .testimonial-footer span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: block;
  margin-bottom: 15px;
}

.testimonials .testimonial-footer .quote-icon {
  position: absolute;
  bottom: 15px;
  right: 25px;
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.testimonials .swiper-navigation {
  position: relative;
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: static;
  width: 45px;
  height: 45px;
  margin: 0 10px;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
  transform: scale(1.05);
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 16px;
  font-weight: 600;
}

.testimonials .swiper-pagination {
  position: static;
  margin-top: 30px;
  text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

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

@media (max-width: 1199px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 25px 25px 15px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 70px;
    height: 70px;
  }

  .testimonials .testimonial-item .testimonial-body,
  .testimonials .testimonial-item .testimonial-footer {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 991px) {
  .testimonials .testimonial-item {
    margin-bottom: 30px;
  }
}

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

  .testimonials .testimonial-item .testimonial-header img {
    width: 60px;
    height: 60px;
  }

  .testimonials .testimonial-item .testimonial-header .rating i {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 20px 15px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 15px 20px 20px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 1rem;
  }

  .testimonials .testimonial-item .testimonial-footer span {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.3rem;
    bottom: 10px;
    right: 15px;
  }

  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .testimonials .swiper-button-prev::after,
  .testimonials .swiper-button-next::after {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .testimonials .testimonial-slider {
    padding-bottom: 30px;
  }

  .testimonials .testimonial-item .testimonial-header {
    padding: 15px 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 55px;
    height: 55px;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.9rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 10px 15px 15px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.2rem;
  }

  .testimonials .swiper-navigation {
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .intro-content {
  margin-bottom: 2rem;
}

.stats .intro-content .section-heading {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .stats .intro-content .section-heading {
    font-size: 2rem;
  }
}

.stats .intro-content .section-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.stats .metric-card {
  background: var(--surface-color);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.stats .metric-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.stats .metric-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.stats .metric-card:hover::before {
  transform: scaleX(1);
}

.stats .metric-card:hover .metric-icon-wrapper {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  transform: rotate(360deg);
}

.stats .metric-card:hover .metric-icon-wrapper i {
  color: var(--contrast-color);
}

.stats .metric-card .metric-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.stats .metric-card .metric-header .metric-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.stats .metric-card .metric-header .metric-icon-wrapper i {
  font-size: 1.8rem;
  color: var(--accent-color);
  transition: all 0.4s ease;
}

.stats .metric-card .metric-header .metric-value {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--heading-color);
  font-family: var(--heading-font);
  line-height: 1;
}

.stats .metric-card .metric-info h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.stats .metric-card .metric-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.stats .highlights-section .highlights-content {
  padding-right: 2rem;
}

@media (max-width: 992px) {
  .stats .highlights-section .highlights-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}

.stats .highlights-section .highlights-content .highlights-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .stats .highlights-section .highlights-content .highlights-title {
    font-size: 1.8rem;
  }
}

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

.stats .highlights-section .highlights-content .highlights-features {
  margin-bottom: 2.5rem;
}

.stats .highlights-section .highlights-content .highlights-features .feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.stats .highlights-section .highlights-content .highlights-features .feature-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-right: 1rem;
}

.stats .highlights-section .highlights-content .highlights-features .feature-item span {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--default-color);
}

.stats .highlights-section .highlights-content .highlights-cta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.stats .highlights-section .highlights-content .highlights-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.stats .highlights-section .highlights-content .highlights-cta .cta-btn.primary {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  border: 2px solid transparent;
}

.stats .highlights-section .highlights-content .highlights-cta .cta-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.stats .highlights-section .highlights-content .highlights-cta .cta-btn.secondary {
  background: transparent;
  color: var(--heading-color);
  border: 2px solid var(--heading-color);
}

.stats .highlights-section .highlights-content .highlights-cta .cta-btn.secondary:hover {
  background: var(--heading-color);
  color: var(--contrast-color);
}

.stats .highlights-section .highlights-gallery .gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 400px;
}

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
}

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item.large {
  grid-row: 1/3;
}

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item .gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 1.5rem 1rem 1rem;
  transform: translateY(100%);
  transition: all 0.3s ease;
}

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item .gallery-overlay h5,
.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item .gallery-overlay h6 {
  color: var(--contrast-color);
  margin: 0;
  font-weight: 600;
}

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item .gallery-overlay h5 {
  font-size: 1.1rem;
}

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item .gallery-overlay h6 {
  font-size: 0.95rem;
}

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item:hover img {
  transform: scale(1.05);
}

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .stats .highlights-section .highlights-gallery .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 200px);
    height: auto;
  }

  .stats .highlights-section .highlights-gallery .gallery-grid .gallery-item.large {
    grid-row: auto;
  }
}



/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-main-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .contact .contact-main-wrapper {
    grid-template-columns: 45% 55%;
    min-height: 600px;
  }
}

.contact .map-wrapper {
  height: 300px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .contact .map-wrapper {
    height: 100%;
    position: sticky;
    top: 100px;
  }
}

.contact .contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .contact-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 576px) {
  .contact .contact-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .contact-card {
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact .contact-card .icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .contact-card .icon-box i {
  font-size: 22px;
  color: var(--accent-color);
}

.contact .contact-card .contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-card .contact-text p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-form-container {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact .contact-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  padding-left: 15px;
}

.contact .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.contact .contact-form-container>p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.contact .contact-form-container .php-email-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-form-container .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .contact-form-container .php-email-form textarea.form-control {
  min-height: 140px;
}

.contact .contact-form-container .php-email-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .contact .contact-form-container .php-email-form .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact .contact-form-container .php-email-form button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .contact-form-container .php-email-form .social-links {
  display: flex;
  gap: 12px;
}

.contact .contact-form-container .php-email-form .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 20%);
  color: var(--heading-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact .contact-form-container {
    padding: 25px 20px;
  }

  .contact .contact-form-container h3 {
    font-size: 22px;
  }
}

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

/* Default navigation links (before scroll) */
.header .navmenu a {
  color: #0B2A6B;   /* brand navy for visibility */
  font-weight: 500;
}

/* Hover and active state */
.header .navmenu a:hover,
.header .navmenu .active {
  color: #B3122F;   /* maroon accent on hover/active */
}

/* When scrolled (white header background) */
.scrolled .header .navmenu a {
  color: #0B2A6B;   /* navy */
}

/* Hover when scrolled */
.scrolled .header .navmenu a:hover,
.scrolled .header .navmenu .active {
  color: #F4B400;   /* gold accent */
}

/* Default site name (before scroll) */
.header .logo .sitename {
  color: #0B2A6B;   /* brand navy */
  font-weight: 700;
  font-size: 22px;  /* adjust size if needed */
}

/* When scrolled (white header background, keep navy for consistency) */
.scrolled .header .logo .sitename {
  color: #0B2A6B;   /* navy */
}

.header .logo img {
  max-height: 130px; /* desktop/tablet */
  width: auto;
}
@media (max-width: 767px) {
  .header .logo img { max-height: none; }
}

/* === 2) Hide site name on mobile so header isn't cramped === */
@media (max-width: 767px) {
  .header .logo .sitename { 
    display: none !important;
  }
}

/* === 3) Mobile nav menu: make sure the list actually appears === */
@media (max-width: 1199px) {
  /* Make nav a positioned container */
  .navmenu { position: relative; }

  /* Base sheet */
  .navmenu ul {
    display: none;
    position: absolute;
    inset: 70px 16px 16px 16px; /* below header, inside edges */
    background: var(--nav-mobile-background-color, #fff);
    border-radius: 10px;
    padding: 12px 0;
    margin: 0;
    list-style: none;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    z-index: 10000;            /* above dark overlay */
  }

  /* When burger is toggled (template adds this to <body>) */
  .mobile-nav-active .navmenu > ul {
    display: block !important; /* force it visible */
  }

  /* Link visibility & spacing */
  .navmenu a,
  .navmenu a:focus {
    display: block;
    color: var(--brand-navy, #0B2A6B);
    padding: 12px 20px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 8px;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    background: color-mix(in srgb, var(--brand-gold, #F4B400) 18%, transparent);
    color: var(--brand-navy, #0B2A6B);
  }

  /* Keep the full-screen dark overlay behavior */
  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    background: rgba(33,37,41,.8);
  }
}

/* =========================================================
   MOBILE HEADER + NAV (fix overlay hiding content)
   ========================================================= */
@media (max-width: 1199px){

  /* Logo bigger on mobile, hide long sitename */
  .header .logo img{
        width: 375px;
        max-height: 130px;
        height: auto;
  }
  .header .logo .sitename{ display: none; }

  /* Dark overlay when active */
  .mobile-nav-active .navmenu{
    position: fixed;
    inset: 0;
    background: rgba(33,37,41,0.82);
    z-index: 10000;
  }

  /* White sheet menu only when active */
  .mobile-nav-active .navmenu > ul{
    display: flex !important;
    flex-direction: column;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 72px;
    width: calc(100vw - 24px);
    height: 60vh;
    background: #fff;
    border-radius: 12px;
    padding: 10px 0;
    overflow-y: auto;
    box-shadow: 0 14px 40px rgba(0,0,0,.22);
    z-index: 10001;
  }

  /* Default state — hide menu so it doesn't block content */
  .navmenu > ul{
    display: none;
  }

  /* Close button stays on top */
  .mobile-nav-active .mobile-nav-toggle{
    position: fixed;
    top: 14px;
    right: 16px;
    font-size: 32px;
    color: #fff;
    z-index: 10002;
  }

  /* Links styling */
  .mobile-nav-active .navmenu a{
    display: block;
    padding: 14px 20px;
    font-size: 18px;
    color: var(--nav-dropdown-color);
    border-radius: 8px;
  }
  .mobile-nav-active .navmenu li + li a{
    border-top: 1px solid rgba(11,42,107,0.08);
  }
}