/**
* Template Name: Mentor
* Template URL: https://bootstrapmade.com/mentor-free-education-bootstrap-theme/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

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

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #37423b; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #831C3B; /* 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: #272828;  /* The default color of the main navmenu links */
  --nav-hover-color: #831C3B; /* 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: #272828; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #831C3B; /* 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: #f9f9f9;
  --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);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

.header .logo img {
  max-height: 70px;
  margin-right: 12px;
  margin-left: 15px;
}

.header .logo h1 {
  font-weight: 700;
  font-size: 30px;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 16px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

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

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

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

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }
  
  .responsive-header-layout .logo img {
    max-height: 80px; 
}

@media (min-width: 1200px) {
    .responsive-header-layout .container-fluid {
        padding-left: 100px;
        padding-right: 100px;
    }
    
    .responsive-header-layout .logo img {
        max-height: 80px;
    }
    
    .responsive-header-layout .logo {
        margin-left: 100px;
    }
    
    .responsive-header-layout .navmenu {
        margin-right: 100px;
    }
}

@media (max-width: 1199px) {
    .responsive-header-layout .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .responsive-header-layout .logo {
        margin-left:0px;
    }

    .responsive-header-layout .logo img {
        max-height: 60px; 
    }
    
    .responsive-header-layout .navmenu {
        margin-right: 0;
    }
    
    .responsive-header-layout .logo h1 {
        font-size: 20px;
        line-height: 1.1;
    }
    
    .responsive-header-layout .logo h1 br {
        display: none;
    }
}

  /* Dropdown styles*/
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px ;
    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.2);
  }

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

  .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 (Hamburger Menu) */
@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: #ffffff; 
    border: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); 
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #333333; 
    padding: 12px 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;
  }
  
  /* Hover/Active states for links */
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--accent-color, #a81c3c); 
    background-color: rgba(168, 28, 60, 0.05); 
    border-radius: 4px;
    margin: 0 10px;
  }

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

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

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

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: #f7f7f7;
    transition: all 0.5s ease-in-out;
    border-radius: 4px;
  }

  .navmenu .dropdown ul ul {
    background-color: #eeeeee;
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: transparent; /* Changed for cleaner look */
  }

  .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: color-mix(in srgb, var(--default-color), transparent 95%);
}

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

.footer .credits {
  margin-top: 6px;
  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: 44px;
  height: 44px;
  border-radius: 50px;
  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;
  bottom: 15px;
}

/*--------------------------------------------------------------
# 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 {
  --default-color: var(--contrast-color);
  --background-color: var(--accent-color);
  --heading-color: var(--contrast-color);
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
 }

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

.page-title nav {
  background-color: color-mix(in srgb, var(--accent-color) 90%, black 5%);
  padding: 20px 0;
}

.page-title nav a {
  color: var(--default-color);
}

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

.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: 900px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: var(--nav-font);
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 80vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 60%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.hero .btn-get-started {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  transition: 0.4s;
  margin-top: 30px;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.hero .btn-get-started:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# About page
--------------------------------------------------------------*/
.about-banner {
    background: url('../img/contact.jpg') center center / cover no-repeat; 
    position: relative; 
     padding: 100px; 
    text-align: center;
    min-height: 50vh;
}

/* Add a dark overlay layer for text readability */
.about-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
    z-index: 1; 
}

.about-banner .heading,
.about-banner .breadcrumbs {
    position: relative;
    z-index: 2;
}

.about-banner .heading h1,
.about-banner .heading p {
    color: white !important;
}

.about-banner h1 br,
.about-banner .breadcrumbs li br {
    display: none;
}

.about-banner .breadcrumbs {
    background-color: rgba(131, 28, 59, 0.85); 
    position: relative;
}
/* Mission & Vision Boxes */
.mission-vision-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem; 
    
}

/* Chairman Profile Box */
.chairman-profile-container {
    padding: 20px;
    margin-bottom: 30px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%); /* Light background based on accent color */
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    border-radius: 0.5rem; /* rounded-lg */
}

.chairman-profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem; /* mb-4 */
}

.chairman-profile-header .chairman-img-wrap {
    width: 150px;
    height: 150px;
    text-align: center;
    margin-right: 1.5rem; /* me-4 */
}

.chairman-profile-header img {
    max-width: 100%;
    border-radius: 50%;
    border: 4px solid var(--accent-color); /* Uses accent color for border */
    object-fit: cover;
}

.chairman-profile-header h3 {
    margin-bottom: 0;
    color: var(--heading-color);
}

.chairman-profile-header h5 {
    color: var(--default-color);
    opacity: 0.7; /* text-muted */
    font-size: 1rem;
}

/* Board/AAC Member Cards */
.member-card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 1rem; /* Adjusts spacing for tight horizontal fit */
}

.member-card {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); /* shadow-sm */
    height: 100%;
    width: 100%; /* For responsive column sizing */
    display: flex;
    flex-direction: column;
}

.member-card-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.member-card-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid var(--accent-color);
}

.member-card-header h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.member-card-header p.member-title {
    font-size: 0.85rem;
    color: var(--default-color);
    opacity: 0.7;
    margin-bottom: 0;
}

.member-card p.member-bio {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--default-color);
    flex-grow: 1; /* Ensures equal height by pushing content down */
}

/* Governance Structure Accordion */
.leadership-accordion-wrap {
    padding-top: 30px;
}

.leadership-accordion .accordion-item {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    margin-bottom: 1rem;
    border: 1px solid #dee2e6; /* Standard border color */
    border-radius: 0.25rem;
}

.leadership-accordion .accordion-button {
    font-weight: 600;
}

.leadership-accordion .accordion-body ul i {
    color: var(--accent-color); /* text-primary */
    margin-right: 0.5rem;
}

/* Institutional Recognition Text Block */
.institutional-summary {
    background-color: color-mix(in srgb, var(--default-color), transparent 95%); /* Light gray background */
    padding: 20px;
    margin-top: 30px;
    border-radius: 0.25rem;
}

.institutional-summary h4 {
    color: var(--accent-color);
}

/* --- Styles from Step 14 (Ensure these are in your main.css) --- */

/* CHAIRMAN PROFILE BOX */
.chairman-profile-container {
    padding: 1.5rem; /* Replaces p-4 */
    margin-bottom: 30px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%); /* light background */
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    border-radius: 0.5rem; /* rounded */
}

.chairman-profile-header {
    display: flex; /* d-flex */
    align-items: center; /* align-items-center */
    margin-bottom: 1rem; /* mb-4 */
}

.chairman-profile-header img {
    max-width: 150px;
    border: 4px solid var(--accent-color); /* From #000000ff to accent color */
    border-radius: 50%;
    margin-right: 1.5rem;
    object-fit: cover;
}

.chairman-profile-header h5 {
    color: var(--default-color);
    opacity: 0.7; /* Replaces text-muted */
}

/* BOARD/AAC MEMBER CARDS */
.board-heading {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem; /* Replaces mb-4 pb-2 */
}

.governance-members .row {
    --bs-gutter-y: 1.5rem; /* Replaces gy-4 */
}

.member-card {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%); /* Replaces background-color: #f7f0f4; */
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%); /* Replaces border style */
    padding: 1.5rem; /* Replaces p-4 */
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); /* shadow-sm */
    height: 100%; /* h-100 */
    display: flex;
    flex-direction: column;
}

.member-card-header {
    display: flex; /* d-flex */
    align-items: flex-start; /* align-items-start */
    margin-bottom: 1rem; /* mb-3 */
}

.member-card-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem; /* me-4 */
    border: 3px solid var(--accent-color); /* Replaces specific color border */
}

.member-card p.member-title,
.member-card p.member-bio {
    color: var(--default-color);
    opacity: 0.7;
}


.recognition-box {
    padding: 30px;
    border-radius: 8px;
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.recognition-box h4.box-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.verification-box {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%) !important;
    border-color: var(--accent-color);
}

.verification-links {
    margin-top: 15px;
}

.btn-accent-outline {
    display: inline-block;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    border-radius: 50px;
    transition: 0.3s;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    background: transparent;
}

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

/*Governance & Academic Leadership View*/

.leadership-title-wrapper {
    margin-bottom: 20px;
}

.leadership-role-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-top: 25px;
    margin-bottom: 10px;
    padding-left: 20px;
    border-left: 4px solid var(--accent-color);
}

.leadership-detail-box {
    padding: 15px 20px;
    margin-bottom: 20px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 4px;
}

.leadership-detail-box ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.leadership-detail-box ul li {
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: var(--default-color);
}

.leadership-detail-box ul li::before {
    content: "\F256";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 900;
}

.leadership-role-icon {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.2rem;
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

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

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 24px 12px 24px;
  border-radius: 50px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

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

.counts .stats-item {
  padding: 30px;
  width: 100%;
}

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

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

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
  height: 30vh;
}

.why-us .why-box h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .why-box p {
  margin-bottom: 30px;
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  padding: 8px 40px 10px 40px;
  color: var(--contrast-color);
  transition: all ease-in-out 0.4s;
  border-radius: 50px;
}

.why-us .why-box .more-btn i {
  font-size: 14px;
}

.why-us .why-box .more-btn:hover {
  color: var(--accent-color);
  background: var(--surface-color);
}

.why-us .icon-box {
  background-color: var(--surface-color);
  text-align: center;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.why-us .icon-box i {
  color: var(--accent-color);
  font-size: 32px;
  margin-bottom: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  transition: 0.3s;
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.why-us .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .icon-box:hover i {
  color: var(--contrast-color);
  background: var(--accent-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding: 10px 0;
}

.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

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

.features .features-item:hover h3 a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Courses Section
--------------------------------------------------------------*/
.courses .course-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 5px;
}

.courses .course-content {
  padding: 15px;
}

.courses .course-content h3 {
  font-weight: 700;
  font-size: 20px;
}

.courses .course-content h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.courses .course-content h3 a:hover {
  color: var(--accent-color);
}

.courses .course-content .category {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0;
  border-radius: 5px;
}

.courses .course-content .price {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses .course-content .description {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.courses .trainer {
  padding-top: 15px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.courses .trainer .trainer-profile img {
  max-width: 50px;
  border-radius: 50px;
}

.courses .trainer .trainer-profile .trainer-link {
  padding-left: 10px;
  font-weight: 600;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.courses .trainer .trainer-profile .trainer-link:hover {
  color: var(--accent-color);
}

.courses .trainer .trainer-rank {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.courses .trainer .trainer-rank .user-icon {
  font-size: 22px;
}

/*--------------------------------------------------------------
#  Index Section
--------------------------------------------------------------*/
.trainers-index .member {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
  margin-bottom: 20px;
}

.trainers-index .member img {
  margin: -1px -1px 30px -1px;
}

.trainers-index .member .member-content {
  padding: 0 20px 30px 20px;
}

.trainers-index .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.trainers-index .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.trainers-index .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.trainers-index .member .social {
  margin-top: 15px;
}

.trainers-index .member .social a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: 0.3s;
}

.trainers-index .member .social a:hover {
  color: var(--accent-color);
}

.trainers-index .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about-us .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about-us .content ul {
  list-style: none;
  padding: 0;
}

.about-us .content ul li {
  padding-bottom: 10px;
}

.about-us .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about-us .content p:last-child {
  margin-bottom: 0;
}

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

/*--------------------------------------------------------------
# Courses Course Details Section
--------------------------------------------------------------*/
.courses-course-details {
  padding-bottom: 20px;
}

.courses-course-details h3 {
  font-size: 24px;
  margin: 30px 0 15px 0;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.courses-course-details h3:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  bottom: 0;
  left: 0;
}

.courses-course-details h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 1px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.courses-course-details .course-info {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 10px 15px;
  margin-bottom: 15px;
}

.courses-course-details .course-info h5 {
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  font-family: var(--nav-font);
}

.courses-course-details .course-info p {
  margin: 0;
  font-weight: 600;
}

.courses-course-details .course-info a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Tabs Section
--------------------------------------------------------------*/
.tabs {
  padding-top: 30;
}

.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-link {
  background-color: var(--background-color);
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: var(--default-color);
  border-radius: 0;
  border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-weight: 600;
  font-size: 15px;
}

.tabs .nav-link:hover {
  color: var(--accent-color);
}

.tabs .nav-link.active {
  background-color: var(--surface-color);
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.tabs .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.tabs .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.tabs .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.tabs .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .tabs .nav-link {
    border: 0;
    padding: 15px;
  }

  .tabs .nav-link.active {
    color: var(--accent-color);
    background: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Trainers Section
--------------------------------------------------------------*/
.trainers .member {
  position: relative;
}

.trainers .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .trainers .member .member-img {
    margin: 0 60px;
  }
}

.trainers .member .member-img img {
  position: relative;
  z-index: 1;
}

.trainers .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.trainers .member .member-img .social a {
  transition: 0.3s;
  color: var(--contrast-color);
  font-size: 20px;
  margin: 0 8px;
}

.trainers .member .member-img .social a:hover {
  color: var(--accent-color);
}

.trainers .member .member-info {
  margin-top: 30px;
}

.trainers .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
}

.trainers .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.trainers .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.trainers .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# 10. Home Page Event Cards
--------------------------------------------------------------*/

.event-card-clear-grid {
    padding-top: 20px;
}

.event-item-card-col {
    margin-bottom: 30px; 
}

/* Base Card Styling */
.event-card-item-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden; 
    height: 100%; 
    display: flex;
    flex-direction: column; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.event-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block; 
}
.event-card-item-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Image Wrapper */
.event-card-image {
    width: 100%;
    height: 220px; 
    overflow: hidden; 
}

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

.event-card-item-container:hover .event-card-image img {
    transform: scale(1.05); 
}

/* Content Box Below Image */
.event-card-content-box {
    padding: 20px;
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
}

.event-card-content-box h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}

.event-card-content-box h4 a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.event-card-content-box h4 a:hover {
    color: var(--primary-color); 
}

.event-card-content-box p.description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Footer Info  */
.event-card-footer-info {
    font-size: 13px;
    color: #888;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px; 
    border-top: 1px solid #eee;
}

.event-card-footer-info i {
    margin-right: 5px;
    color: var(--primary-color); 
}

.event-card-footer-info span {
    display: flex;
    align-items: center;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing .pricing-item h3 {
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background: color-mix(in srgb, var(--default-color), transparent 95%);
}

.pricing .pricing-item h4 {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.pricing .pricing-item h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 16px;
  font-weight: 300;
}

.pricing .pricing-item ul {
  padding: 15px 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .pricing-item ul li {
  padding-bottom: 16px;
}

.pricing .pricing-item ul i {
  color: var(--accent-color);
  font-size: 18px;
  padding-right: 4px;
}

.pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-decoration: line-through;
}

.pricing .btn-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  margin: 0 -20px -20px -20px;
  padding: 20px 15px;
  text-align: center;
}

.pricing .btn-buy {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--heading-font);
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .featured h3 {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .advanced {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact {
  padding-top: 8px;
  padding-bottom: 40px;
}

.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px 12px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*Services and campus lifepage-title about-banner*/

.service-banner {
    background: url('../img/cat-2.jpg') center center / cover no-repeat; 
    position: relative; 
     padding: 100px; 
    text-align: center;
    min-height: 50vh;
}
.service-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
    z-index: 1; 
}

.service-banner .heading,
.service-banner .breadcrumbs {
    position: relative;
    z-index: 2;
}

.service-banner .heading h1,
.service-banner .heading p {
    color: white !important;
}

.service-banner h1 br,
.service-banner .breadcrumbs li br {
    display: none;
}

.service-banner .breadcrumbs {
    background-color: rgba(131, 28, 59, 0.85); 
    position: relative;
}
.services-section h2 {
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-align: center;
}

.facility-grid .facility-item-col  {
    padding-bottom: 1.5rem;
}

.facility-card {
    padding: 0;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.facility-image-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.facility-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.facility-card:hover .facility-image-wrapper img {
    transform: scale(1.05);
}

.facility-content-box {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.facility-content-box .heading-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.facility-content-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0;
    line-height: 1.3;
}

.facility-content-box i {
    /* Styles for the Icon */
    color: var(--accent-color);
    font-size: 1.5rem; 
    margin-right: 0.75rem; 
    line-height: 1;
}

.facility-card p.small-desc {
    font-size: 0.875rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
    flex-grow: 1; 
}


.support-services-list-container {
    margin: 0 auto;
    max-width: 80%; 
}

.support-list-wrapper ul {
    list-style: none;
    padding-left: 0;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border-radius: 0.25rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.support-list-wrapper ul li {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #eee;
    font-weight: 500;
}

.support-list-wrapper ul li i {
    color: var(--accent-color);
    margin-right: 0.75rem;
    font-size: 1.1rem;

}
.support-cards-grid {
    margin:  auto;
    max-width: 90%;
    padding-top: 1.5rem;
}
.support-cards-grid .support-item-col  {
    padding-bottom: 1.5rem;
}
.support-card {
    padding: 0;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 0.5rem;
}

.support-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.support-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.support-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.support-card:hover .support-image-wrapper img {
    transform: scale(1.05);
}

.support-content-box {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.support-content-box .heading-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.support-content-box h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0;
    line-height: 1.3;
}

.support-content-box i {
    color: var(--accent-color);
    font-size: 1.4rem;
    margin-right: 0.75rem;
    line-height: 1;
}

.support-card p.small-desc {
    font-size: 0.875rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
    flex-grow: 1;
}
/* Campus Life & Extracurriculars */

.campus-life-main-row .campus-life-content {
    margin: 0 auto;
    max-width: 100%;
}

.campus-life-content p.lead-intro {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.campus-activities-grid {
    display: flex;
    flex-wrap: wrap;
    margin-top: -1.5rem;
}

.campus-activities-grid .activity-box {
    padding: 1.5rem;
    border: 1px solid #eee;
    border-radius: 0.5rem;
    height: 100%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.campus-activities-grid .activity-box i {
    color: var(--accent-color);
    font-size: 2.5rem;
    line-height: 1;
    display: block;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.campus-activities-grid .activity-box:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-color: var(--accent-color);
}

.campus-activities-grid .activity-box:hover i {
    color: var(--accent-color);
}

.campus-activities-grid .activity-text {
    font-size: 1rem;
    color: var(--default-color);
}

.campus-activities-grid .activity-col {
    padding-bottom: 1.5rem;
}

/*--------------------------------------------------------------
 Faculty & Research Page Styling
--------------------------------------------------------------*/
.faculty-banner {
    background: url('../img/carousel-2.jpg') center center / cover no-repeat; 
    position: relative; 
     padding: 100px; 
    text-align: center;
    min-height: 50vh;
}

/* Add a dark overlay layer for text readability */
.faculty-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
    z-index: 1; 
}

.faculty-banner .heading,
.faculty-banner .breadcrumbs {
    position: relative;
    z-index: 2;
}

.faculty-banner .heading h1,
.faculty-banner .heading p {
    color: white !important;
}

.faculty-banner h1 br,
.faculty-banner .breadcrumbs li br {
    display: none;
}

.faculty-banner .breadcrumbs {
    background-color: rgba(131, 28, 59, 0.85); 
    position: relative;
}

/*--------------------------------------------------------------
# 24. Faculty & Research Page Styling (Final)
--------------------------------------------------------------*/

.services-section-heading {
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-align: center;
}

.faculty-profile-intro {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--default-color);
    opacity: 0.8;
}

/* --- Profile Card Container (Base Layout) --- */
.profile-card {
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}

.profile-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.profile-header img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
    border: 4px solid var(--accent-color);
}

.profile-info h4 {
    margin-bottom: 0;
    color: var(--heading-color);
}

.profile-info p {
    font-size: 0.85rem;
    color: var(--default-color);
    opacity: 0.7;
    margin-bottom: 0;
}

/* --- Full Profile Detail Sections (Permanent Display) --- */
.full-profile-section {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.full-profile-section h3 {
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.full-profile-section h4.sub-heading {
    font-weight: 700;
    color: var(--heading-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.full-profile-section .detail-list {
    list-style: none;
    padding-left: 0;
}

.full-profile-section .bullet-item {
    padding-left: 1rem;
    position: relative;
    margin-bottom: 5px;
    line-height: 1.6;
    color: var(--default-color);
    text-align: justify;
}

.full-profile-section .bullet-item::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.full-profile-section .detail-paragraph {
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 1rem;
}

/* --- Research Engagement Section --- */
.research-engagement .research-card {
    background-color: var(--surface-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.research-engagement .research-card i {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}


.collaboration-box {
    padding: 20px 20px;
    border: 1px solid var(--accent-color);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    margin-top: 3rem;
}

.collaboration-box i { color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;}


    /*--------------------------------------------------------------
Admissions Page Styling
--------------------------------------------------------------*/
.admission-banner {
    background: url('../img/admission.jpg') center center / cover no-repeat; 
    position: relative; 
     padding: 100px; 
    text-align: center;
    min-height: 50vh;
}

/* Add a dark overlay layer for text readability */
.admission-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
    z-index: 1; 
}

.admission-banner .heading,
.admission-banner .breadcrumbs {
    position: relative;
    z-index: 2;
}

.admission-banner .heading h1,
.admission-banner .heading p {
    color: white !important;
}

.admission-banner h1 br,
.admission-banner .breadcrumbs li br {
    display: none;
}

.admission-banner .breadcrumbs {
    background-color: rgba(131, 28, 59, 0.85); 
    position: relative;
}
/* Generic Accent Heading */
.admissions-heading {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
}

/* Step-by-Step Process Guide */
.process-guide-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.process-guide-grid .process-step {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 0 15px;
}

.process-guide-grid .process-step i {
    color: var(--accent-color);
    font-size: 3rem; /* Replaces display-4 */
    margin-bottom: 0.5rem;
}

.process-guide-grid .process-step h4 {
    color: var(--heading-color);
    margin-top: 0.5rem;
    font-size: 1.1rem;
}

/* Fees and International Sections */
.info-block-item h3 i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.admissions-bullet-list ul {
    list-style: none;
    padding-left: 0;
}

.admissions-bullet-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    padding-left: 1rem;
    position: relative;
    font-weight: 500;
}

.admissions-bullet-list li i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    font-size: 1.1rem;
    position: absolute;
    left: 0;
}

/* Deadlines Table */
.admissions-table-wrapper {
    padding-top: 20px;
}

.admissions-table-wrapper .table {
    width: 100%;
    margin-bottom: 1rem;
    text-align: center;
    border: 1px solid #dee2e6;
    border-collapse: collapse;
}

.admissions-table-wrapper .table th,
.admissions-table-wrapper .table td {
    padding: 0.75rem;
    border: 1px solid #dee2e6;
}

.admissions-table-wrapper .table thead th {
    background-color: var(--accent-color);
    color: white;
}
/* Admission Criteria by Level Styling */
.admissions-heading {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
}

/* Forces the criteria boxes into a responsive grid */
.admissions-criteria-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem; /* Space between boxes */
}

/* Individual Criteria Box Styling */
.admissions-criteria-box {
    padding: 1.5rem;
    border: 1px solid var(--accent-color); /* Use accent color for prominence */
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    background-color: var(--surface-color);
    width: 100%;
    
    /* Sets the box width for large screens (two side-by-side) */
    max-width: 500px; 
}

@media (min-width: 992px) {
    .admissions-criteria-box {
        width: 45%; 
        min-height: 250px; /* Ensures visual balance between the two boxes */
    }
}

.admissions-criteria-box h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 50%);
}

.admissions-criteria-box p strong {
    color: var(--accent-color);
    display: inline-block;
    margin-right: 0.5rem;
}

/* --- Process Guide Styling (Reused from previous steps) --- */
.process-guide-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 3rem;
}

.process-guide-grid .process-step {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 0 15px;
}

.process-guide-grid .process-step i {
    color: var(--accent-color);
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.admissions-link-button {
    display: inline-block;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 50px;
    margin-top: 1rem;
    background: var(--accent-color);
    color: var(--contrast-color);
    text-decoration: none;
    transition: background 0.3s;
}

.admissions-link-button:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
Program Index Page Styling
--------------------------------------------------------------*/
.program-banner {
    background: url('../img/cat-3.jpg') center center / cover no-repeat; 
    position: relative; 
     padding: 100px; 
    text-align: center;
    min-height: 50vh;
}

/* Add a dark overlay layer for text readability */
.program-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); 
    z-index: 1; 
}

.program-banner .heading,
.program-banner .breadcrumbs {
    position: relative;
    z-index: 2;
}

.program-banner .heading h1,
.program-banner .heading p {
    color: white !important;
}

.program-banner h1 br,
.program-banner .breadcrumbs li br {
    display: none;
}

.program-banner .breadcrumbs {
    background-color: rgba(131, 28, 59, 0.85); 
    position: relative;
}
/* Program Overview Cards (Level Cards) */
.program-levels-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 0;
    margin-bottom: 2rem;
}

.program-level-col {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 992px) {
    .program-level-col {
        width: 33.333333%;
        flex: 0 0 auto;
    }
}

.program-level-card {
    background-color: var(--surface-color);
    padding: 1.5rem;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-level-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.program-level-card i {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.program-level-card h4 {
    color: var(--accent-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.program-level-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
}

.program-level-link:hover {
    background: var(--accent-color);
    color: white;
}

/* Accreditation Summary */
.slqf-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.slqf-section .section-title {
    padding-bottom: 30px;
}

/* Program List Cards (Bachelors, Diplomas, etc.) */
.programs-list-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 0;
    margin-top: 1.5rem;
}

.programs-list .section-title {
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
    font-size: 1.8rem;
    font-weight: 700;
}

.program-card-col {
    padding-left: 15px;
    padding-right: 15px;
}

.course-item {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.course-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-item .course-content {
    padding: 15px;
}

.course-item .course-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.course-item .course-content p {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.course-item .course-content ul {
    list-style: none;
    padding-left: 0;
    font-size: 0.9rem;
}

.course-item .course-content ul strong {
    color: var(--accent-color);
    font-weight: 600;
}

.course-item .btn-view {
    display: block;
    width: 100%;
    text-align: center;
    padding: 8px 0;
    margin-top: 10px;
    background: var(--accent-color);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.course-item .btn-view:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.program-details h3 {
  color:  var(--accent-color);
  margin-top: 30px;
  font-weight: 600;
}

.program-summary {
  background: #f7f9fc;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.program-summary ul {
  list-style: none;
  padding: 0;
}

.program-summary ul li {
  margin-bottom: 8px;
}

.btn-view {
  background-color: var(--accent-color);
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
}

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