@charset "UTF-8";

/*--------------------------------------------------------------
# Google Fonts Import
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

/*--------------------------------------------------------------
# Font & Color Variables
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Playfair Display", 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: "Playfair Display", serif;
  --nav-font: "Poppins", sans-serif;
  --paragraph: "Poppins", sans-serif;
  --title: "Playfair Display", serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0a476e !important; /* Color for headings, subheadings and title throughout the website */
  --accent-color:  #0a476e !important;  /* 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: rgb(255, 255, 255);  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color:  #2973a1; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
} 

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

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

/* Dark background preset */
.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
--------------------------------------------------------------*/
/* Base body styles */
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

/* Paragraph font */
p {
  font-family: var(--paragraph);
}

/* Span font */
span {
  font-family: var(--paragraph);
}

/* Global link styles */
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

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

/* All heading elements (h1–h6) */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--title);
}

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

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

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

/* Loading spinner circle */
.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
--------------------------------------------------------------*/
/* Site header wrapper */
.header {
  --background-color: #ffffff;; 
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--accent-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
}



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

/* Header logo text */
.header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: bold;
  color: var(--accent-color) !important;
}

/* Header shadow on scroll */
.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* ─── Shared Base ─────────────────────────────────────── */
.navmenu {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* ─── Desktop (≥1200px) ───────────────────────────────── */
@media (min-width: 1200px) {
  .navmenu {
    justify-content: center;
  }

  .navmenu ul {
    margin: 0 auto;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
  }

  .navmenu li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--accent-color);
    padding: 19px 14px;
    font-size: 11px;
    font-family: var(--nav-font);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: 0.3s;
    text-align: center;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 9px;
    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(--accent-color);
  }

  /* ── Dropdown ── */
  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 50%;
    transform: translateX(-50%);
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    text-align: left;
  }

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

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

  .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;
    transform: translateX(-50%);
  }

  /* Nested dropdown */
  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: calc(100% + 5px);
    transform: none;
    visibility: hidden;
  }

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

/* ─── Tablet (768px – 1199px) ────────────────────────── */
@media (min-width: 768px) and (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;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navmenu {
    z-index: 9997;
    justify-content: center;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 40px 20px 40px;
    padding: 10px 0;
    margin: 0 auto;
    border-radius: 8px;
    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);
    text-align: center;
  }

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

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

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

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

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

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

  .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;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
    width: calc(100% - 80px);
    margin: 0 auto;
  }
}

/* ─── Mobile (≤767px) ─────────────────────────────────── */
@media (max-width: 767px) {
  .mobile-nav-toggle {
    color: var(--accent-color);
    font-size: 26px;
    line-height: 0;
    margin-right: 8px;
    cursor: pointer;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
    justify-content: right !important;
    width: 100%;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 12px 20px 12px;
    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.15);
    text-align: center;
  }

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

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 28px;
    height: 28px;
    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%);
    flex-shrink: 0;
  }

  .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: 8px 0;
    margin: 8px 12px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 4px;
    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: 30px;
    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.85);
    transition: 0.3s;
    display: flex;
    align-items: flex-start;
    justify-content: right !important;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
    width: calc(100% - 24px);
    margin: 0 auto;
  }
}

/* ─── Extra Small (≤400px) ───────────────────────────── */
@media (max-width: 400px) {
  .navmenu ul {
    inset: 55px 8px 16px 8px;
  }

  .navmenu a,
  .navmenu a:focus {
    font-size: 14px;
    padding: 9px 12px;
  }

  .mobile-nav-toggle {
    font-size: 24px;
  }
}


/* ─── Header Layout Fix ─── */
.header .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo wrapper */
.header .logo {
  display: flex;
  align-items: center;
  gap: 10px; /* spacing between logo & text */
  flex-shrink: 0;
}

/* Logo image */
.header .logo img {
  height: 70px;
  width: auto;
  display: block;
}

/* Hide text by default */
.header .logo h1 {
  display: none;
  margin: 0;
  line-height: 1;
}

/* Show text only in mobile */
@media (max-width: 767px) {
  .header .logo h1 {
    display: block;
    font-size: 19px;
    color: #fff;
    white-space: nowrap;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .header .logo h1 {
    font-size: 18px;
  }
}

/* Desktop: nav center */
@media (min-width: 1200px) {
  .navmenu {
    flex: 1;
    display: flex;
    justify-content: center;
  }
}

/* Tablet & Mobile: nav right */
@media (max-width: 1199px) {
  .navmenu {
    display: flex;
    justify-content: flex-end;
  }
}

/* Responsive logo size */
@media (max-width: 768px) {
  .header .logo img {
    height: 45px;
  }
}

@media (max-width: 480px) {
  .header .logo img {
    height: 38px;
  }
}
/* ===================== Modern Footer ===================== */
.footer-modern {
  background: linear-gradient(135deg, #0f172a, #0a476e);
  color: #e5e7eb;
  padding: 70px 0 0;
  font-size: 15px;
}

/* Brand Section */
.footer-modern .sitename {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

/* Brand description */
.footer-modern .brand-description {
  color: #cbd5f5;
  line-height: 1.7;
}

/* Contact Info */
.footer-modern .contact-info p {
  margin-bottom: 10px;
  color: #e2e8f0;
}

/* Contact info */
.footer-modern .contact-info i {
  color: #facc15;
  margin-right: 8px;
}

/* Contact info */
.footer-modern .contact-info a {
  color: #e2e8f0;
  text-decoration: none;
}

/* Hover state — contact info a */
.footer-modern .contact-info a:hover {
  color: #facc15;
}

/* Footer Titles */
.footer-modern .footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
  position: relative;
}

/* Pseudo-element ::after */
.footer-modern .footer-title::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #facc15;
  position: absolute;
  left: 0;
  bottom: -8px;
}

/* Links */
.footer-modern .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Li */
.footer-modern .footer-links li {
  margin-bottom: 10px;
}

/* Footer links */
.footer-modern .footer-links a {
  color: #cbd5f5;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover state — footer links a */
.footer-modern .footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

/* Social Icons */
.footer-modern .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s ease;
}

/* Hover state — social links a */
.footer-modern .social-links a:hover {
  background: #facc15;
  color: #0f172a;
  transform: translateY(-3px);
}

/* Footer Bottom */
.footer-modern .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding: 20px 0;
  font-size: 14px;
  background: rgba(0, 0, 0, 0.2);
}

/* Legal links */
.footer-modern .footer-bottom .legal-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Legal links */
.footer-modern .footer-bottom .legal-links a {
  color: #e5e7eb;
  text-decoration: none;
}

/* Hover state — legal links a */
.footer-modern .footer-bottom .legal-links a:hover {
  color: #facc15;
}

/* Credits */
.footer-modern .footer-bottom .credits a {
  color: #facc15;
  text-decoration: none;
}

/* Hover state — credits a */
.footer-modern .footer-bottom .credits a:hover {
  text-decoration: underline;
}

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

  .footer-modern .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-modern .social-links {
    justify-content: center;
    margin-top: 10px;
  }

  .footer-modern .footer-bottom .legal-links {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  .footer-modern .footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 16px;
    text-align: center; /* ← changed */
    max-width: 320px;
    margin: 0 auto;
  }

  .footer-modern .footer-links li {
    margin-bottom: 8px;
  }
}

@media (max-width: 575px) {
  .footer-modern .footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 12px;
    text-align: center; /* ← changed */
    max-width: 280px;
    margin: 0 auto;
  }

  .footer-modern .footer-links li {
    margin-bottom: 6px;
  }

  .footer-modern .footer-links a {
    font-size: 14px;
  }
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
  .page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
  }

/* Pseudo-element ::before */
.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

/* H1 */
.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Page title */
.page-title p {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Ol */
.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

/* Ol */
.page-title .breadcrumbs ol a {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/* Hover state — breadcrumbs ol a */
.page-title .breadcrumbs ol a:hover {
  color: var(--contrast-color);
}

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

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




/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
/* Section */
section,
/* 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 */
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

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

/* Pseudo-element ::before */
.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;
}

/* Pseudo-element ::after */
.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 */
.section-title p {
  margin-bottom: 0;
}




/* ===============================
# Hero Section
=============================== */
/* ===============================
# Hero Logos Animation
=============================== */
/* Hero logos */
.hero-logos {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  z-index: 10;
}

/* Base logo styling */
.hero-logo {
  width: 140px;
  height: auto;
  opacity: 0;
  transform: translateY(-20px);
  animation-fill-mode: forwards;
}

/* Animation classes */
.animate-left {
  animation: slideInLeft 1.2s ease-out forwards;
}

/* Animate right */
.animate-right {
  animation: slideInRight 1.2s ease-out forwards;
  animation-delay: 0.3s; /* slight delay for nice effect */
}

/* Keyframes */
@keyframes slideInLeft {
  0% {
    transform: translateX(-80px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  0% {
    transform: translateX(80px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-logo {
    width: 75px;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    width: 50px;
  }
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

  .highlight-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }

  .highlight-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
  }

  .highlight-item .icon i {
    transition: transform 0.4s ease;
  }

  .highlight-item:hover .icon i {
    transform: scale(1.25) rotate(-8deg);
  }

  .btn-more {
    display: inline-block;
    margin-top: 12px;
    padding: 5px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-color);
    border: 1.5px solid var(--accent-color);
    border-radius: 20px;
    background: transparent;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease, border-color 0.3s ease;
    z-index: 1;
  }

  .btn-more::before {
    content: '';
    position: absolute;
    inset: 0;
    color: #000 !important;
    background: 0a476e;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
    border-radius: 20px;
  }

  .btn-more:hover::before {
    transform: scaleX(1);
  }

  .btn-more:hover {
    color: #0c0808;
  }

  .btn-more .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
  }

  .btn-more:hover .arrow {
    transform: translateX(4px);
  }


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

/* Hero container */
.hero .hero-container {
  background: linear-gradient(rgba(0, 0, 0, 0.808), rgba(0, 0, 0, 0.698)), url("../img/HOME_NEW.jpeg") center/cover no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--contrast-color);
  padding: 60px 20px;
  position: relative;
}


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

/* Hero paragraph */
.hero .hero-container .hero-paragraph{
  font-family: var(--paragraph) !important;
}

/* Announcement */
.hero .hero-container .announcement{
  font-family: var(--paragraph) !important;
  font-size: 18px !important;
}


/* Cta buttons */
.hero .hero-container .cta-buttons{
  font-family: var(--paragraph) !important;
}
/* H1 */
.hero .hero-container .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

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

/* Hero content */
.hero .hero-container .hero-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

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

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

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

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

/* Btn apply */
.hero .hero-container .hero-content .cta-buttons .btn-apply {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

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

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

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

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

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

/* Announcement */
.hero .hero-container .hero-content .announcement p {
  margin: 0;
  font-size: 1.5rem;
  font-weight: bold;
}
/* ── Highlights Section ───────────────────────── */
.highlights-container {
  margin-top: -60px;
  position: relative;
  z-index: 10;
  padding: 0 1rem;
  font-family: var(--paragraph);
}

/* Highlights grid */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

/* ── Responsive Breakpoints ───────────────────── */
@media (max-width: 1199px) {
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .highlights-container {
    margin-top: -40px;
  }
}

@media (max-width: 480px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* ── Card ─────────────────────────────────────── */
.highlight-item {
  background-color: var(--surface-color, #fff);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 1.5rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

/* Hover state — highlight item */
.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color, #0056b3);
  text-decoration: none;
  color: black;
}

/* ── Icon Circle ──────────────────────────────── */
.highlight-item .hl-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color, #0056b3), transparent 88%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent-color, #0056b3);
  flex-shrink: 0;
}

/* ── Label ────────────────────────────────────── */
.highlight-item h6 {
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  color: var(--heading-color, #222);
}

/* ── More Link ────────────────────────────────── */
.highlight-item .btn-more {
  font-size: 0.8rem;
  color: var(--accent-color, #0056b3);
  margin-top: auto;
  display: inline-block;
}


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

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

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

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

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

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

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

/* Stat item */
.about .stats-row .stat-item {
  text-align: center;
  color:var(--accent-color) !important;
}

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

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

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

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

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

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

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

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

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

/* Hover state — btn learn more */
.about .btn-learn-more:hover i {
  transform: translateX(3px);
}

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




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

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

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

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


/* Section Label Styling */
.section-label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--gold-light, #ffffff);
  border-top: 2px solid var(--gold-light, #11318a);
  display: inline-block;
  padding-top: 6px;
}


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

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

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

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

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

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

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

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

/* =============================
   Meston About Section
============================= */

/* Meston about */
.meston_about {
  padding: 5rem 0;
  color: var(--default-color);
  background: var(--background-color);
}

/* Meston about  container */
.meston_about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Two-column grid */
.meston_about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Eyebrow label */
.meston_about__eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-color);
  background: #e8edf7;
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 1rem;
}

/* Headings */
.meston_about__heading {
  font-family: var(--title);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 1.25rem;
  line-height: 1.25;
}

/* Body text */
.meston_about__body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--default-color);
  margin: 0 0 1rem;
}

/* Strong */
.meston_about__body strong {
  color: var(--heading-color);
  font-weight: 600;
}

/* =============================
   Timeline
============================= */
/* Meston about  timeline */
.meston_about__timeline {
  margin-top: 2rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid #d0d8eb;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Meston about  timeline item */
.meston_about__timeline-item {
  position: relative;
}

/* Meston about  timeline dot */
.meston_about__timeline-dot {
  position: absolute;
  left: -1.85rem;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-color);
  border: 2px solid #fff;
  box-sizing: border-box;
}

/* Meston about  timeline dot  present */
.meston_about__timeline-dot--present {
  background: #1D9E75;
}

/* Meston about  timeline year */
.meston_about__timeline-year {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 2px;
}

/* Meston about  timeline year  present */
.meston_about__timeline-year--present {
  color: #0F6E56;
}

/* Meston about  timeline title */
.meston_about__timeline-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 4px;
}

/* Meston about  timeline desc */
.meston_about__timeline-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--default-color);
  opacity: 0.75;
  margin: 0;
}

/* Strong */
.meston_about__timeline-desc strong {
  color: var(--heading-color);
  opacity: 1;
}

/* =============================
   Image Panel
============================= */
/* Meston about  image panel */
.meston_about__image-panel {
  position: sticky;
  top: 4rem;
}

/* Meston about  image frame */
.meston_about__image-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #d0d8eb;
}

/* Meston about  carousel */
.meston_about__carousel {
  width: 100%;
}

/* Meston about  carousel img */
.meston_about__carousel-img {
  height: 400px;
  object-fit: cover;
  object-position: center;
}

/* Badges */
.meston_about__badges {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

/* Meston about  badge */
.meston_about__badge {
  font-size: 15px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 99px;
  border: 1px solid #d0d8eb;
  color: var(--default-color);
  background: var(--surface-color);
}

/* =============================
   Core Values
============================= */
/* Meston about  values */
.meston_about__values {
  margin-top: 4.5rem;
}

/* Meston about  values heading */
.meston_about__values-heading {
  font-family: var(--title);
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  text-align: center;
  margin-bottom: 0.4rem;
}

/* Meston about  values sub */
.meston_about__values-sub {
  text-align: center;
  font-size: 18px;
  color: var(--default-color);
  opacity: 0.6;
  margin-bottom: 2.5rem;
}

/* Meston about  values grid */
.meston_about__values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

/* Meston about  value card */
.meston_about__value-card {
  background: var(--surface-color);
  border: 1px solid #d0d8eb;
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
  cursor: default;
}

/* Hover state — meston_about__value card */
.meston_about__value-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

/* Meston about  value card  active */
.meston_about__value-card--active {
  border-color: var(--accent-color);
  background: #e8edf7;
}

/* Value Icons — color removed, neutral bg only */
.meston_about__value-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: #e8edf7;
}

/* Meston about  value title */
.meston_about__value-title {
  font-family: var(--title);
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 0.5rem;
}

/* Meston about  value desc */
.meston_about__value-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--default-color);
  opacity: 0.7;
  margin: 0;
}

/* =============================
   Responsive
============================= */
@media (max-width: 992px) {
  .meston_about__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .meston_about__image-panel {
    position: static;
  }
  .meston_about__heading {
    font-size: 2rem;
  }
  .meston_about__values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .meston_about__heading {
    font-size: 1.75rem;
  }
  .meston_about__values-heading {
    font-size: 1.6rem;
  }
  .meston_about__values-grid {
    grid-template-columns: 1fr;
  }
  .meston_about__carousel-img {
    height: 260px;
  }
  .meston_about__body {
    font-size: 15px;
  }
  .meston_about__timeline-desc {
    font-size: 14px;
  }
  .meston_about__value-desc {
    font-size: 14px;
  }
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
/* H2 */
.about .about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

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

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

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

/* Pseudo-element ::before */
.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%);
}

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

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

/* Timeline dot */
.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);
}

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

/* About image */
.about .about-image {
  position: relative;
}

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

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

/* Mission */
.about .about-image .mission-vision .mission,
/* Vision */
.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);
}

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

/* Pseudo-element ::before */
.about .about-image .mission-vision .mission h3:before,
/* Pseudo-element ::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;
}

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

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

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

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

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

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


/* Value card */
.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, border-color 1s ease; /* Add border-color transition */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 4px solid transparent; /* Initial border */
}

/* Hover state — value card */
.about .core-values .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color); /* Change border color on hover */
}




/*--------------------------------------------------------------
# Work Process Section
--------------------------------------------------------------*/
/* Steps content */
.work-process .steps-content {
  padding-right: 30px;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .work-process .steps-content {
    padding-right: 0;
  }
}

/* H2 */
.work-process .steps-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .work-process .steps-content h2 {
    font-size: 2rem;
  }
}

/* Lead */
.work-process .steps-content .lead {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--default-color);
}

/* Steps content */
.work-process .steps-content p {
  margin-bottom: 2rem;
  color: var(--default-color);
}

/* Steps cta */
.work-process .steps-content .steps-cta {
  display: flex;
  gap: 15px;
}

@media (max-width: 576px) {
  .work-process .steps-content .steps-cta {
    flex-direction: column;
  }
}

/* Btn */
.work-process .steps-content .steps-cta .btn {
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* Btn primary */
.work-process .steps-content .steps-cta .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

/* Hover state — btn primary */
.work-process .steps-content .steps-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Btn outline */
.work-process .steps-content .steps-cta .btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

/* Hover state — btn outline */
.work-process .steps-content .steps-cta .btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Steps list */
.work-process .steps-list {
  position: relative;
}

/* Pseudo-element ::before */
.work-process .steps-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25px;
  width: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

@media (max-width: 576px) {
  .work-process .steps-list::before {
    left: 20px;
  }
}

/* Step item */
.work-process .steps-list .step-item {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

/* Last child */
.work-process .steps-list .step-item:last-child {
  margin-bottom: 0;
}

/* Hover state — step item */
.work-process .steps-list .step-item:hover .step-number {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

/* Step number */
.work-process .steps-list .step-item .step-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color) 10%, white 90%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-right: 20px;
  z-index: 1;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .work-process .steps-list .step-item .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* Step content */
.work-process .steps-list .step-item .step-content {
  padding-top: 5px;
}

/* H3 */
.work-process .steps-list .step-item .step-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

@media (max-width: 576px) {
  .work-process .steps-list .step-item .step-content h3 {
    font-size: 1.1rem;
  }
}

/* Step content */
.work-process .steps-list .step-item .step-content p {
  font-size: 0.95rem;
  color: var(--default-color);
  margin-bottom: 0;
}


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

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

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

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

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

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

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

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

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

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

/* Hover state — overview image */
.featured-programs .programs-overview .overview-image:hover img {
  transform: scale(1.05);
}

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

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

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

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

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

/* Hover state — card image */
.featured-programs .featured-program .card-image:hover img {
  transform: scale(1.08);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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














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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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







/*--------------------------------------------------------------
# Meston Events Section
--------------------------------------------------------------*/
/* Meston events */
.meston-events {
  padding: 60px 0;
}

/* ===================== Event Cards ===================== */
.meston-events .event-highlight {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

/* Hover state — event highlight */
.meston-events .event-highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px
    color-mix(in srgb, var(--default-color), transparent 85%);
  border-color: color-mix(
    in srgb,
    var(--accent-color),
    transparent 80%
  );
}

/* ===================== Event Image ===================== */
.meston-events .event-image-wrapper {
  position: relative;
  height: 180px;
  overflow: hidden;
}

/* Img */
.meston-events .event-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Hover state — event highlight */
.meston-events .event-highlight:hover .event-image-wrapper img {
  transform: scale(1.08);
}

/* ===================== Event Badge ===================== */
.meston-events .event-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: color-mix(
    in srgb,
    var(--surface-color),
    transparent 10%
  );
  backdrop-filter: blur(10px);
  padding: 8px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--heading-color);
  transition: all 0.3s ease;
  border: 1px solid
    color-mix(in srgb, var(--default-color), transparent 85%);
}

/* Event badge */
.meston-events .event-badge i {
  font-size: 13px;
  color: var(--accent-color);
}

/* Hover state — event highlight */
.meston-events .event-highlight:hover .event-badge {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/* Hover state — event highlight */
.meston-events .event-highlight:hover .event-badge i {
  color: var(--contrast-color);
}

/* ===================== Event Information ===================== */
.meston-events .event-info {
  padding: 20px;
}

/* H5 */
.meston-events .event-info h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--heading-color);
  line-height: 1.3;
}

/* Event info */
.meston-events .event-info p {
  font-size: 14px;
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 25%
  );
  line-height: 1.5;
  margin-bottom: 15px;
}

/* ===================== Event Stats ===================== */
.meston-events .event-stats {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Span */
.meston-events .event-stats span {
  font-size: 12px;
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 35%
  );
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
}

/* Span */
.meston-events .event-stats span i {
  color: var(--accent-color);
  font-size: 11px;
}

/* ===================== Events Overview ===================== */
.meston-events .events-overview {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(
      in srgb,
      var(--accent-color),
      var(--heading-color) 30%
    )
  );
  border-radius: 20px;
  padding: 40px 30px;
  color: var(--contrast-color);
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Decorative Background Circle */
.meston-events .events-overview::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: color-mix(
    in srgb,
    var(--contrast-color),
    transparent 95%
  );
  border-radius: 50%;
  z-index: 0;
}

/* ===================== Overview Header ===================== */
.meston-events .events-overview .overview-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 30px;
}

/* Overview icon */
.meston-events .events-overview .overview-icon {
  width: 70px;
  height: 70px;
  background: color-mix(
    in srgb,
    var(--contrast-color),
    transparent 85%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* Overview icon */
.meston-events .events-overview .overview-icon i {
  font-size: 30px;
  color: var(--accent-color);
}

/* H3 */
.meston-events .events-overview .overview-header h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--contrast-color);
}

/* Overview subtitle */
.meston-events .events-overview .overview-subtitle {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.5;
  margin: 0;
}

/* ===================== Benefits List ===================== */
.meston-events .events-overview .benefits-list {
  position: relative;
  z-index: 2;
}

/* Benefit item */
.meston-events .events-overview .benefits-list .benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  padding: 12px 15px;
  background: color-mix(
    in srgb,
    var(--contrast-color),
    transparent 90%
  );
  border-radius: 12px;
  transition: all 0.3s ease;
}

/* Hover state — benefit item */
.meston-events .events-overview .benefits-list .benefit-item:hover {
  background: color-mix(
    in srgb,
    var(--contrast-color),
    transparent 85%
  );
  transform: translateX(5px);
}

.meston-events
  .events-overview
  .benefits-list
  .benefit-item
  .benefit-icon {
  width: 40px;
  height: 40px;
  background: var(--contrast-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.meston-events
  .events-overview
  .benefits-list
  .benefit-item
  .benefit-icon
  i {
  font-size: 18px;
  color: var(--accent-color);
}

.meston-events
  .events-overview
  .benefits-list
  .benefit-item
  .benefit-content
  h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--contrast-color);
}

.meston-events
  .events-overview
  .benefits-list
  .benefit-item
  .benefit-content
  span {
  font-size: 12px;
  opacity: 0.8;
}

/* ===================== View All Events Button ===================== */
.meston-events .events-guide-btn {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.3s ease;
}

/* Hover state — events guide btn */
.meston-events .events-guide-btn:hover {
  background: color-mix(
    in srgb,
    var(--contrast-color),
    transparent 10%
  );
  transform: translateY(-2px);
}

/* Events guide btn */
.meston-events .events-guide-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

/* Hover state — events guide btn */
.meston-events .events-guide-btn:hover i {
  transform: translateX(3px);
}

/* ===================== Responsive Design ===================== */
@media (max-width: 992px) {
  .meston-events .events-overview {
    margin-top: 30px;
  }

  .meston-events .events-overview .overview-icon {
    width: 60px;
    height: 60px;
  }

  .meston-events .events-overview .overview-icon i {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .meston-events .event-image-wrapper {
    height: 160px;
  }

  .meston-events .event-badge {
    padding: 6px 10px;
    font-size: 11px;
  }

  .meston-events .event-info {
    padding: 18px;
  }

  .meston-events .event-stats {
    flex-direction: column;
    gap: 8px;
  }

  .meston-events .events-overview {
    padding: 30px 25px;
  }

  .meston-events .events-overview .overview-header h3 {
    font-size: 20px;
  }

  .meston-events
    .events-overview
    .benefits-list
    .benefit-item {
    padding: 10px 12px;
  }

  .meston-events
    .events-overview
    .benefits-list
    .benefit-item
    .benefit-icon {
    width: 35px;
    height: 35px;
  }

  .meston-events
    .events-overview
    .benefits-list
    .benefit-item
    .benefit-icon
    i {
    font-size: 16px;
  }
}



/* ── Lightbox Overlay ── */
  .meston-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: lbFadeIn 0.3s ease;
  }

  .meston-lightbox.active {
    display: flex;
  }

  /* ── Inner Box ── */
  .meston-lightbox .lb-inner {
    position: relative;
    max-width: 860px;
    width: 100%;
    background: #111;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
    animation: lbSlideUp 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  /* ── Image ── */
  .meston-lightbox .lb-image {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
    background: #000;
  }

  /* ── Caption Bar ── */
  .meston-lightbox .lb-caption {
    background: #111;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .meston-lightbox .lb-caption .lb-title {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin: 0;
  }

  .meston-lightbox .lb-caption .lb-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    margin: 3px 0 0;
  }

  .meston-lightbox .lb-caption .lb-counter {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* ── Close Button ── */
  .meston-lightbox .lb-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: none;
    background: rgba(0,0,0,0.55);
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 10;
    backdrop-filter: blur(4px);
  }

  .meston-lightbox .lb-close:hover {
    background: rgba(220, 53, 69, 0.85);
    transform: scale(1.1) rotate(90deg);
  }

  /* ── Prev / Next ── */
  .meston-lightbox .lb-prev,
  .meston-lightbox .lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, transform 0.25s;
    backdrop-filter: blur(4px);
    z-index: 10;
  }

  .meston-lightbox .lb-prev { left: 14px; }
  .meston-lightbox .lb-next { right: 14px; }

  .meston-lightbox .lb-prev:hover,
  .meston-lightbox .lb-next:hover {
    background: var(--accent-color, #0d6efd);
    transform: translateY(-60%) scale(1.1);
  }

  /* ── Thumbnail Strip ── */
  .meston-lightbox .lb-thumbs {
    display: flex;
    gap: 8px;
    padding: 10px 16px 14px;
    background: #0a0a0a;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #333 transparent;
  }

  .meston-lightbox .lb-thumbs img {
    width: 60px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.45;
    border: 2px solid transparent;
    transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
    flex-shrink: 0;
  }

  .meston-lightbox .lb-thumbs img:hover {
    opacity: 0.8;
    transform: scale(1.05);
  }

  .meston-lightbox .lb-thumbs img.active {
    opacity: 1;
    border-color: var(--accent-color, #0d6efd);
  }

  /* ── Event card — clickable cursor ── */
  .event-highlight .event-image-wrapper {
    cursor: zoom-in;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
  }

  .event-highlight .event-image-wrapper img {
    transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: block;
    width: 100%;
  }

  .event-highlight .event-image-wrapper:hover img {
    transform: scale(1.06);
  }

  /* ── Zoom icon overlay on hover ── */
  .event-highlight .event-image-wrapper {
    position: relative;
  }

  .event-highlight .event-image-wrapper .zoom-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.35s ease;
    border-radius: 12px 12px 0 0;
    z-index: 2;
  }

  .event-highlight .event-image-wrapper .zoom-overlay i {
    font-size: 32px;
    color: #fff;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.35s ease, transform 0.35s ease;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
  }

  .event-highlight .event-image-wrapper:hover .zoom-overlay {
    background: rgba(0,0,0,0.35);
  }

  .event-highlight .event-image-wrapper:hover .zoom-overlay i {
    opacity: 1;
    transform: scale(1);
  }

  /* ── Keyframes ── */
  @keyframes lbFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  @keyframes lbSlideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)    scale(1);    }
  }

  /* ── Responsive ── */
  @media (max-width: 576px) {
    .meston-lightbox .lb-prev { left: 8px; }
    .meston-lightbox .lb-next { right: 8px; }
    .meston-lightbox .lb-inner { border-radius: 10px; }
    .meston-lightbox .lb-image { max-height: 55vw; }
    .meston-lightbox .lb-caption .lb-title { font-size: 13px; }
  }


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/*--------------------------------------------------------------
# Founder Section
--------------------------------------------------------------*/

    .founder-profile-section {
      background: #f8f9fa;
      padding: 60px 0;
      border-bottom:var(--accent-color);
    }

    .founder-img-wrap {
      position: relative;
      max-width: 300px;
      margin: 0 auto;
    }
    .founder-img-border {
      border: 5px solid var(--accent-color);
      border-radius: 6px;
      overflow: hidden;
      box-shadow: 8px 12px 36px rgba(0,0,0,.18);
      aspect-ratio: 3/4;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #dce8f7;
    }
    .founder-img-border img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
    }
    .founder-img-placeholder {
      width: 100%; height: 100%;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      background: linear-gradient(160deg, #19467d, #b3cce8);
      color:var(--accent-color); gap: 10px;
    }
    .founder-img-placeholder i { font-size: 5rem; opacity: .35; }
    .founder-img-placeholder p  { font-size: .82rem; opacity: .6; font-style: italic; }

    .founder-img-tag {
      position: absolute;
      bottom: -14px; left: 50%;
      transform: translateX(-50%);
      background: var(--accent-color);
      color: #fff;
      font-family: var(--paragraph);
      font-size: .75rem; font-weight: 600;
      letter-spacing: 1.5px;
      padding: 6px 20px;
      white-space: nowrap;
      text-transform: uppercase;
      border-radius: 2px;
    }

    .founder-name {
      font-family: var(--title);
      font-size: clamp(1.7rem, 4vw, 2.6rem);
      color: #1a1a2e; font-weight: 700; line-height: 1.2;
    }
    .founder-name em { color: #1565c0; font-style: italic; }

    .founder-sub {
      color: #1565c0; font-size: .82rem;
      font-family: var(--paragraph);
      letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 6px;
    }

    .founder-motto-box {
      border-left: var(--accent-color);
      background: #eaf1fb;
      padding: 14px 20px;
      border-radius: 0 6px 6px 0;
    }
    .founder-motto-box .latin {
      font-family: var(--title);
      font-style: italic; font-size: 1.4rem;
      color:var(--accent-color); font-weight: 700;
    }
    .founder-motto-box .translation { color: #2615c0; font-size: .93rem; margin-top: 3px; }

    .founder-stat-pill {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--accent-color); color: #fff;
      border-radius: 50px; padding: 6px 16px;
      font-size: .84rem; font-family: var(--paragraph);
    }
    .founder-stat-pill i { color: #90c4ff; font-size: .85rem; }
/* ===============================
FOUNDER TIMELINE SECTION
================================ */
/* Founder timeline section */
.founder-timeline-section {
background: #fff;
padding: 60px 0;
}

/* Heading */
.founder-section-heading {
font-family: var(--title);
font-size: clamp(1.4rem, 3.5vw, 2rem);
color: #1a1a2e;
font-weight: 700;
position: relative;
display: inline-block;
}
/* Pseudo-element ::after */
.founder-section-heading::after {
content: '';
position: absolute;
bottom: -6px;
left: 0;
width: 55%;
height: 3px;
background: var(--accent-color);
}

/* Timeline container */
.founder-timeline {
position: relative;
}
/* Pseudo-element ::before */
.founder-timeline::before {
content: '';
position: absolute;
left: 58px;
top: 0;
bottom: 0;
width: 2px;
background: linear-gradient(
/* Bottom */
to bottom,
#1515c0 0%,
#0a119b 50%,
#1515c0 100%
);
}

/* Timeline item */
.tl-item {
display: flex;
margin-bottom: 32px;
opacity: 0;
transform: translateX(-18px);
transition: opacity 0.5s ease, transform 0.5s ease;
}
/* Visible */
.tl-item.visible {
opacity: 1;
transform: translateX(0);
}

/* Year + Dot (Improved Layout) */
.tl-year-col {
flex: 0 0 120px;
display: flex;
align-items: center;
gap: 10px;
}

/* Dot */
.tl-dot {
width: 16px;
height: 16px;
border-radius: 50%;
background: var(--accent-color);
border: 3px solid #fff;
box-shadow: 0 0 0 2px #1565c0;
flex-shrink: 0;
z-index: 1;
}

/* Year (Clean Badge Style) */
.tl-year {
font-family: var(--paragraph);
font-weight: 700;
font-size: 0.95rem;
color: #0d3b7a;
margin: 0;
white-space: nowrap;
background: #e3f2fd;
padding: 3px 10px;
border-radius: 20px;
}

/* Card */
.tl-card {
flex: 1;
background: #fff;
border: 1px solid #cce0f5;
border-left: 4px solid #1565c0;
border-radius: 6px;
padding: 16px 20px;
box-shadow: 2px 4px 14px rgba(21, 101, 192, 0.08);
transition: box-shadow 0.3s, transform 0.3s;
margin-left: 10px;
}
/* Hover state — tl card */
.tl-card:hover {
box-shadow: 4px 8px 24px rgba(21, 101, 192, 0.18);
transform: translateY(-2px);
}

/* Title */
.tl-card .tl-title {
font-family: var(--paragraph);
font-weight: 600;
font-size: 1rem;
color: #0d3b7a;
margin-bottom: 6px;
display: flex;
align-items: center;
gap: 8px;
}
/* Tl title */
.tl-card .tl-title i {
color: #1565c0;
font-size: 0.9rem;
}

/* Description */
.tl-card p {
font-size: 0.95rem;
color: #3a3a4a;
margin: 0;
line-height: 1.65;
}

/* Hover effect for year */
.tl-item:hover .tl-year {
color: #1565c0;
background: #bbdefb;
}

/* ===============================
LEGACY SECTION
================================ */
/* Founder legacy section */
.founder-legacy-section {
background: #ffffff;
color: #000;
padding: 60px 0;
}

/* Legacy quote text */
.legacy-quote-text {
font-family: var(--title);
font-style: italic;
font-size: clamp(1.1rem, 2.8vw, 1.6rem);
color: #141972;
line-height: 1.7;
text-align: center;
}
/* Pseudo-element ::before */
.legacy-quote-text::before {
content: '\201C';
font-size: 2.2rem;
color: #42a5f5;
vertical-align: -10px;
margin-right: 4px;
}
/* Pseudo-element ::after */
.legacy-quote-text::after {
content: '\201D';
font-size: 2.2rem;
color: #42a5f5;
vertical-align: -10px;
margin-left: 4px;
}

/* Legacy card */
.legacy-card {
background: rgba(255, 255, 255, 0.07);
border: 1px solid rgba(9, 50, 84, 0.848);
border-radius: 8px;
padding: 24px 20px;
text-align: center;
transition: background 0.3s;
}
/* Hover state — legacy card */
.legacy-card:hover {
background: rgba(66, 165, 245, 0.15);
}
/* Legacy card */
.legacy-card i {
font-size: 2rem;
color: #42a5f5;
margin-bottom: 10px;
display: block;
}
/* H5 */
.legacy-card h5 {
font-family: var(--paragraph);
color: #18248c;
margin-bottom: 6px;
font-size: 1rem;
font-weight: 600;
}
/* Legacy card */
.legacy-card p {
font-size: 0.88rem;
color: rgba(0, 0, 0, 0.72);
margin: 0;
}

/* ===============================
RESPONSIVE
================================ */
@media (max-width: 767px) {
/* Pseudo-element ::before */
.founder-timeline::before {
left: 38px;
}

/* Tl year col */
.tl-year-col {
flex: 0 0 80px;
gap: 6px;
}

/* Tl year */
.tl-year {
font-size: 0.8rem;
padding: 2px 6px;
}

/* Tl card */
.tl-card {
padding: 14px;
}

/* Founder profile section */
.founder-profile-section {
padding: 40px 0;
}
}

/* ============================================================
   BASE STYLES
============================================================ */
/* Base body styles */
body {
  font-family: var(--sans);
  background: var(--background-color);
  color: var(--default-color);
}

/* ============================================================
   PAGE HERO BANNER
============================================================ */
/* Hp hero */
.hp-hero {
  background: var(--heading-color);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle diagonal texture overlay */
.hp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1) 0px,
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px,
    transparent 22px
  );
  pointer-events: none;
}

/* Hp hero cross */
.hp-hero-cross {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

/* Hp hero eyebrow */
.hp-hero-eyebrow {
  font-family: var(--sans);
  font-size: 15px !important;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--contrast-color);
  opacity: 0.7;
  margin-bottom: .6rem;
}

/* Hp hero title */
.hp-hero-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 6vw, 3rem);
  font-weight: 400;
  color: var(--contrast-color);
  line-height: 1.2;
  margin-bottom: .5rem;
}

/* Hp hero sub */
.hp-hero-sub {
  font-size: .95rem;
  color: var(--contrast-color);
  opacity: 0.8;
  font-style: italic;
  font-family: var(--serif);
}

/* Hp hero line */
.hp-hero-line {
  width: 60px;
  height: 2px;
  background: var(--accent-color);
  border-radius: 1px;
  margin: 1.25rem auto 0;
}

/* Breadcrumb override in hero */
.hp-hero .breadcrumbs ol li a { 
  color: var(--contrast-color); 
  opacity: 0.7;
}
/* Current */
.hp-hero .breadcrumbs ol li.current { 
  color: var(--contrast-color); 
}

/* ============================================================
   LAYOUT WRAPPERS
============================================================ */
/* Hp section */
.hp-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 1.25rem;
}

/* Hp section */
.hp-section + .hp-section {
  padding-top: 0;
}

/* ============================================================
   SECTION LABEL DIVIDER
============================================================ */
/* Hp label */
.hp-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 2rem;
}

/* Hp label line */
.hp-label-line {
  flex: 1;
  height: 1px;
  background: var(--accent-color);
  opacity: 0.2;
}

/* Hp label text */
.hp-label-text {
  font-family: var(--sans);
  font-size: 13.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-color);
  white-space: nowrap;
}

/* ============================================================
   HYMN CARD
============================================================ */
/* Hymn card */
.hymn-card {
  background: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--hp-radius-card);
  overflow: hidden;
}

/* Header strip */
.hymn-card-header {
  background: var(--heading-color);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Hymn card header icon */
.hymn-card-header-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

/* H2 */
.hymn-card-header h2 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--contrast-color);
  margin: 0;
}

/* Hymn card header */
.hymn-card-header p {
  font-family: var(--sans);
  font-size: .72rem;
  color: var(--contrast-color);
  opacity: 0.7;
  margin: .2rem 0 0;
}

/* Stanza grid */
.hymn-body {
  padding: 1.75rem;
}

/* Stanza grid */
.stanza-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.1rem;
}

/* Stanza */
.stanza {
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--accent-color);
  border-radius: 0 var(--hp-radius-sm) var(--hp-radius-sm) 0;
  background: rgba(15, 4, 164, 0.05);
}

/* Stanza */
.stanza p {
  font-family: var(--serif);
  font-style: italic;
  font-size: .95rem;
  line-height: 1.85;
  color: var(--default-color);
  margin: 0;
}

/* Attribution note */
.hymn-note {
  margin-top: 1.25rem;
  padding: .9rem 1.1rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: var(--hp-radius-sm);
}

/* Hymn note */
.hymn-note p {
  font-family: var(--sans);
  font-size: .78rem;
  color: var(--default-color);
  opacity: 0.7;
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   PRAYER GRID
============================================================ */
/* Prayer grid */
.prayer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

/* Prayer card */
.prayer-card {
  background: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Prayer card top */
.prayer-card-top {
  background: var(--heading-color);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* Prayer card icon */
.prayer-card-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* H3 */
.prayer-card-top h3 {
  font-family: var(--serif);
  font-size: .9rem;
  font-weight: 400;
  color: var(--contrast-color);
  margin: 0;
  line-height: 1.4;
}

/* Span */
.prayer-card-top span {
  font-family: var(--sans);
  font-size: .7rem;
  color: var(--contrast-color);
  opacity: 0.7;
  display: block;
  margin-top: 3px;
}

/* Prayer card body */
.prayer-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Blockquote */
.prayer-card-body blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: .93rem;
  line-height: 1.9;
  color: var(--default-color);
  margin: 0;
  flex: 1;
}

/* Prayer attribution */
.prayer-attribution {
  margin-top: 1rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: right;
}

/* Prayer attribution */
.prayer-attribution p {
  font-family: var(--sans);
  font-size: .73rem;
  color: var(--default-color);
  opacity: 0.7;
  margin: 0;
}

/* Context text */
.prayer-card-body .context-text {
  font-style: normal;
  font-family: var(--sans);
  font-size: .87rem;
  line-height: 1.8;
  color: var(--default-color);
}

/* ============================================================
   COLLEGE PRAYER — FULL WIDTH
============================================================ */
/* College prayer card */
.college-prayer-card {
  background: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--hp-radius-card);
  overflow: hidden;
}

/* Cp header */
.cp-header {
  background: var(--heading-color);
  padding: 1.5rem 1.75rem;
  text-align: center;
  position: relative;
}

/* Pseudo-element ::before */
.cp-header::before,
/* Pseudo-element ::after */
.cp-header::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 1px;
  background: rgba(15, 4, 164, 0.3);
}

/* Pseudo-element ::before */
.cp-header::before { left: 1.75rem; }
/* Pseudo-element ::after */
.cp-header::after  { right: 1.75rem; }

/* H2 */
.cp-header h2 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--contrast-color);
  margin: 0;
}

/* Cp header */
.cp-header p {
  font-family: var(--sans);
  font-size: .72rem;
  color: var(--contrast-color);
  opacity: 0.7;
  margin: .3rem 0 0;
}

/* Cp body */
.cp-body {
  padding: 2rem 1.75rem;
}

/* Cp stanzas */
.cp-stanzas {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Cp stanza */
.cp-stanza {
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--accent-color);
  border-radius: 0 var(--hp-radius-sm) var(--hp-radius-sm) 0;
  background: rgba(15, 4, 164, 0.05);
}

/* Cp stanza */
.cp-stanza p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.95;
  color: var(--default-color);
  text-align: center;
  margin: 0;
}

/* Cp amen */
.cp-amen {
  text-align: center;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Span */
.cp-amen span {
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-color);
}

/* ============================================================
   SCROLL-REVEAL ANIMATION
============================================================ */
[data-hp-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-hp-reveal].hp-vis {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
============================================================ */
@media (max-width: 600px) {
  .hp-hero        { padding: 2.5rem 1rem 2rem; }
  .hp-section     { padding: 2rem .9rem; }
  .hymn-body,
  .cp-body        { padding: 1.1rem 1rem; }
  .cp-header      { padding: 1.25rem 1rem; }
  .cp-header::before,
  .cp-header::after { display: none; }
  .stanza p,
  .cp-stanza p,
  .prayer-card-body blockquote { font-size: .88rem; }
}






/*-- ===========================
     FACULTY MEMBERS SECTION
     Responsive + Animated
=========================== -->*/


  /* ---- Reset & Base ---- */
  .faculty-page * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  .faculty-page {
    padding: 2rem 1rem;
    font-family: var(--paragraph);
  }

  /* ---- Section Blocks ---- */
  .fac-section-block {
    margin-bottom: 3rem;
  }

  /* ---- Section Title ---- */
  .fac-section-title {
    text-align: center;
    margin-bottom: 2rem;
  }

  .fac-section-title h2 {
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 0.12em;
    color: #24348f;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding: 0 1.5rem;
  }

/* Center the entire faculty page content */
.faculty-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Center the section block */
.fac-section-block {
  width: 100%;
  max-width: 1200px; /* Adjust based on your design */
  margin: 0 auto;
  text-align: center;
}

/* Center the section title */
.fac-section-title {
  text-align: center;
  margin-bottom: 40px;
}

/* H2 */
.fac-section-title h2 {
  text-align: center;
  font-weight: 700;
}

/* Center the grid of cards */
.fac-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 280px));
  justify-content: center; /* Centers cards horizontally */
  gap: 30px;
  margin: 0 auto;
}

/* Optional: Center each card's content */
.fac-card {
  margin: 0 auto;
}
  
  .fac-section-title h2::before,
  .fac-section-title h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 0.5px;
    background: #ccc;
  }

  .fac-section-title h2::before { right: 100%; }
  .fac-section-title h2::after  { left:  100%; }

  /* ---- Grids ---- */
  .fac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
  }

  .fac-grid-center {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 220px));
    gap: 1.25rem;
    justify-content: center;
  }

  /* ---- Main Card ---- */
  .fac-card {
    background:var(--accent-color);
    border: 0.5px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.45s ease, transform 0.45s ease,
                box-shadow 0.2s ease, border-color 0.2s ease;
  }

  .fac-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .fac-card:hover {
    border-color: #bbb;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  }

  /* ---- Card Image Wrap ---- */
  .fac-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: #f5f5f5;
  }

  .fac-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
    display: block;
  }

  .fac-card:hover .fac-img-wrap img {
    transform: scale(1.04);
  }

  /* ---- Avatar Placeholder ---- */
  .fac-avatar {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 500;
    color: #999;
    background: #ececec;
  }

  /* ---- Hover Overlay ---- */
  .fac-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 30, 60, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .fac-card:hover .fac-overlay {
    opacity: 1;
  }

  .fac-soc-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 0.5px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    transition: background 0.2s;
  }

  .fac-soc-btn:hover {
    background: rgba(255, 255, 255, 0.28);
  }

  /* ---- Badge at bottom of photo ---- */
  .fac-badge-role {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 6px 10px;
    font-size: 10.5px;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(transparent, rgba(20, 20, 40, 0.85));
    letter-spacing: 0.03em;
    text-align: center;
  }

  /* ---- Card Body ---- */
  .fac-card-body {
    padding: 0.9rem 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .fac-name {
    font-size: 13.5px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 5px;
  }

  .fac-role {
    font-size: 11.5px;
    color: #ffffff;
    line-height: 1.4;
    flex: 1;
  }

  .fac-view-btn {
    margin-top: 10px;
    display: inline-block;
    font-size: 11.5px;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 6px;
    border: 0.5px solid #bbb;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    transition: background 0.18s, color 0.18s, border-color 0.18s;
    background: transparent;
  }

  .fac-view-btn:hover {
    background: #e8f0fb;
    color: #1a5fb4;
    border-color: #a3c0e8;
  }

  /* ---- Admin Card (compact) ---- */
  .fac-admin-card {
    background:var(--accent-color);
    border: 0.5px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, border-color 0.2s;
  }

  .fac-admin-card.visible {
    opacity: 1;
    transform: translateY(0);
  }

  .fac-admin-card:hover {
    border-color: #bbb;
  }

  .fac-admin-card .fac-img-wrap {
    height: 170px;
  }

  .fac-admin-card .fac-card-body {
    padding: 0.75rem;
  }

  .fac-admin-card .fac-name {
    font-size: 12.5px;
  }

  .fac-admin-card .fac-role {
    font-size: 11px;
  }

  /* ---- Divider ---- */
  .fac-divider {
    height: 0.5px;
    background: #e5e5e5;
    margin: 0 0 2rem;
  }

  /* ---- SVG Icons ---- */
  .fac-icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
    display: block;
  }

  /* ---- Responsive ---- */
  @media (max-width: 600px) {
    .fac-grid,
    .fac-grid-center {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.85rem;
    }
    .fac-img-wrap { height: 170px; }
    .fac-admin-card .fac-img-wrap { height: 130px; }
    .fac-name { font-size: 12px; }
    .fac-role { font-size: 10.5px; }
    .faculty-page { padding: 1rem 0.6rem; }
    .fac-section-title h2 { font-size: 11px; }
  }

  @media (max-width: 380px) {
    .fac-grid,
    .fac-grid-center {
      grid-template-columns: 1fr;
    }
  }



/* ===== College Crest Section ===== */

.college-crest-section {
  background: #f5f7fb;
}

/* Crest title */
.crest-title {
  font-weight: 700;
  font-size: 32px;
  color: #1a237e;
}

/* Title line */
.title-line {
  width: 70px;
  height: 3px;
  background: #c62828;
  margin: 10px auto 0;
}

/* Crest card */
.crest-card {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  font-size: 18px;
  line-height: 1.8;
  color: #444;
}

/* Crest card */
.crest-card p {
  margin-bottom: 18px;
}

/* Highlight */
.highlight {
  color: #0d47a1;
  font-weight: 600;
}

/* Crest motto */
.crest-motto {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #c62828;
  margin: 30px 0 15px;
  letter-spacing: 2px;
}

/* Crest quote */
.crest-quote {
  text-align: center;
  font-style: italic;
  color: #555;
  font-size: 18px;
}

/* ===== Responsive ===== */

/* Tablet (max 991px) */
@media (max-width: 991px) {
  .crest-title {
    font-size: 28px;
  }

  .crest-card {
    padding: 30px;
    font-size: 17px;
  }

  .crest-motto {
    font-size: 22px;
    letter-spacing: 1.5px;
  }

  .crest-quote {
    font-size: 16px;
  }
}

/* Mobile (max 767px) */
@media (max-width: 767px) {
  .college-crest-section {
    padding: 36px 0;
  }

  .crest-title {
    font-size: 24px;
  }

  .title-line {
    width: 50px;
    margin: 8px auto 0;
  }

  .crest-card {
    padding: 24px 18px;
    font-size: 15px;
    line-height: 1.75;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
  }

  .crest-card p {
    margin-bottom: 14px;
  }

  .crest-motto {
    font-size: 19px;
    letter-spacing: 1px;
    margin: 22px 0 12px;
  }

  .crest-quote {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
  .crest-title {
    font-size: 21px;
  }

  .crest-card {
    padding: 20px 14px;
    font-size: 14.5px;
  }

  .crest-motto {
    font-size: 17px;
    letter-spacing: 0.5px;
  }

  .crest-quote {
    font-size: 13.5px;
  }
}



/* ---- Cards ---- */
.naac-cert-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.08);
  aspect-ratio: 3/4;
  background: #f4f4f4;
}
/* Img */
.naac-cert-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.35s ease;
}
/* Hover state — naac cert card */
.naac-cert-card:hover img { transform: scale(1.05); }
/* Naac zoom overlay */
.naac-zoom-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0);
  transition: background 0.25s;
}
/* Hover state — naac cert card */
.naac-cert-card:hover .naac-zoom-overlay { background: rgba(0,0,0,0.25); }
/* Transform */
.naac-zoom-overlay svg { opacity: 0; transform: scale(0.8); transition: opacity 0.25s, transform 0.25s; }
/* Hover state — naac cert card */
.naac-cert-card:hover .naac-zoom-overlay svg { opacity: 1; transform: scale(1); }
/* Naac cert badge */
.naac-cert-badge {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.55); color: #fff;
  font-size: 11px; padding: 3px 12px;
  border-radius: 99px; white-space: nowrap; pointer-events: none;
}

/* ---- Lightbox ---- */
.naac-lightbox {
  position: fixed; inset: 0; z-index: 99999;
  display: none;
  align-items: center; justify-content: center;
}
/* Flex */
.naac-lightbox.active { display: flex; }

/* Naac lb backdrop */
.naac-lb-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1;
}
/* Naac lb header */
.naac-lb-header {
  position: absolute; top: 0; left: 0; width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 20px; z-index: 3;
}
/* Px */
.naac-lb-counter { color: rgba(255,255,255,0.75); font-size: 14px; }
/* Naac lb close */
.naac-lb-close {
  background: none; border: none; cursor: pointer;
  padding: 6px; border-radius: 6px; line-height: 1;
  transition: background 0.2s; z-index: 3;
}
/* Hover state — naac lb close */
.naac-lb-close:hover { background: rgba(255,255,255,0.15); }

/* ---- Swiper inside lightbox ---- */
.naac-swiper {
  position: relative; z-index: 2;
  width: 90vw; max-width: 800px;
}
/* Swiper slide */
.naac-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 10px 60px;
  box-sizing: border-box;
}
/* Img */
.naac-swiper .swiper-slide img {
  max-height: 80vh;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 12px 60px rgba(0,0,0,0.7);
  display: block;
}
/* Swiper button next */
.naac-swiper .swiper-button-next,
/* Swiper button prev */
.naac-swiper .swiper-button-prev {
  color: #fff;
  --swiper-navigation-size: 24px;
}
/* Opacity */
.naac-swiper .swiper-pagination-bullet { background: #fff; opacity: 0.4; }
/* Opacity */
.naac-swiper .swiper-pagination-bullet-active { opacity: 1; }

@media (max-width: 576px) {
  .naac-cert-card { aspect-ratio: 4/5; }
  .naac-swiper { width: 100vw; }
}









/*--------------------------------------------------------------
# Meston Vision & Mission Section
--------------------------------------------------------------*/

/* H2 */
.meston-vision-mission .meston-content h2{
  font-size:2.5rem;
  margin-bottom:20px;
  font-weight:700;
}

/* Meston content */
.meston-vision-mission .meston-content p{
  margin-bottom:30px;
}

/* Timeline */

.meston-vision-mission .meston-timeline{
  position:relative;
  margin-top:40px;
  padding-left:30px;
}

/* Pseudo-element ::before */
.meston-vision-mission .meston-timeline:before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  height:100%;
  width:3px;
  background-color:var(--accent-color);
}

/* Timeline item */
.meston-vision-mission .timeline-item{
  position:relative;
  margin-bottom:30px;
}

/* Timeline dot */
.meston-vision-mission .timeline-dot{
  position:absolute;
  left:-35px;
  top:5px;
  width:16px;
  height:16px;
  border-radius:50%;
  background-color:var(--accent-color);
}

.meston-vision-mission .timeline-content h4{
  font-weight:700;
  font-size:1.25rem;
  margin-bottom:10px;
}

/* Image */

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

/* Mission Vision Cards */

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

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

/* Mission */
.meston-mission-vision .mission,
/* Vision */
.meston-mission-vision .vision{
  background:var(--surface-color);
  padding:25px;
  border-radius:10px;
  box-shadow:0 5px 25px rgba(0,0,0,0.05);
}

/* H3 */
.meston-mission-vision h3{
  font-size:1.3rem;
  margin-bottom:15px;
  font-weight:600;
  position:relative;
  padding-left:15px;
}

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

/* Meston mission vision */
.meston-mission-vision p{
  margin-bottom:0;
  font-size:0.95rem;
}




/* ===============================
MILESTONE SECTION
================================ */
/* Meston milestone */
.meston-milestone{
background:#f5f7fb;
padding:60px 0;
}

/* Title */
.milestone-title{
font-size:34px;
font-weight:700;
color:var(--accent-color);
text-align:center;
}

/* Intro */
.milestone-intro{
max-width:750px;
margin:10px auto 0;
color:#555;
text-align:center;
}

/* Subtitle */
.milestone-subtitle{
margin-top:30px;
font-weight:600;
color:var(--accent-color);
text-align:center;
}

/* Timeline */
/* .milestone-timeline{
position:relative;
margin-top:50px;
} */

/* Vertical line */
/* .milestone-timeline:before{
content:"";
position:absolute;
left:50px;
top:0;
height:100%;
width:3px;
background:var(--accent-color);
} */

/* Item */
.milestone-item{
display:flex;
align-items:flex-start;
margin-bottom:40px;
position:relative;
}

/* Dot */
.milestone-item:before{
content:"";
position:absolute;
left:40px;
top:8px;
width:16px;
height:16px;
border-radius:50%;
background:var(--accent-color);
border:3px solid #fff;
box-shadow:0 0 0 2px var(--accent-color);
}

/* Milestone year */
.milestone-year{
  min-width:80px;
  font-weight:700;
  color:#0b0b71;
  font-size:18px;
  padding-top:2px;

  margin-left:60px; /* adjust this value (20–40px based on need) */
}

/* Content Card */
.milestone-content{
background:#fff;
padding:18px 20px;
border-radius:8px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
flex:1;
transition:all 0.3s ease;
}

/* Hover effect */
.milestone-item:hover .milestone-content{
transform:translateY(-4px);
box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

/* Text */
.milestone-content p{
margin:0 0 6px;
font-size:15px;
color:#444;
}

/* ===============================
RESPONSIVE
================================ */
@media(max-width:768px){

/* Pseudo-element ::before */
.milestone-timeline:before{
left:30px;
}

/* Pseudo-element ::before */
.milestone-item:before{
left:22px;
}

/* Milestone year */
.milestone-year{
min-width:60px;
font-size:16px;
margin-right:10px;
}

}































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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Hover state — member photo */
.leadership .leadership-grid .leadership-team-grid .team-member .member-photo:hover .member-overlay {
  opacity: 1;
}

/* Hover state — member photo */
.leadership .leadership-grid .leadership-team-grid .team-member .member-photo:hover img {
  transform: scale(1.05);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/*-- Admission Running Banner --*/

  .banner-wrap {
    width: 100%;
    background: #1a237e;
    overflow: hidden;
    border-radius: 6px;
  }

  .banner-top {
    background: #0d47a1;
    text-align: center;
    padding: 10px 16px;
    font-size: clamp(13px, 2.5vw, 17px);
    font-weight: 600;
    color: #e3f2fd;
    letter-spacing: 0.04em;
    border-bottom: 2px solid #FAF3E0;
  }

  .banner-top span { color: #FAF3E0; }

  .ticker-outer {
    width: 100%;
    overflow: hidden;
    background: #0a476e;
    padding: 10px 0;
  }

  .ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 38s linear infinite;
  }

  .ticker-track:hover { animation-play-state: paused; }

  .ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 32px;
    font-size: clamp(12px, 2vw, 15px);
    color: #e8eaf6;
    white-space: nowrap;
  }

  .ticker-item .dept { color:#FAF3E0; font-weight: 600; }
  .ticker-item .num  { color: #80cbc4; font-weight: 600; }

  .ticker-sep {
    color: #5c6bc0;
    font-size: 18px;
    padding: 0 8px;
  }

  @keyframes ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  @media (max-width: 480px) {
    .banner-top  { padding: 8px 10px; }
    .ticker-item { padding: 0 18px; }
  }


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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Contact actions */
.faculty--staff .featured-faculty .featured-content .contact-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

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

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

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

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

/* Faculty profile */
.faculty--staff .faculty-profile {
  background-color: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

/* Hover state — faculty profile */
.faculty--staff .faculty-profile:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color), transparent 88%);
}

/* Profile image */
.faculty--staff .faculty-profile .profile-image {
  overflow: hidden;
}

/* Img */
.faculty--staff .faculty-profile .profile-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: all 0.3s ease;
}

/* Profile content */
.faculty--staff .faculty-profile .profile-content {
  padding: 2rem;
}

/* H3 */
.faculty--staff .faculty-profile .profile-content h3 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

/* Position */
.faculty--staff .faculty-profile .profile-content .position {
  color: var(--accent-color);
  font-size: 1rem;
  margin-bottom: 0.8rem;
  font-weight: 400;
}

/* Department info */
.faculty--staff .faculty-profile .profile-content .department-info {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

/* Research focus */
.faculty--staff .faculty-profile .profile-content .research-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Span */
.faculty--staff .faculty-profile .profile-content .research-focus span {
  padding: 0.3rem 0.8rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 300;
}

/* Profile actions */
.faculty--staff .faculty-profile .profile-actions {
  padding: 0 2rem 2rem;
}

/* View profile */
.faculty--staff .faculty-profile .profile-actions .view-profile {
  color: var(--accent-color);
  font-size: 0.95rem;
  font-weight: 400;
  text-decoration: none;
  position: relative;
}

/* Pseudo-element ::after */
.faculty--staff .faculty-profile .profile-actions .view-profile::after {
  content: "→";
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

/* Hover state — view profile */
.faculty--staff .faculty-profile .profile-actions .view-profile:hover::after {
  margin-left: 1rem;
}

/* Load more btn */
.faculty--staff .load-more-section .load-more-btn {
  padding: 1rem 3rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  color: var(--accent-color);
  border-radius: 30px;
  font-weight: 400;
  transition: all 0.3s ease;
}

/* Hover state — load more btn */
.faculty--staff .load-more-section .load-more-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .faculty--staff .featured-faculty {
    padding: 2rem;
  }

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

  .faculty--staff .featured-faculty .featured-content h2 {
    font-size: 2rem;
  }

  .faculty--staff .featured-faculty .featured-content .contact-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

/* Faculty/Principal Card Styling */
.faculty-card {
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover state — faculty card */
.faculty-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

/* Image Styling */
.faculty-img {
  width: 100%;
  height: 180px;          /* Reduced image height */
  object-fit: cover;
  object-position: top;
}

/* Text Styling */
.faculty-name {
  font-size: 0.95rem;
  font-weight: 600;
}

/* Small */
.faculty-content small {
  font-size: 0.8rem;
}

/* Responsive Tweaks */
@media (max-width: 576px) {
  .faculty-img {
    height: 160px;
  }
}

@media (max-width: 768px) {
  .faculty--staff .filter-tabs {
    flex-wrap: wrap;
    gap: 1rem !important;
    justify-content: center;
  }

  .faculty--staff .featured-faculty {
    padding: 1.5rem;
  }

  .faculty--staff .featured-faculty .featured-content h2 {
    font-size: 1.8rem;
  }

  .faculty--staff .featured-faculty .featured-content .expertise-areas {
    gap: 0.5rem;
  }

  .faculty--staff .featured-faculty .featured-content .expertise-areas span {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }
}

/*======================================================
# Format Principles
======================================================*/
/* ── Card base ── */
.principal-card {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background:var(--accent-color);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

/* Hover state — principal card */
.principal-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
  transform: translateY(-3px);
}

/* ── Image wrapper — fluid, no fixed height ── */
.principal-img-wrap {
  width: 100%;
  aspect-ratio: 7 / 8;       /* portrait ratio — adjustable */
  overflow: hidden;
  background: #f0f0f0;
}

/* Principal img */
.principal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  /* Prevent layout shift — browser knows dimensions from width/height attrs */
}

/* ── Card body ── */
.principal-body {
  padding: 0.85rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Principal name */
.principal-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

/* Principal tenure */
.principal-tenure {
  font-size: 0.78rem;
  color: #ffffff;
  margin: 0;
}

/* ── Founder badge ── */
.principal-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #e8f4fd;
  color: #1565c0;
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: 4px;
  width: fit-content;
}

/* ── Founder card — slightly wider max ── */
.founder-card {
  max-width: 220px;
}

/* Principals founder row */
.principals-founder-row {
  margin-bottom: 1.5rem;
}

/* ── Responsive tweaks ── */
@media (max-width: 480px) {
  .principal-body { padding: 0.6rem 0.75rem; }
  .principal-name { font-size: 0.78rem; }
  .principal-tenure { font-size: 0.72rem; }
}

/* ── Focus ring for keyboard nav ── */
.principal-card:focus-within {
  outline: 2px solid #185fa5;
  outline-offset: 2px;
}









/* ── Achievers Section ── */
.achievers-section {
  padding: 50px 0 60px;
  background: #ffffff;
}

/* Section heading */
.section-heading {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--accent-color);
}

/* Section rule */
.section-rule {
  width: 50px;
  height: 2px;
  background: #1d2283;
  border-radius: 2px;
  margin-top: 10px;
}

/* ── Swiper shell ── */
.swiper-shell {
  padding-bottom: 44px;
}

/* Swiper */
.swiper {
  overflow: hidden !important;
}

/* ── Photo Card ── */
.photo-card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
  padding: 8px;
}

/* Img */
.photo-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: contain;     /* never crops top/bottom text */
  display: block;
  border-radius: 6px;
  background: #fff;
}

/* ── Pagination ── */
.swiper-pagination {
  bottom: 4px !important;
}

/* Swiper pagination bullet */
.swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: rgba(17, 19, 24, 0.2);
  opacity: 1;
}

/* Swiper pagination bullet active */
.swiper-pagination-bullet-active {
  background: #1d2283;
  width: 20px;
  border-radius: 4px;
}

/* ── Nav buttons ── */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 22px));
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid #1d2283 !;
  background: #fff;
  color: #1d2283 !important;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Hover state — nav btn */
.nav-btn:hover {
  background: #1d2283;
  color: #fff;
}

/* Px */
.nav-prev { left: -6px; }
/* Px */
.nav-next { right: -6px; }

/* ── Responsive ── */

/* Large desktops */
@media (min-width: 1200px) {
  .photo-card img { aspect-ratio: 3 / 4; }
}

/* Desktops */
@media (max-width: 1199px) {
  .photo-card img { aspect-ratio: 3 / 4; }
}

/* Tablets landscape */
@media (max-width: 991px) {
  .photo-card img { aspect-ratio: 3 / 4; }
  .achievers-section { padding: 40px 0 50px; }
}

/* Tablets portrait */
@media (max-width: 767px) {
  .photo-card img { aspect-ratio: 3 / 4; }
  .achievers-section { padding: 36px 0 46px; }
}

/* Large phones */
@media (max-width: 575px) {
  .nav-btn { display: none; }
  .photo-card { padding: 6px; }
  .photo-card img { aspect-ratio: 3 / 4; }
  .achievers-section { padding: 30px 0 40px; }
}

/* Small phones */
@media (max-width: 399px) {
  .photo-card img { aspect-ratio: 3 / 4; }
}

/*--------------------------------------------------------------
# News Hero Section
--------------------------------------------------------------*/
/* Featured post */
.news-hero .featured-post {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
}

/* Img */
.news-hero .featured-post img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Post overlay */
.news-hero .featured-post .post-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  padding: 2rem;
  color: var(--contrast-color);
}

/* Post content */
.news-hero .featured-post .post-content {
  max-width: 800px;
}

/* Post title */
.news-hero .featured-post .post-title {
  font-size: 2rem;
  margin: 1rem 0;
}

/* Post title */
.news-hero .featured-post .post-title a {
  color: var(--contrast-color);
}

/* Hover state — post title a */
.news-hero .featured-post .post-title a:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

/* Post excerpt */
.news-hero .featured-post .post-excerpt {
  font-size: 1rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

/* Secondary post */
.news-hero .secondary-post {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}

/* Img */
.news-hero .secondary-post .post-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* Post content */
.news-hero .secondary-post .post-content {
  padding: 1.5rem;
}

/* Post title */
.news-hero .secondary-post .post-title {
  font-size: 1.25rem;
  margin: 0.5rem 0;
  line-height: 1.4;
}

/* Post title */
.news-hero .secondary-post .post-title a {
  color: var(--heading-color);
}

/* Hover state — post title a */
.news-hero .secondary-post .post-title a:hover {
  color: var(--accent-color);
}

/* News tabs */
.news-hero .news-tabs {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
}

/* Nav tabs */
.news-hero .news-tabs .nav-tabs {
  border: none;
  padding: 1rem 1rem 0;
  gap: 0.5rem;
  background-color: var(--surface-color);
}

/* Nav link */
.news-hero .news-tabs .nav-tabs .nav-link {
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--default-color);
  font-weight: 500;
  border-radius: 20px;
  transition: 0.3s;
}

/* Hover state — nav link */
.news-hero .news-tabs .nav-tabs .nav-link:hover {
  color: var(--accent-color);
}

/* Active */
.news-hero .news-tabs .nav-tabs .nav-link.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/* Tab content */
.news-hero .news-tabs .tab-content {
  padding: 1.5rem;
}

/* Tab post */
.news-hero .tab-post {
  padding: 1rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

/* First child */
.news-hero .tab-post:first-child {
  padding-top: 0;
}

/* Last child */
.news-hero .tab-post:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

/* Img */
.news-hero .tab-post img {
  border-radius: 8px;
  width: 100%;
  height: 100px;
  object-fit: cover;
}

/* Post content */
.news-hero .tab-post .post-content {
  padding-left: 1rem;
}

/* Post title */
.news-hero .tab-post .post-title {
  font-size: 0.9375rem;
  margin: 0.5rem 0;
  line-height: 1.4;
}

/* Post title */
.news-hero .tab-post .post-title a {
  color: var(--heading-color);
}

/* Hover state — post title a */
.news-hero .tab-post .post-title a:hover {
  color: var(--accent-color);
}

/* Category */
.news-hero .category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-right: 0.5rem;
}

/* Date */
.news-hero .date {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/* Post author */
.news-hero .post-author {
  font-size: 0.8125rem;
  margin-top: 0.5rem;
}

/* Span */
.news-hero .post-author span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/* Post author */
.news-hero .post-author a {
  color: var(--accent-color);
  font-weight: 500;
}

/* Hover state — post author a */
.news-hero .post-author a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

@media (max-width: 991.98px) {
  .news-hero .featured-post img {
    height: 400px;
  }

  .news-hero .featured-post .post-title {
    font-size: 1.75rem;
  }

  .news-hero .secondary-post .post-image img {
    height: 220px;
  }

  .news-hero .news-tabs {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .news-hero .featured-post img {
    height: 500px;
  }

  .news-hero .featured-post .post-title {
    font-size: 1.5rem;
  }

  .news-hero .featured-post .post-overlay {
    padding: 1.5rem;
  }

  .news-hero .tab-post .post-title {
    font-size: 0.875rem;
  }

  .news-hero .tab-post img {
    height: 80px;
  }
}


/*--------------------------------------------------------------
# Event Section
--------------------------------------------------------------*/
/* Event meta */
.event .event-meta {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 15px;
  border-radius: 8px;
}

/* Meta item */
.event .event-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Meta item */
.event .event-meta .meta-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

/* Span */
.event .event-meta .meta-item span {
  font-weight: 500;
}

/* H2 */
.event .event-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .event .event-content h2 {
    font-size: 1.8rem;
  }
}

/* H3 */
.event .event-content h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

/* Pseudo-element ::after */
.event .event-content h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 3px;
  width: 50px;
  background-color: var(--accent-color);
}

/* Event content */
.event .event-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Event highlights */
.event .event-content .event-highlights {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

/* Li */
.event .event-content .event-highlights li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* Li */
.event .event-content .event-highlights li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 3px;
}

/* Span */
.event .event-content .event-highlights li span {
  flex: 1;
}

/* Schedule table */
.event .event-content .schedule-table {
  margin-top: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

/* Schedule row */
.event .event-content .schedule-table .schedule-row {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Last child */
.event .event-content .schedule-table .schedule-row:last-child {
  border-bottom: none;
}

/* Odd */
.event .event-content .schedule-table .schedule-row:nth-child(odd) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

@media (max-width: 576px) {
  .event .event-content .schedule-table .schedule-row {
    flex-direction: column;
  }
}

/* Schedule time */
.event .event-content .schedule-table .schedule-time {
  width: 180px;
  padding: 15px;
  font-weight: 600;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
}

@media (max-width: 576px) {
  .event .event-content .schedule-table .schedule-time {
    width: 100%;
  }
}

/* Schedule activity */
.event .event-content .schedule-table .schedule-activity {
  flex: 1;
  padding: 15px 20px;
}

.event .event-content .schedule-table .schedule-activity h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

/* Schedule activity */
.event .event-content .schedule-table .schedule-activity p {
  margin: 0;
  font-size: 0.95rem;
}

/* Img */
.event .event-content .event-gallery img {
  transition: all 0.3s ease;
  height: 200px;
  object-fit: cover;
  width: 100%;
}

/* Hover state — event gallery img */
.event .event-content .event-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Sidebar widget */
.event .event-sidebar .sidebar-widget {
  margin-bottom: 30px;
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 25px;
}

/* H3 */
.event .event-sidebar .sidebar-widget h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}

/* Pseudo-element ::after */
.event .event-sidebar .sidebar-widget h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 3px;
  width: 60px;
  background-color: var(--accent-color);
}

/* Btn register */
.event .event-sidebar .registration-form .btn-register {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 0;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* Hover state — btn register */
.event .event-sidebar .registration-form .btn-register:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

/* Active */
.event .event-sidebar .registration-form .btn-register:active {
  transform: translateY(0);
}

/* Organizer details */
.event .event-sidebar .organizer-info .organizer-details {
  display: flex;
  flex-direction: column;
}

/* Organizer image */
.event .event-sidebar .organizer-info .organizer-details .organizer-image {
  margin-bottom: 15px;
}

/* Img */
.event .event-sidebar .organizer-info .organizer-details .organizer-image img {
  border-radius: 8px;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.event .event-sidebar .organizer-info .organizer-details .organizer-content h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

/* Organizer position */
.event .event-sidebar .organizer-info .organizer-details .organizer-content .organizer-position {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

/* Organizer contact */
.event .event-sidebar .organizer-info .organizer-details .organizer-content .organizer-contact {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 15px;
  border-radius: 6px;
  margin-top: 15px;
}

/* Organizer contact */
.event .event-sidebar .organizer-info .organizer-details .organizer-content .organizer-contact p {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Last child */
.event .event-sidebar .organizer-info .organizer-details .organizer-content .organizer-contact p:last-child {
  margin-bottom: 0;
}

/* Organizer contact */
.event .event-sidebar .organizer-info .organizer-details .organizer-content .organizer-contact p i {
  color: var(--accent-color);
}

/* Related event item */
.event .event-sidebar .related-events .related-event-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Last child */
.event .event-sidebar .related-events .related-event-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Related event date */
.event .event-sidebar .related-events .related-event-item .related-event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 70px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px;
}

/* Day */
.event .event-sidebar .related-events .related-event-item .related-event-date .day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

/* Month */
.event .event-sidebar .related-events .related-event-item .related-event-date .month {
  font-size: 0.9rem;
  text-transform: uppercase;
}

/* Related event info */
.event .event-sidebar .related-events .related-event-item .related-event-info {
  flex: 1;
}

.event .event-sidebar .related-events .related-event-item .related-event-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

/* Related event info */
.event .event-sidebar .related-events .related-event-item .related-event-info p {
  margin: 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 5px;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
/* Info card */
.contact .info-card {
  background-color: var(--surface-color);
  padding: 30px;
  text-align: center;
  height: 100%;
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease-in-out;
}

/* Hover state — info card */
.contact .info-card:hover {
  transform: translateY(-5px);
}

/* Icon box */
.contact .info-card .icon-box {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

/* Icon box */
.contact .info-card .icon-box i {
  font-size: 24px;
  color: var(--accent-color);
}

/* H3 */
.contact .info-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Info card */
.contact .info-card p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.6;
}

/* Input group text */
.contact .form-wrapper .input-group .input-group-text {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px 0 0 8px;
  padding: 12px 15px;
}

/* Form control */
.contact .form-wrapper .input-group .form-control {
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 0 8px 8px 0;
  box-shadow: none;
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 12px 15px;
}

/* Focus state */
.contact .form-wrapper .input-group .form-control:focus {
  border-color: var(--accent-color);
}

/* Placeholder */
.contact .form-wrapper .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/* Form control */
.contact .form-wrapper select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 40px;
}

/* Form control */
.contact .form-wrapper textarea.form-control {
  min-height: 160px;
}

/* Button */
.contact .form-wrapper button {
  background-color: var(--accent-color);
  border: 0;
  padding: 12px 40px;
  color: var(--contrast-color);
  border-radius: 8px;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
}

/* Hover state — form wrapper button */
.contact .form-wrapper button:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}




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


/* ===============================
# Graduates Contact Button (Floating)
=============================== */
/* Graduates contact */
.graduates-contact {
  position: fixed;
  bottom: 100px;
  right: 15px;
  z-index: 1000;
}

/* Graduates link */
.graduates-contact .graduates-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  height: 51px;
  background-color: #0953a7;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Hover Effect */
.graduates-contact .graduates-link:hover {
  transform: scale(1.1);
  background-color: #022955;
}

/* Tooltip Styling (Top Position – shifted slightly left) */
.graduates-tooltip {
  position: absolute;
  bottom: 65px; /* Tooltip appears above the icon */
  transform: translateX(-50%) translateY(10px);
  background-color: #022955;
  color: #fff;
  font-size: 14px;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Show tooltip on hover */
.graduates-link:hover .graduates-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/* Mobile adjustments */
@media (max-width: 576px) {
  .graduates-contact {
    bottom: 150px;
    right: 15px;
  }
  .graduates-contact .graduates-link {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  .graduates-tooltip {
    font-size: 12px;
    bottom: 60px;
  }
}


/*--------------------------------------------------------------
# Call To Action Section
-------------------------*/

/* Contact banner */
.call-to-action .contact-banner {
  background: linear-gradient(135deg, var(--accent-color) 0%, color-mix(in srgb, var(--accent-color), black 15%) 100%);
  border-radius: 16px;
  padding: 3rem;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .call-to-action .contact-banner {
    padding: 2rem;
  }
}

/* Banner content */
.call-to-action .contact-banner .banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 992px) {
  .call-to-action .contact-banner .banner-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
}

/* Contact info */
.call-to-action .contact-banner .contact-info {
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .call-to-action .contact-banner .contact-info {
    flex-direction: column;
    text-align: center;
  }
}

/* Contact icon */
.call-to-action .contact-banner .contact-icon {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
}

@media (max-width: 768px) {
  .call-to-action .contact-banner .contact-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

/* Contact icon */
.call-to-action .contact-banner .contact-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

/* H5 */
.call-to-action .contact-banner .contact-text h5 {
  color: var(--contrast-color);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

/* Contact text */
.call-to-action .contact-banner .contact-text p {
  color: color-mix(in srgb, var(--contrast-color), transparent 25%);
  margin: 0;
  line-height: 1.6;
}

/* Contact actions */
.call-to-action .contact-banner .contact-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

@media (max-width: 576px) {
  .call-to-action .contact-banner .contact-actions {
    flex-direction: column;
    width: 100%;
  }
}

/* Call btn */
.call-to-action .contact-banner .call-btn {
  background: var(--contrast-color);
  color: var(--heading-color);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .call-to-action .contact-banner .call-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Call btn */
.call-to-action .contact-banner .call-btn i {
  margin-right: 8px;
  font-size: 1.1rem;
}

/* Hover state — call btn */
.call-to-action .contact-banner .call-btn:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 75%);
}

/* Contact link */
.call-to-action .contact-banner .contact-link {
  color: var(--contrast-color);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid color-mix(in srgb, var(--contrast-color), transparent 60%);
  transition: all 0.3s ease;
}

/* Hover state — contact link */
.call-to-action .contact-banner .contact-link:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  border-bottom-color: var(--contrast-color);
}




/* ===============================
# Admission Running Banner
=============================== */
/* Admission banner */
.admission-banner {
  position: relative;
  overflow: hidden;
  background-color: #022955; /* Dark Blue Background */
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 3px solid #0953a7;
  border-bottom: 3px solid #0953a7;
}

/* Clickable link */
.admission-banner .admission-link {
  color: #fff;
  text-decoration: none;
  position: absolute;
  white-space: nowrap;
  /* animation: run-text 12s linear infinite; */
  font-family: var(--paragraph);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 1px;
}

/* Hover effect */
.admission-banner .admission-link:hover {
  color: #ffd700; /* Gold hover color */
  text-decoration: underline;
}

/* Running Animation */
@keyframes run-text {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Mobile Adjustments */
@media (max-width: 576px) {
  .admission-banner {
    height: 45px;
  }
  .admission-banner .admission-link {
    font-size: 18px;
  }
}





/***Examination css*/


 .exam-card {
      border: none;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(55, 138, 221, 0.15);
      animation: slideUp 0.6s ease forwards;
      opacity: 0;
      transform: translateY(40px);
    }

    @keyframes slideUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .card-header-custom {
      background:var(--accent-color);
      padding: 36px 28px;
      text-align: center;
    }

    .icon-circle {
      width: 64px;
      height: 64px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      font-size: 38px !important;
      color: #fff;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
      50%       { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
    }

    .card-header-custom h5 {
      color: #fff;
      font-size: 20px;
      font-weight: 600;
      margin: 0 0 6px;
    }

    .card-header-custom p {
      color: rgba(255,255,255,0.85);
      font-size: 18px;
      margin: 0;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
      color: #444;
      padding: 8px 0;
      border-bottom: 0.5px solid #f0f0f0;
      animation: fadeIn 0.5s ease forwards;
      opacity: 0;
    }

    .feature-item:last-child {
      border-bottom: none;
    }

    .feature-item:nth-child(1) { animation-delay: 0.3s; }
    .feature-item:nth-child(2) { animation-delay: 0.5s; }
    .feature-item:nth-child(3) { animation-delay: 0.7s; }

    @keyframes fadeIn {
      to { opacity: 1; }
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #378add;
      flex-shrink: 0;
    }

    .btn-apply {
      background: var(--accent-color);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 12px;
      font-size: 15px;
      font-weight: 500;
      width: 100%;
      transition: transform 0.2s, box-shadow 0.2s;
      animation: slideUp 0.6s ease 0.8s forwards;
      opacity: 0;
      transform: translateY(20px);
    }

    .btn-apply:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(55, 138, 221, 0.4);
      color: #172176;
    }

    .btn-apply:active {
      transform: scale(0.98);
    }

    .badge-tag {
      background: #e6f1fb;
      color: #185fa5;
      font-size: 11px;
      padding: 4px 10px;
      border-radius: 20px;
      font-weight: 500;
    }





  /*-- ==============================
       B.ED PROGRAMME – SCOPED STYLES
  ============================== */
 
/* ==============================
   B.ED PROGRAM – STYLES
   Optimized for Readability
============================== */

/* Wrapper */
.bed-section {
  padding: 40px 0;
}

/* ── HERO ── */
.bed-hero {
  background: var(--accent-color) !important;
  color: #fff;
  padding: 70px 20px 50px;
  text-align: center;
  animation: bed-fadeDown 0.7s ease;
  border-radius: 12px;
  margin-bottom: 40px;
}

/* Bed badge tag */
.bed-badge-tag {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.8rem;          /* ~13px */
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

/* Hero Heading */
.bed-hero h1 {
  font-size: 2.2rem;          /* ~35px */
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffebee;
  line-height: 1.3;
}

/* Hero Description */
.bed-hero p {
  font-size: 1.05rem;         /* ~17px */
  opacity: 0.95;
  font-weight: 500;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Animation */
@keyframes bed-fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── SECTION TITLE ── */
.bed-section-title {
  font-size: 1.6rem;          /* ~26px */
  font-weight: 700;
  color: var(--heading-color);
  border-left: 4px solid var(--accent-color);
  padding-left: 14px;
  margin-bottom: 24px;
  margin-top: 40px;
  line-height: 1.4;
}

/* ── INFO CARD ── */
.bed-info-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(55, 138, 221, 0.10);
  padding: 28px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover state — bed info card */
.bed-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(55, 138, 221, 0.18);
}

/* Icon Wrapper */
.bed-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

/* Card Title */
.bed-info-card h5 {
  font-size: 1.15rem;         /* ~18px */
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--accent-color);
}

/* Card Description */
.bed-info-card p {
  font-size: 1rem;            /* 16px */
  color: #555;
  line-height: 1.8;
  margin: 0;
}

/* ── SUBJECT PILLS ── */
.bed-subject-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #e6f1fb;
  color: var(--accent-color);
  font-size: 0.9rem;          /* ~14.5px */
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 30px;
  margin: 6px;
  transition: all 0.3s ease;
}

/* Hover state — bed subject pill */
.bed-subject-pill:hover {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-2px);
}

/* ── DOCUMENT CARDS ── */
.bed-doc-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(55, 138, 221, 0.10);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover state — bed doc card */
.bed-doc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(55, 138, 221, 0.18);
}

/* Bed doc icon */
.bed-doc-icon {
  width: 50px;
  height: 50px;
  background: #e6f1fb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 16px;
}

/* Document Title */
.bed-doc-card h6 {
  font-size: 1.05rem;         /* ~17px */
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 8px;
}

/* Document Description */
.bed-doc-card p {
  font-size: 0.95rem;         /* ~15px */
  color: #777;
  margin-bottom: 18px;
  line-height: 1.7;
}

/* ── BUTTON ── */
.bed-btn-view {
  background: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 20px;
  font-size: 0.9rem;          /* ~14.5px */
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

/* Bed btn view */
.bed-btn-view i {
  font-size: 14px;
}

/* Hover state — bed btn view */
.bed-btn-view:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(55, 138, 221, 0.4);
  color: #fff;
}

/* Divider */
.bed-divider {
  border-top: 1px solid #dbe6f5;
  margin: 50px 0;
}

/* ==============================
   RESPONSIVE ADJUSTMENTS
============================== */

/* Tablets */
@media (max-width: 992px) {
  .bed-hero h1 {
    font-size: 1.9rem;
  }

  .bed-hero p {
    font-size: 1rem;
  }

  .bed-section-title {
    font-size: 1.4rem;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .bed-section {
    padding: 30px 0;
  }

  .bed-hero {
    padding: 50px 15px 40px;
  }

  .bed-hero h1 {
    font-size: 1.6rem;
  }

  .bed-hero p {
    font-size: 0.95rem;
  }

  .bed-section-title {
    font-size: 1.25rem;
  }

  .bed-info-card h5 {
    font-size: 1.05rem;
  }

  .bed-info-card p,
  .bed-doc-card p {
    font-size: 0.9rem;
  }

  .bed-btn-view {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}

/* Small Mobile Devices */
@media (max-width: 576px) {
  .bed-hero h1 {
    font-size: 1.4rem;
  }

  .bed-badge-tag {
    font-size: 0.75rem;
  }

  .bed-section-title {
    font-size: 1.2rem;
  }
}

/* ==============================
   M.ED PROGRAMME – SCOPED STYLES
   Optimized for Readability
============================== */

/* Section Title */
.med-section-title {
  font-size: 1.6rem;              /* ~26px for clear hierarchy */
  font-weight: 700;
  color: var(--accent-color);
  border-left: 4px solid var(--accent-color);
  padding-left: 14px;
  margin: 40px 0 24px;
  line-height: 1.4;
}

/* Divider */
.med-divider {
  border-top: 1px solid #dbe6f5;
  margin: 50px 0;
}

/* ==============================
   INFO CARDS
============================== */
/* Med info card */
.med-info-card {
  background: #fff;
  border: none;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(55, 138, 221, 0.10);
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover state — med info card */
.med-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(55, 138, 221, 0.18);
}

/* Icon Wrapper */
.med-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  background: #e6f1fb;
  color: var(--accent-color);
}

/* Info Card Title */
.med-info-card h5 {
  font-size: 1.125rem;            /* ~18px */
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--accent-color);
  line-height: 1.4;
}

/* Info Card Description */
.med-info-card p {
  font-size: 1rem;                /* 16px for comfortable reading */
  color: #555;
  line-height: 1.8;
  margin: 0;
}

/* ==============================
   DOCUMENT CARDS
============================== */
/* Med doc card */
.med-doc-card {
  background: #fff;
  border: none;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(55, 138, 221, 0.10);
  padding: 26px 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover state — med doc card */
.med-doc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(55, 138, 221, 0.18);
}

/* Document Icon */
.med-doc-icon {
  width: 52px;
  height: 52px;
  background: #e6f1fb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-color);
  margin: 0 auto 16px;
}

/* Document Title */
.med-doc-card h6 {
  font-size: 1.05rem;             /* ~17px */
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 10px;
  line-height: 1.4;
}

/* Document Description */
.med-doc-card p {
  font-size: 0.95rem;             /* ~15px */
  color: #6c757d;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* ==============================
   BUTTON
============================== */
/* Med btn view */
.med-btn-view {
  background: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 9px 22px;
  font-size: 0.9rem;              /* ~14.5px */
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

/* Med btn view */
.med-btn-view i {
  font-size: 14px;
}

/* Hover state — med btn view */
.med-btn-view:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(55, 138, 221, 0.35);
  color: #fff;
}

/* ==============================
   RESPONSIVE ADJUSTMENTS
============================== */

/* Tablets */
@media (max-width: 992px) {
  .med-section-title {
    font-size: 1.4rem;
  }

  .med-info-card h5 {
    font-size: 1.05rem;
  }

  .med-doc-card h6 {
    font-size: 1rem;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  .med-section-title {
    font-size: 1.3rem;
    margin-top: 30px;
  }

  .med-info-card,
  .med-doc-card {
    padding: 22px 18px;
  }

  .med-info-card p,
  .med-doc-card p {
    font-size: 0.9rem;
  }

  .med-btn-view {
    font-size: 0.85rem;
    padding: 8px 18px;
  }
}

/* Small Mobile Devices */
@media (max-width: 576px) {
  .med-section-title {
    font-size: 1.2rem;
  }

  .med-icon-wrap,
  .med-doc-icon {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
}

/* ==============================
   ADMISSION RESOURCES – STYLES
   Improved Typography for Readability
============================== */

/* Section Header */
.admission-label {
  font-size: 0.85rem;           /* ~14px */
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Admission title */
.admission-title {
  font-size: 2rem;              /* 32px */
  font-weight: 700;
  color: var(--accent-color);
  margin: 8px 0;
  line-height: 1.3;
}

/* Admission subtitle */
.admission-subtitle {
  font-size: 1rem;              /* 16px */
  color: #6c757d;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

/* Admission title bar */
.admission-title-bar {
  width: 70px;
  height: 3px;
  background: var(--accent-color);
  margin-top: 12px;
  border-radius: 3px;
}

/* Cards */
.admission-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Hover state — admission card */
.admission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Top Section */
.admission-card-top {
  padding: 26px 22px;
  text-align: center;
}

/* Icon */
.admission-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  color: #1a5aa5;
}

/* Badge */
.admission-card-badge {
  display: inline-block;
  font-size: 0.75rem;           /* 12px */
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  background: #e9ecef;
  color: #495057;
  letter-spacing: 0.4px;
}

/* Card Title */
.admission-card-top h6 {
  font-size: 1.125rem;          /* 18px */
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 10px;
  line-height: 1.4;
}

/* Card Description */
.admission-card-top p {
  font-size: 0.98rem;           /* ~15px */
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Footer */
.admission-card-footer {
  border-top: 1px solid #eef1f6;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Meta Information */
.admission-meta {
  font-size: 0.85rem;           /* ~14px */
  color: #6c757d;
  font-weight: 500;
}

/* View Button */
.admission-btn-view {
  background: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 0.9rem;            /* ~14.5px */
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

/* Admission btn view */
.admission-btn-view i {
  font-size: 14px;
}

/* Hover state — admission btn view */
.admission-btn-view:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 134, 224, 0.35);
}

/* ==============================
   RESPONSIVE TYPOGRAPHY
============================== */

/* Tablets */
@media (max-width: 991px) {
  .admission-title {
    font-size: 1.75rem;         /* 28px */
  }

  .admission-card-top h6 {
    font-size: 1.05rem;         /* ~17px */
  }

  .admission-subtitle {
    font-size: 0.95rem;
  }
}

/* Mobile Devices */
@media (max-width: 576px) {
  .admission-title {
    font-size: 1.5rem;          /* 24px */
  }

  .admission-subtitle {
    font-size: 0.9rem;          /* ~14.5px */
  }

  .admission-card-top {
    padding: 20px 16px;
  }

  .admission-card-top p {
    font-size: 0.9rem;
  }

  .admission-meta {
    font-size: 0.8rem;
  }

  .admission-btn-view {
    font-size: 0.82rem;
    padding: 7px 16px;
  }
}



/* =====================================================
   STUDENT DETAILS – READABLE TYPOGRAPHY
   ===================================================== */

/* Section Wrapper */
.student-details-section {
  background-color: #f9fafc;
  position: relative;
  font-family: var(--paragraph);
}

/* Section Header */
.student-details-title {
  font-size: 2rem;            /* 32px */
  font-weight: 700;
  color: var(--accent-color);
  margin: 8px 0;
  line-height: 1.3;
}

/* Student details subtitle */
.student-details-subtitle {
  font-size: 1rem;            /* 16px */
  color: #6c757d;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Student details title bar */
.student-details-title-bar {
  width: 70px;
  height: 3px;
  background: var(--accent-color);
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Card */
.student-details-card {
  background: #ffffff;
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Hover state — student details card */
.student-details-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Card Top */
.student-details-card-top {
  padding: 25px 22px;
  text-align: center;
}

/* Icon */
.student-details-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  color: var(--accent-color);
}

/* Badge */
.student-details-card-badge {
  display: inline-block;
  font-size: 0.75rem;         /* 12px */
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  background: #e9ecef;
  color: #495057;
  letter-spacing: 0.5px;
}

/* Card Title */
.student-details-card-top h6 {
  font-size: 1.125rem;        /* 18px */
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 10px;
  line-height: 1.4;
}

/* Card Description */
.student-details-card-top p {
  font-size: 0.95rem;         /* ~15px */
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Footer */
.student-details-card-footer {
  border-top: 1px solid #eef1f6;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Meta Information */
.student-details-meta {
  font-size: 0.8125rem;       /* 13px */
  color: #6c757d;
  font-weight: 500;
}

/* View Button */
.student-details-btn-view {
  background: var(--accent-color);
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 0.875rem;        /* 14px */
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

/* Student details btn view */
.student-details-btn-view i {
  font-size: 14px;
}

/* Hover state — student details btn view */
.student-details-btn-view:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 134, 224, 0.35);
}


/* =====================================================
   RESPONSIVE TYPOGRAPHY
   ===================================================== */

/* Tablets */
@media (max-width: 991px) {
  .student-details-title {
    font-size: 1.75rem; /* 28px */
  }

  .student-details-card-top h6 {
    font-size: 1.05rem;
  }
}

/* Mobile Devices */
@media (max-width: 576px) {
  .student-details-title {
    font-size: 1.5rem; /* 24px */
  }

  .student-details-subtitle {
    font-size: 0.95rem;
  }

  .student-details-card-top {
    padding: 20px 16px;
  }

  .student-details-card-top p {
    font-size: 0.9rem;
  }

  .student-details-btn-view {
    font-size: 0.82rem;
    padding: 7px 16px;
  }
}



/* =====================================================
   FINANCE COMMITTEE – READABLE TYPOGRAPHY
   ===================================================== */

/* Finance meeting section */
.finance-meeting-section {
  background-color: #f9fafc;
  position: relative;
  font-family: var(--paragraph);
}

/* Section Header */
.finance-meeting-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 8px 0;
  line-height: 1.3;
}

/* Finance meeting subtitle */
.finance-meeting-subtitle {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Finance meeting title bar */
.finance-meeting-title-bar {
  width: 70px;
  height: 3px;
  background: var(--accent-color);
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Card */
.finance-meeting-card {
  background: #ffffff;
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Hover state — finance meeting card */
.finance-meeting-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Card Top */
.finance-meeting-card-top {
  padding: 25px 22px;
  text-align: center;
}

/* Icon */
.finance-meeting-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  color: var(--accent-color);
}

/* Badge */
.finance-meeting-card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  background: #e9ecef;
  color: #495057;
  letter-spacing: 0.5px;
}

/* Footer */
.finance-meeting-card-footer {
  border-top: 1px solid #eef1f6;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Meta Information */
.finance-meeting-meta {
  font-size: 0.8125rem;
  color: #6c757d;
  font-weight: 500;
}

/* View Button */
.finance-meeting-btn-view {
  background: var(--accent-color);
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

/* Hover state — finance meeting btn view */
.finance-meeting-btn-view:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 134, 224, 0.35);
}


/* Responsive Typography */
@media (max-width: 991px) {
  .finance-meeting-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .finance-meeting-title {
    font-size: 1.5rem;
  }

  .finance-meeting-subtitle {
    font-size: 0.95rem;
  }

  .finance-meeting-btn-view {
    font-size: 0.82rem;
    padding: 7px 16px;
  }
}



/* ==============================
   ACADEMIC CALENDAR – STYLES
   Optimized for Readability
============================== */

/* Section Wrapper (Optional but Recommended) */
.academic-section {
  background-color: #f9fafc;
  font-family: var(--paragraph);
}

/* Section Header */
.academic-label {
  font-size: 0.85rem;        /* ~14px - suitable for a label */
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

/* Academic title */
.academic-title {
  font-size: 2rem;           /* 32px - main heading */
  font-weight: 700;
  color: var(--accent-color);
  margin: 8px 0;
  line-height: 1.3;
}

/* Academic subtitle */
.academic-subtitle {
  font-size: 1rem;           /* 16px - improved readability */
  color: #6c757d;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

/* Academic title bar */
.academic-title-bar {
  width: 70px;
  height: 3px;
  background: var(--accent-color);
  margin-top: 12px;
  border-radius: 3px;
}

/* Cards */
.academic-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Hover state — academic card */
.academic-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Top Section */
.academic-card-top {
  padding: 26px 22px;
  text-align: center;
}

/* Icon */
.academic-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  color: var(--accent-color);
}

/* Badge */
.academic-card-badge {
  display: inline-block;
  font-size: 0.75rem;        /* 12px */
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  background: #e9ecef;
  color: #495057;
  letter-spacing: 0.4px;
}

/* Card Title */
.academic-card-top h6 {
  font-size: 1.125rem;       /* 18px */
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 10px;
  line-height: 1.4;
}

/* Card Description */
.academic-card-top p {
  font-size: 0.95rem;        /* ~15px */
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Footer */
.academic-card-footer {
  border-top: 1px solid #eef1f6;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Meta Information */
.academic-meta {
  font-size: 0.85rem;        /* ~14px */
  color: #6c757d;
  font-weight: 500;
}

/* View Button */
.academic-btn-view {
  background: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 0.9rem;         /* ~14.5px */
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

/* Academic btn view */
.academic-btn-view i {
  font-size: 14px;
}

/* Hover state — academic btn view */
.academic-btn-view:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 134, 224, 0.35);
}

/* ==============================
   RESPONSIVE TYPOGRAPHY
============================== */

/* Tablets */
@media (max-width: 991px) {
  .academic-title {
    font-size: 1.75rem;      /* 28px */
  }

  .academic-card-top h6 {
    font-size: 1.05rem;
  }

  .academic-subtitle {
    font-size: 0.95rem;
  }
}

/* Mobile Devices */
@media (max-width: 576px) {
  .academic-title {
    font-size: 1.5rem;       /* 24px */
  }

  .academic-subtitle {
    font-size: 0.9rem;
  }

  .academic-card-top {
    padding: 20px 16px;
  }

  .academic-card-top p {
    font-size: 0.9rem;
  }

  .academic-meta {
    font-size: 0.8rem;
  }

  .academic-btn-view {
    font-size: 0.82rem;
    padding: 7px 16px;
  }
}


/* =====================================================
   BOARD OF STUDIES – READABLE TYPOGRAPHY
   ===================================================== */

/* Section Wrapper */
.board-of-studies-section {
  background-color: #f9fafc;
  position: relative;
  font-family: var(--paragraph);
}

/* Section Header */
.board-of-studies-title {
  font-size: 2rem;            /* 32px */
  font-weight: 700;
  color: var(--accent-color);
  margin: 8px 0;
  line-height: 1.3;
}

/* Board of studies subtitle */
.board-of-studies-subtitle {
  font-size: 1rem;            /* 16px */
  color: #6c757d;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Board of studies title bar */
.board-of-studies-title-bar {
  width: 70px;
  height: 3px;
  background: var(--accent-color);
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Card */
.board-of-studies-card {
  background: #ffffff;
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Hover state — board of studies card */
.board-of-studies-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Card Top */
.board-of-studies-card-top {
  padding: 25px 22px;
  text-align: center;
}

/* Icon */
.board-of-studies-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  color: var(--accent-color);
}

/* Badge */
.board-of-studies-card-badge {
  display: inline-block;
  font-size: 0.75rem;         /* 12px */
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  background: #e9ecef;
  color: #495057;
  letter-spacing: 0.5px;
}

/* Card Title */
.board-of-studies-card-top h6 {
  font-size: 1.125rem;        /* 18px */
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 10px;
  line-height: 1.4;
}

/* Card Description */
.board-of-studies-card-top p {
  font-size: 0.95rem;         /* ~15px */
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Footer */
.board-of-studies-card-footer {
  border-top: 1px solid #eef1f6;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Meta Information */
.board-of-studies-meta {
  font-size: 0.8125rem;       /* 13px */
  color: #6c757d;
  font-weight: 500;
}

/* View Button */
.board-of-studies-btn-view {
  background: var(--accent-color);
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 0.875rem;        /* 14px */
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

/* Board of studies btn view */
.board-of-studies-btn-view i {
  font-size: 14px;
}

/* Hover state — board of studies btn view */
.board-of-studies-btn-view:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 134, 224, 0.35);
}

/* =====================================================
   RESPONSIVE TYPOGRAPHY
   ===================================================== */

/* Tablets */
@media (max-width: 991px) {
  .board-of-studies-title {
    font-size: 1.75rem; /* 28px */
  }

  .board-of-studies-card-top h6 {
    font-size: 1.05rem;
  }
}

/* Mobile Devices */
@media (max-width: 576px) {
  .board-of-studies-title {
    font-size: 1.5rem; /* 24px */
  }

  .board-of-studies-subtitle {
    font-size: 0.95rem;
  }

  .board-of-studies-card-top {
    padding: 20px 16px;
  }

  .board-of-studies-card-top p {
    font-size: 0.9rem;
  }

  .board-of-studies-btn-view {
    font-size: 0.82rem;
    padding: 7px 16px;
  }
}





/* =====================================================
   COLLEGE GOVERNING BODY – READABLE TYPOGRAPHY
   ===================================================== */

/* Section Wrapper */
.governing-body-section {
  background-color: #f9fafc;
  position: relative;
  font-family: var(--paragraph);
}

/* Section Header */
.governing-body-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 8px 0;
  line-height: 1.3;
}

/* Governing body subtitle */
.governing-body-subtitle {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Governing body title bar */
.governing-body-title-bar {
  width: 70px;
  height: 3px;
  background: var(--accent-color);
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Card */
.governing-body-card {
  background: #ffffff;
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Hover state — governing body card */
.governing-body-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Card Top */
.governing-body-card-top {
  padding: 25px 22px;
  text-align: center;
}

/* Icon */
.governing-body-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  color: var(--accent-color);
}

/* Badge */
.governing-body-card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  background: #e9ecef;
  color: #495057;
  letter-spacing: 0.5px;
}

/* Card Title */
.governing-body-card-top h6 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 10px;
  line-height: 1.4;
}

/* Card Description */
.governing-body-card-top p {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Footer */
.governing-body-card-footer {
  border-top: 1px solid #eef1f6;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Meta Information */
.governing-body-meta {
  font-size: 0.8125rem;
  color: #6c757d;
  font-weight: 500;
}

/* View Button */
.governing-body-btn-view {
  background: var(--accent-color);
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

/* Governing body btn view */
.governing-body-btn-view i {
  font-size: 14px;
}

/* Hover state — governing body btn view */
.governing-body-btn-view:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 134, 224, 0.35);
}

/* Responsive Typography */
@media (max-width: 991px) {
  .governing-body-title {
    font-size: 1.75rem;
  }

  .governing-body-card-top h6 {
    font-size: 1.05rem;
  }
}

@media (max-width: 576px) {
  .governing-body-title {
    font-size: 1.5rem;
  }

  .governing-body-subtitle {
    font-size: 0.95rem;
  }

  .governing-body-card-top {
    padding: 20px 16px;
  }

  .governing-body-card-top p {
    font-size: 0.9rem;
  }

  .governing-body-btn-view {
    font-size: 0.82rem;
    padding: 7px 16px;
  }
}


/* =====================================================
   IQAC SECTION – READABLE TYPOGRAPHY
   ===================================================== */

/* Iqac section */
.iqac-section {
  background-color: #f9fafc;
  position: relative;
  font-family: var(--paragraph);
}

/* Section Header */
.iqac-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 8px 0;
  line-height: 1.3;
}

/* Iqac subtitle */
.iqac-subtitle {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Iqac title bar */
.iqac-title-bar {
  width: 70px;
  height: 3px;
  background: var(--accent-color);
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Card */
.iqac-card {
  background: #ffffff;
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Hover state — iqac card */
.iqac-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Card Top */
.iqac-card-top {
  padding: 25px 22px;
  text-align: center;
}

/* Icon */
.iqac-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  color: var(--accent-color);
}

/* Badge */
.iqac-card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  background: #e9ecef;
  color: #495057;
  letter-spacing: 0.5px;
}

/* Card Title */
.iqac-card-top h6 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 10px;
  line-height: 1.4;
}

/* Card Description */
.iqac-card-top p {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Footer */
.iqac-card-footer {
  border-top: 1px solid #eef1f6;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Meta Information */
.iqac-meta {
  font-size: 0.8125rem;
  color: #6c757d;
  font-weight: 500;
}

/* View Button */
.iqac-btn-view {
  background: var(--accent-color);
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

/* Iqac btn view */
.iqac-btn-view i {
  font-size: 14px;
}

/* Hover state — iqac btn view */
.iqac-btn-view:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 134, 224, 0.35);
}


/* Responsive Typography */
@media (max-width: 991px) {
  .iqac-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .iqac-title {
    font-size: 1.5rem;
  }

  .iqac-subtitle {
    font-size: 0.95rem;
  }

  .iqac-card-top {
    padding: 20px 16px;
  }

  .iqac-card-top p {
    font-size: 0.9rem;
  }

  .iqac-btn-view {
    font-size: 0.82rem;
    padding: 7px 16px;
  }
}



/* =====================================================
   COLLEGE FELLOWSHIP – READABLE TYPOGRAPHY
   ===================================================== */

/* College fellowship section */
.college-fellowship-section {
  background-color: #f9fafc;
  position: relative;
  font-family: var(--paragraph);
}

/* Section Header */
.college-fellowship-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 8px 0;
  line-height: 1.3;
}

/* College fellowship subtitle */
.college-fellowship-subtitle {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* College fellowship title bar */
.college-fellowship-title-bar {
  width: 70px;
  height: 3px;
  background: var(--accent-color);
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Card */
.college-fellowship-card {
  background: #ffffff;
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Hover state — college fellowship card */
.college-fellowship-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Card Top */
.college-fellowship-card-top {
  padding: 25px 22px;
  text-align: center;
}

/* Icon */
.college-fellowship-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  color: var(--accent-color);
}

/* Badge */
.college-fellowship-card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  background: #e9ecef;
  color: #495057;
  letter-spacing: 0.5px;
}

/* Card Title */
.college-fellowship-card-top h6 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 10px;
  line-height: 1.4;
}

/* Card Description */
.college-fellowship-card-top p {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Footer */
.college-fellowship-card-footer {
  border-top: 1px solid #eef1f6;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Meta Information */
.college-fellowship-meta {
  font-size: 0.8125rem;
  color: #6c757d;
  font-weight: 500;
}

/* View Button */
.college-fellowship-btn-view {
  background: var(--accent-color);
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

/* College fellowship btn view */
.college-fellowship-btn-view i {
  font-size: 14px;
}

/* Hover state — college fellowship btn view */
.college-fellowship-btn-view:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 134, 224, 0.35);
}

/* Responsive Typography */
@media (max-width: 991px) {
  .college-fellowship-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .college-fellowship-title {
    font-size: 1.5rem;
  }

  .college-fellowship-subtitle {
    font-size: 0.95rem;
  }

  .college-fellowship-card-top {
    padding: 20px 16px;
  }

  .college-fellowship-card-top p {
    font-size: 0.9rem;
  }

  .college-fellowship-btn-view {
    font-size: 0.82rem;
    padding: 7px 16px;
  }
}



/* =====================================================
   NCTE & INSTITUTIONAL DOCUMENTS SECTION
   ===================================================== */

/* Ncte section */
.ncte-section {
  background-color: #f9fafc;
  position: relative;
  font-family: var(--paragraph);
}

/* Section Header */
.ncte-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 8px 0;
  line-height: 1.3;
}

/* Ncte subtitle */
.ncte-subtitle {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

/* Ncte title bar */
.ncte-title-bar {
  width: 70px;
  height: 3px;
  background: var(--accent-color);
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Card */
.ncte-card {
  background: #ffffff;
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Hover state — ncte card */
.ncte-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Card Top */
.ncte-card-top {
  padding: 25px 22px;
  text-align: center;
}

/* Icon */
.ncte-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  color: var(--accent-color);
}

/* Badge */
.ncte-card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  background: #e9ecef;
  color: #495057;
  letter-spacing: 0.5px;
}

/* Card Title */
.ncte-card-top h6 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 10px;
  line-height: 1.4;
}

/* Card Description */
.ncte-card-top p {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Footer */
.ncte-card-footer {
  border-top: 1px solid #eef1f6;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Meta Information */
.ncte-meta {
  font-size: 0.8125rem;
  color: #6c757d;
  font-weight: 500;
}

/* View Button */
.ncte-btn-view {
  background: var(--accent-color);
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

/* Ncte btn view */
.ncte-btn-view i {
  font-size: 14px;
}

/* Hover state — ncte btn view */
.ncte-btn-view:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 134, 224, 0.35);
}



/* Responsive Typography */
@media (max-width: 991px) {
  .ncte-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .ncte-title {
    font-size: 1.5rem;
  }

  .ncte-subtitle {
    font-size: 0.95rem;
  }

  .ncte-card-top {
    padding: 20px 16px;
  }

  .ncte-card-top p {
    font-size: 0.9rem;
  }

  .ncte-btn-view {
    font-size: 0.82rem;
    padding: 7px 16px;
  }
}






/* =============================================
   Department Association Section
   ============================================= */

.department-association-section {
  background: #f8f9fa;
}

.department-association-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.department-association-subtitle {
  font-size: 15px;
  color: #6c757d;
  max-width: 560px;
  margin: 0 auto 12px;
}

.department-association-title-bar {
  width: 50px;
  height: 4px;
  border-radius: 2px;
  background: var(--accent-color);
}

/* =============================================
   Card Base
   ============================================= */

.department-association-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  border-radius: 12px;
  padding: 18px 24px;
  border: 1px solid #e8ecf0;
  border-left-width: 5px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

.department-association-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* =============================================
   Card Icon
   ============================================= */

.department-association-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
  color: var(--accent-color);
}

/* =============================================
   Card Content (middle flex area)
   ============================================= */

.department-association-card-top {
  flex: 1;
  min-width: 0;
}

.department-association-card-top h6 {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 4px 0 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.department-association-card-top p {
  font-size: 13px;
  color: #6c757d;
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =============================================
   Badge
   ============================================= */

.department-association-card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
  background: color-mix(in srgb, var(--accent-color) 12%, transparent);
  color: var(--accent-color);
}

/* =============================================
   Card Footer (meta + button)
   ============================================= */

.department-association-card-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

.department-association-meta {
  font-size: 12px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.department-association-meta i {
  font-size: 13px;
}

/* =============================================
   View More Button
   ============================================= */

.department-association-btn-view {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.15s ease;
  background: var(--accent-color);
  color: #ffffff;
}

.department-association-btn-view:hover {
  opacity: 0.88;
  transform: scale(0.98);
  text-decoration: none;
  color: #ffffff;
}

/* =============================================
   Theme — Blue
   ============================================= */

.department-association-theme-blue {
  --accent-color: #222c99;
  border-left-color: var(--accent-color);
}

/* =============================================
   Theme — Orange
   ============================================= */

.department-association-theme-orange {
  --accent-color: #222c99;
  border-left-color: var(--accent-color);
}

/* =============================================
   Theme — Green
   ============================================= */

.department-association-theme-green {
  --accent-color: #222c99;
  border-left-color: var(--accent-color);
}

/* =============================================
   Theme — Purple
   ============================================= */

.department-association-theme-purple {
  --accent-color: #222c99;
  border-left-color: var(--accent-color);
}

/* =============================================
   Responsive — Mobile (≤ 576px)
   ============================================= */

@media (max-width: 576px) {
  .department-association-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 12px;
  }

  .department-association-card-top h6 {
    white-space: normal;
  }

  .department-association-card-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}

/* =====================================================
   DEPARTMENT ASSOCIATION MEETINGS SECTION
   ===================================================== */

/* Department association section */
.department-association-section {
  background-color: #f9fafc;
  position: relative;
  font-family: var(--paragraph);
}

/* Section Header */
.department-association-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 8px 0;
  line-height: 1.3;
}

/* Department association subtitle */
.department-association-subtitle {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

/* Department association title bar */
.department-association-title-bar {
  width: 70px;
  height: 3px;
  background: var(--accent-color);
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Card */
.department-association-card {
  background: #ffffff;
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Hover state — department association card */
.department-association-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Card Top */
.department-association-card-top {
  padding: 25px 22px;
  text-align: center;
}

/* Icon */
.department-association-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  color: var(--accent-color);
}

/* Badge */
.department-association-card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  background: #e9ecef;
  color: #495057;
  letter-spacing: 0.5px;
}

/* Card Title */
.department-association-card-top h6 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 10px;
  line-height: 1.4;
}

/* Card Description */
.department-association-card-top p {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Footer */
.department-association-card-footer {
  border-top: 1px solid #eef1f6;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Meta Information */
.department-association-meta {
  font-size: 0.8125rem;
  color: #6c757d;
  font-weight: 500;
}

/* View Button */
.department-association-btn-view {
  background: var(--accent-color);
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

/* Department association btn view */
.department-association-btn-view i {
  font-size: 14px;
}

/* Hover state — department association btn view */
.department-association-btn-view:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 134, 224, 0.35);
}

/* Theme Colors */
.department-association-theme-blue .department-association-card-icon { color: #0d6efd; }
/* Fd7e14 */
.department-association-theme-orange .department-association-card-icon { color: #fd7e14; }
/* Color */
.department-association-theme-green .department-association-card-icon { color: #198754; }
/* F42c1 */
.department-association-theme-purple .department-association-card-icon { color: #6f42c1; }

/* Responsive Typography */
@media (max-width: 991px) {
  .department-association-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .department-association-title {
    font-size: 1.5rem;
  }

  .department-association-subtitle {
    font-size: 0.95rem;
  }

  .department-association-card-top {
    padding: 20px 16px;
  }

  .department-association-card-top p {
    font-size: 0.9rem;
  }

  .department-association-btn-view {
    font-size: 0.82rem;
    padding: 7px 16px;
  }
}


/* =====================================================
   PTA MEETING SECTION
   ===================================================== */

/* Pta meeting section */
.pta-meeting-section {
  background-color: #f9fafc;
  position: relative;
  font-family: var(--paragraph);
}

/* Section Header */
.pta-meeting-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 8px 0;
  line-height: 1.3;
}

/* Pta meeting subtitle */
.pta-meeting-subtitle {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

/* Pta meeting title bar */
.pta-meeting-title-bar {
  width: 70px;
  height: 3px;
  background: var(--accent-color);
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Card */
.pta-meeting-card {
  background: #ffffff;
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Hover state — pta meeting card */
.pta-meeting-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Card Top */
.pta-meeting-card-top {
  padding: 25px 22px;
  text-align: center;
}

/* Icon */
.pta-meeting-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  color: var(--accent-color);
}

/* Badge */
.pta-meeting-card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  background: #e9ecef;
  color: #495057;
  letter-spacing: 0.5px;
}

/* Card Title */
.pta-meeting-card-top h6 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 10px;
  line-height: 1.4;
}

/* Card Description */
.pta-meeting-card-top p {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Footer */
.pta-meeting-card-footer {
  border-top: 1px solid #eef1f6;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Meta Information */
.pta-meeting-meta {
  font-size: 0.8125rem;
  color: #6c757d;
  font-weight: 500;
}

/* View Button */
.pta-meeting-btn-view {
  background: var(--accent-color);
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

/* Pta meeting btn view */
.pta-meeting-btn-view i {
  font-size: 14px;
}

/* Hover state — pta meeting btn view */
.pta-meeting-btn-view:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 134, 224, 0.35);
}


/* Responsive Typography */
@media (max-width: 991px) {
  .pta-meeting-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .pta-meeting-title {
    font-size: 1.5rem;
  }

  .pta-meeting-subtitle {
    font-size: 0.95rem;
  }

  .pta-meeting-card-top {
    padding: 20px 16px;
  }

  .pta-meeting-card-top p {
    font-size: 0.9rem;
  }

  .pta-meeting-btn-view {
    font-size: 0.82rem;
    padding: 7px 16px;
  }
}





/* =====================================================
   ALUMNI SECTION
   ===================================================== */

/* Alumni section */
.alumni-section {
  background-color: #f9fafc;
  position: relative;
  font-family: var(--paragraph);
}

/* Section Header */
.alumni-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 8px 0;
  line-height: 1.3;
}

/* Alumni subtitle */
.alumni-subtitle {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

/* Alumni title bar */
.alumni-title-bar {
  width: 70px;
  height: 3px;
  background: var(--accent-color);
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Card */
.alumni-card {
  background: #ffffff;
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Hover state — alumni card */
.alumni-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Card Top */
.alumni-card-top {
  padding: 25px 22px;
  text-align: center;
}

/* Icon */
.alumni-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  color: var(--accent-color);
}

/* Badge */
.alumni-card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  background: #e9ecef;
  color: #495057;
  letter-spacing: 0.5px;
}

/* Card Title */
.alumni-card-top h6 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 10px;
  line-height: 1.4;
}

/* Card Description */
.alumni-card-top p {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Footer */
.alumni-card-footer {
  border-top: 1px solid #eef1f6;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Meta Information */
.alumni-meta {
  font-size: 0.8125rem;
  color: #6c757d;
  font-weight: 500;
}

/* View Button */
.alumni-btn-view {
  background: var(--accent-color);
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

/* Alumni btn view */
.alumni-btn-view i {
  font-size: 14px;
}

/* Hover state — alumni btn view */
.alumni-btn-view:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 134, 224, 0.35);
}



/* Responsive Typography */
@media (max-width: 991px) {
  .alumni-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .alumni-title {
    font-size: 1.5rem;
  }

  .alumni-subtitle {
    font-size: 0.95rem;
  }

  .alumni-card-top {
    padding: 20px 16px;
  }

  .alumni-card-top p {
    font-size: 0.9rem;
  }

  .alumni-btn-view {
    font-size: 0.82rem;
    padding: 7px 16px;
  }
}









/* =====================================================
   MESTON JOURNAL OF RESEARCH IN EDUCATION
   ===================================================== */

/* Meston journal section */
.meston-journal-section {
  background-color: #f9fafc;
  position: relative;
  font-family: var(--paragraph);
}

/* Section Header */
.meston-journal-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 8px 0;
  line-height: 1.3;
}

/* Meston journal subtitle */
.meston-journal-subtitle {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Meston journal title bar */
.meston-journal-title-bar {
  width: 70px;
  height: 3px;
  background: var(--accent-color);
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Card */
.meston-journal-card {
  background: #ffffff;
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Hover state — meston journal card */
.meston-journal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Card Top */
.meston-journal-card-top {
  padding: 25px 22px;
  text-align: center;
}

/* Icon */
.meston-journal-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  color: var(--accent-color);
}

/* Badge */
.meston-journal-card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  background: #e9ecef;
  color: #495057;
  letter-spacing: 0.5px;
}

/* Card Title */
.meston-journal-card-top h6 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 10px;
}

/* Card Description */
.meston-journal-card-top p {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.7;
}

/* Footer */
.meston-journal-card-footer {
  border-top: 1px solid #eef1f6;
  padding: 14px 20px;
  text-align: center;
}

/* Meta Information */
.meston-journal-meta {
  display: block;
  font-size: 0.8125rem;
  color: #6c757d;
  margin-bottom: 8px;
  font-weight: 500;
}

/* View Button */
.meston-journal-btn-view {
  background: var(--accent-color);
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

/* Hover state — meston journal btn view */
.meston-journal-btn-view:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 134, 224, 0.35);
}



/* Responsive Design */
@media (max-width: 991px) {
  .meston-journal-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .meston-journal-title {
    font-size: 1.5rem;
  }

  .meston-journal-subtitle {
    font-size: 0.95rem;
  }

  .meston-journal-card-top {
    padding: 20px 16px;
  }

  .meston-journal-card-top p {
    font-size: 0.9rem;
  }

  .meston-journal-btn-view {
    font-size: 0.82rem;
    padding: 7px 16px;
  }
}




/* =====================================================
   MESTON FLASHES SECTION
   ===================================================== */

/* Meston flashes section */
.meston-flashes-section {
  background-color: #f9fafc;
  font-family: var(--paragraph);
}

/* Section Header */
.meston-flashes-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 8px 0;
}

/* Meston flashes subtitle */
.meston-flashes-subtitle {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

/* Meston flashes title bar */
.meston-flashes-title-bar {
  width: 70px;
  height: 3px;
  background: var(--accent-color);
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Card */
.meston-flashes-card {
  background: #ffffff;
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* Hover state — meston flashes card */
.meston-flashes-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Card Top */
.meston-flashes-card-top {
  padding: 25px 22px;
  text-align: center;
}

/* Icon */
.meston-flashes-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  color: var(--accent-color);
}

/* Badge */
.meston-flashes-card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  background: #e9ecef;
  color: #495057;
}

/* Title */
.meston-flashes-card-top h6 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 10px;
}

/* Description */
.meston-flashes-card-top p {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.6;
}

/* Footer */
.meston-flashes-card-footer {
  border-top: 1px solid #eef1f6;
  padding: 14px 20px;
  text-align: center;
}

/* Meston flashes meta */
.meston-flashes-meta {
  display: block;
  font-size: 0.8rem;
  color: #6c757d;
  margin-bottom: 8px;
  font-weight: 500;
}

/* Button */
.meston-flashes-btn-view {
  background: var(--accent-color);
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

/* Hover state — meston flashes btn view */
.meston-flashes-btn-view:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 134, 224, 0.35);
}


/* Responsive */
@media (max-width: 576px) {
  .meston-flashes-title {
    font-size: 1.5rem;
  }

  .meston-flashes-card-top {
    padding: 20px 16px;
  }

  .meston-flashes-card-top p {
    font-size: 0.85rem;
  }
}






/* =====================================================
   MESTON SOUVENIR SECTION
   ===================================================== */

/* Meston souvenir section */
.meston-souvenir-section {
  background-color: #f9fafc;
  font-family: var(--paragraph);
}

/* Section Header */
.meston-souvenir-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 8px 0;
}

/* Meston souvenir subtitle */
.meston-souvenir-subtitle {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

/* Meston souvenir title bar */
.meston-souvenir-title-bar {
  width: 70px;
  height: 3px;
  background: var(--accent-color);
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Card */
.meston-souvenir-card {
  background: #ffffff;
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* Hover state — meston souvenir card */
.meston-souvenir-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Card Top */
.meston-souvenir-card-top {
  padding: 25px 22px;
  text-align: center;
}

/* Icon */
.meston-souvenir-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  color: var(--accent-color);
}

/* Badge */
.meston-souvenir-card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  background: #e9ecef;
  color: #495057;
}

/* Title */
.meston-souvenir-card-top h6 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 10px;
}

/* Description */
.meston-souvenir-card-top p {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.6;
}

/* Footer */
.meston-souvenir-card-footer {
  border-top: 1px solid #eef1f6;
  padding: 14px 20px;
  text-align: center;
}

/* Meston souvenir meta */
.meston-souvenir-meta {
  display: block;
  font-size: 0.8rem;
  color: #6c757d;
  margin-bottom: 8px;
  font-weight: 500;
}

/* Button */
.meston-souvenir-btn-view {
  background: var(--accent-color);
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

/* Hover state — meston souvenir btn view */
.meston-souvenir-btn-view:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 134, 224, 0.35);
}


/* Responsive */
@media (max-width: 576px) {
  .meston-souvenir-title {
    font-size: 1.5rem;
  }
}




/* =====================================================
   MESTON ONLINE RESOURCE SECTION
   ===================================================== */

/* Meston online resource section */
.meston-online-resource-section {
  background-color: #f9fafc;
  font-family: var(--paragraph);
}

/* Section Header */
.meston-online-resource-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 8px 0;
  line-height: 1.3;
}

/* Meston online resource subtitle */
.meston-online-resource-subtitle {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

/* Meston online resource title bar */
.meston-online-resource-title-bar {
  width: 70px;
  height: 3px;
  background: var(--accent-color);
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Card */
.meston-online-resource-card {
  background: #ffffff;
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Hover state — meston online resource card */
.meston-online-resource-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Card Top */
.meston-online-resource-card-top {
  padding: 25px 22px;
  text-align: center;
}

/* Icon */
.meston-online-resource-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  color: var(--accent-color);
}

/* Badge */
.meston-online-resource-card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  background: #e9ecef;
  color: #495057;
  letter-spacing: 0.5px;
}

/* Card Title */
.meston-online-resource-card-top h6 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 10px;
}

/* Card Description */
.meston-online-resource-card-top p {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.7;
}

/* Footer */
.meston-online-resource-card-footer {
  border-top: 1px solid #eef1f6;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Meta Information */
.meston-online-resource-meta {
  font-size: 0.8125rem;
  color: #6c757d;
  font-weight: 500;
}

/* View Button */
.meston-online-resource-btn-view {
  background: var(--accent-color);
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

/* Hover state — meston online resource btn view */
.meston-online-resource-btn-view:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 134, 224, 0.35);
}

/* Responsive Typography */
@media (max-width: 991px) {
  .meston-online-resource-title {
    font-size: 1.75rem;
  }

  .meston-online-resource-card-top h6 {
    font-size: 1.05rem;
  }
}

@media (max-width: 576px) {
  .meston-online-resource-title {
    font-size: 1.5rem;
  }

  .meston-online-resource-subtitle {
    font-size: 0.95rem;
  }

  .meston-online-resource-card-top {
    padding: 20px 16px;
  }

  .meston-online-resource-card-top p {
    font-size: 0.9rem;
  }

  .meston-online-resource-btn-view {
    font-size: 0.82rem;
    padding: 7px 16px;
  }
}



/* =====================================================
   MESTON GOOGLE CLASSROOM SECTION
   ===================================================== */

/* Meston google classroom section */
.meston-google-classroom-section {
  background-color: #f9fafc;
  font-family: var(--paragraph);
}

/* Section Header */
.meston-google-classroom-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 8px 0;
}

/* Meston google classroom subtitle */
.meston-google-classroom-subtitle {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

/* Meston google classroom title bar */
.meston-google-classroom-title-bar {
  width: 70px;
  height: 3px;
  background: var(--accent-color);
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Card */
.meston-google-classroom-card {
  background: #ffffff;
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* Hover state — meston google classroom card */
.meston-google-classroom-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Card Top */
.meston-google-classroom-card-top {
  padding: 25px 22px;
  text-align: center;
}

/* Icon */
.meston-google-classroom-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  color: var(--accent-color);
}

/* Badge */
.meston-google-classroom-card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  background: #e9ecef;
  color: #495057;
}

/* Title */
.meston-google-classroom-card-top h6 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 10px;
}

/* Description */
.meston-google-classroom-card-top p {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
}

/* Footer */
.meston-google-classroom-card-footer {
  border-top: 1px solid #eef1f6;
  padding: 14px 20px;
  text-align: center;
}

/* Meston google classroom meta */
.meston-google-classroom-meta {
  display: block;
  font-size: 0.8rem;
  color: #6c757d;
  margin-bottom: 8px;
}

/* Button */
.meston-google-classroom-btn-view {
  background: #4285F4; /* Google Blue */
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

/* Hover state — meston google classroom btn view */
.meston-google-classroom-btn-view:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 133, 244, 0.35);
}

/* Theme Colors */
.meston-google-classroom-theme-blue .meston-google-classroom-card-icon {
  color: #0d6efd;
}
/* Meston google classroom card icon */
.meston-google-classroom-theme-orange .meston-google-classroom-card-icon {
  color: #fd7e14;
}
/* Meston google classroom card icon */
.meston-google-classroom-theme-green .meston-google-classroom-card-icon {
  color: #198754;
}
/* Meston google classroom card icon */
.meston-google-classroom-theme-purple .meston-google-classroom-card-icon {
  color: #6f42c1;
}

/* Responsive */
@media (max-width: 576px) {
  .meston-google-classroom-title {
    font-size: 1.5rem;
  }
}



/* =====================================================
   MESTON LMS SECTION
   ===================================================== */

/* Meston lms section */
.meston-lms-section {
  background-color: #f9fafc;
  font-family: var(--paragraph);
}

/* Section Header */
.meston-lms-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 8px 0;
  line-height: 1.3;
}

/* Meston lms subtitle */
.meston-lms-subtitle {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

/* Meston lms title bar */
.meston-lms-title-bar {
  width: 70px;
  height: 3px;
  background: var(--accent-color);
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Card */
.meston-lms-card {
  background: #ffffff;
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* Hover state — meston lms card */
.meston-lms-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Card Top */
.meston-lms-card-top {
  padding: 25px 22px;
  text-align: center;
}

/* Icon */
.meston-lms-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  color: var(--accent-color);
}

/* Badge */
.meston-lms-card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  background: #e9ecef;
  color: #495057;
  letter-spacing: 0.5px;
}

/* Title */
.meston-lms-card-top h6 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 10px;
}

/* Description */
.meston-lms-card-top p {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.7;
}

/* Footer */
.meston-lms-card-footer {
  border-top: 1px solid #eef1f6;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Meta Information */
.meston-lms-meta {
  font-size: 0.8125rem;
  color: #6c757d;
  font-weight: 500;
}

/* Button */
.meston-lms-btn-view {
  background: var(--accent-color);
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

/* Hover state — meston lms btn view */
.meston-lms-btn-view:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 134, 224, 0.35);
}

/* Theme Colors */
.meston-lms-theme-red .meston-lms-card-icon {
  color: #ff0000;
}
/* Meston lms card icon */
.meston-lms-theme-blue .meston-lms-card-icon {
  color: #0d6efd;
}
/* Meston lms card icon */
.meston-lms-theme-green .meston-lms-card-icon {
  color: #198754;
}
/* Meston lms card icon */
.meston-lms-theme-purple .meston-lms-card-icon {
  color: #6f42c1;
}

/* Responsive */
@media (max-width: 576px) {
  .meston-lms-title {
    font-size: 1.5rem;
  }

  .meston-lms-subtitle {
    font-size: 0.95rem;
  }

  .meston-lms-card-top {
    padding: 20px 16px;
  }

  .meston-lms-card-top p {
    font-size: 0.9rem;
  }

  .meston-lms-btn-view {
    font-size: 0.82rem;
    padding: 7px 16px;
  }
}





/* =====================================================
   MESTON COMMITTEES SECTION
   ===================================================== */

/* Meston committee section */
.meston-committee-section {
  background-color: #f9fafc;
  font-family: var(--paragraph);
}

/* Section Header */
.meston-committee-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 8px 0;
  line-height: 1.3;
}

/* Meston committee subtitle */
.meston-committee-subtitle {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Meston committee title bar */
.meston-committee-title-bar {
  width: 70px;
  height: 3px;
  background: var(--accent-color);
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Card */
.meston-committee-card {
  background: #ffffff;
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Hover state — meston committee card */
.meston-committee-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Card Top */
.meston-committee-card-top {
  padding: 25px 22px;
  text-align: center;
}

/* Icon */
.meston-committee-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  color: var(--accent-color);
}

/* Badge */
.meston-committee-card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  background: #e9ecef;
  color: #495057;
  letter-spacing: 0.5px;
}

/* Title */
.meston-committee-card-top h6 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 10px;
}

/* Description */
.meston-committee-card-top p {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.7;
}

/* Footer */
.meston-committee-card-footer {
  border-top: 1px solid #eef1f6;
  padding: 14px 20px;
  text-align: center;
}

/* Button */
.meston-committee-btn-view {
  background: var(--accent-color);
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

/* Hover state — meston committee btn view */
.meston-committee-btn-view:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 134, 224, 0.35);
}


/* Responsive */
@media (max-width: 576px) {
  .meston-committee-title {
    font-size: 1.5rem;
  }

  .meston-committee-subtitle {
    font-size: 0.95rem;
  }

  .meston-committee-card-top {
    padding: 20px 16px;
  }

  .meston-committee-card-top p {
    font-size: 0.9rem;
  }
}



  /* ───────── Base ───────── */
    .mssc-section { background: #f8f9fa; padding: 3rem 0; }

    /* ───────── Section Header ───────── */
    .mssc-title {
      font-size: 2.2rem;
      font-weight: 800;
      color: #1a1a2e;
      letter-spacing: -0.8px;
      line-height: 1.2;
      color: var(--accent-color);
    }
    .mssc-subtitle {
      font-size: 1rem;
      color: #6c757d;
      max-width: 580px;
      margin: 0.6rem auto 0;
      line-height: 1.75;
    }
    .mssc-title-bar {
      width: 56px;
      height: 4px;
      background: linear-gradient(90deg, #4e54c8, #8f94fb);
      border-radius: 2px;
      margin-top: 16px;
    }

    /* ───────── Year Label ───────── */
    .mssc-year-label {
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: 2px;
      color: #495057;
      text-transform: uppercase;
      border-bottom: 2px solid #dee2e6;
      padding-bottom: 8px;
    }

    /* ───────── Card ───────── */
    .mssc-card {
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,0.07);
      transition: transform 0.2s, box-shadow 0.2s;
      cursor: pointer;
      background: #fff;
      border: none;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .mssc-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.13);
    }

    /* Card thumbnail */
    .mssc-card-img-wrap {
      width: 100%;
      height: 120px;
      overflow: hidden;
      background: #e9ecef;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      flex-shrink: 0;
    }
    .mssc-card-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.35s;
    }
    .mssc-card:hover .mssc-card-img-wrap img { transform: scale(1.07); }

    .mssc-card-img-fallback {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
      width: 100%;
      color: #adb5bd;
      font-size: 11px;
      gap: 5px;
    }
    .mssc-card-img-fallback i { font-size: 2rem; }

    .mssc-pdf-overlay {
      position: absolute;
      top: 8px;
      right: 8px;
      background: #dc3545;
      color: #fff;
      font-size: 9px;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 4px;
      letter-spacing: 0.6px;
    }

    /* Card body */
    .mssc-card-top {
      padding: 14px 14px 10px;
      text-align: center;
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    .mssc-card-badge {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 20px;
      margin-bottom: 7px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }
    .mssc-theme-blue   .mssc-card-badge { background: #e0e7ff; color: #3730a3; }
    .mssc-theme-orange .mssc-card-badge { background: #fff3e0; color: #e65100; }
    .mssc-theme-green  .mssc-card-badge { background: #e8f5e9; color: #1b5e20; }
    .mssc-theme-purple .mssc-card-badge { background: #f3e5f5; color: #6a1b9a; }

    .mssc-card h3 {
      font-size: 0.88rem;
      font-weight: 700;
      color: #1a1a2e;
      margin: 0;
      line-height: 1.3;
    }

    /* Card footer */
    .mssc-card-footer {
      padding: 10px 14px;
      border-top: 1px solid rgba(0,0,0,0.06);
      text-align: center;
    }
    .mssc-btn-view {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      font-size: 12px;
      font-weight: 700;
      padding: 7px 16px;
      border-radius: 20px;
      background: #f0f0ff;
      color: #4e54c8;
      border: none;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.15s;
      width: 100%;
    }
    .mssc-btn-view:hover { opacity: 0.85; transform: scale(1.03); }

    /* ───────── Modal Overlay ───────── */
    .mssc-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(10, 10, 30, 0.72);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      z-index: 9999;
      align-items: center;
      justify-content: center;
      padding: 16px;
    }
    .mssc-overlay.open { display: flex; }

    /* ───────── Modal Box ───────── */
    .mssc-modal {
      background: #fff;
      border-radius: 20px;
      width: 100%;
      max-width: 540px;
      max-height: 92vh;
      display: flex;
      flex-direction: column;
      box-shadow: 0 24px 64px rgba(0,0,0,0.3);
      overflow: hidden;
      animation: modalIn 0.22s ease;
      position: relative;
    }
    @keyframes modalIn {
      from { opacity: 0; transform: scale(0.91) translateY(18px); }
      to   { opacity: 1; transform: scale(1) translateY(0); }
    }

    /* Close button */
    .mssc-close {
      position: absolute;
      top: 14px;
      right: 15px;
      z-index: 20;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(0,0,0,0.08);
      border: none;
      font-size: 15px;
      cursor: pointer;
      color: #333;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.15s, transform 0.15s;
      line-height: 1;
    }
    .mssc-close:hover { background: rgba(0,0,0,0.17); transform: scale(1.12); }

    /* Modal header */
    .mssc-modal-head {
      padding: 18px 56px 15px 22px;
      border-bottom: 1px solid rgba(0,0,0,0.07);
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }
    .mssc-modal-badge {
      display: inline-block;
      font-size: 10px;
      font-weight: 700;
      padding: 4px 13px;
      border-radius: 20px;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      white-space: nowrap;
    }
    .mssc-modal-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: #1a1a2e;
      margin: 0;
    }

    /* Modal content */
    .mssc-modal-body {
      flex: 1;
      overflow: hidden;
      background: #111827;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 280px;
    }
    .mssc-modal-body img {
      max-width: 100%;
      max-height: 65vh;
      width: auto;
      height: auto;
      display: block;
      object-fit: contain;
    }
    .mssc-modal-body iframe {
      width: 100%;
      height: 65vh;
      border: none;
      display: block;
    }
    .mssc-placeholder {
      text-align: center;
      padding: 48px 24px;
      color: #9ca3af;
    }
    .mssc-placeholder i { font-size: 2.8rem; display: block; margin-bottom: 12px; }
    .mssc-placeholder p { font-size: 13px; margin: 0; line-height: 1.7; }

    /* Modal footer */
    .mssc-modal-foot {
      padding: 13px 22px;
      border-top: 1px solid rgba(0,0,0,0.07);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-shrink: 0;
      background: #fff;
    }
    .mssc-foot-label { font-size: 12px; color: #6c757d; }
    .mssc-open-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 700;
      padding: 8px 20px;
      border-radius: 24px;
      text-decoration: none;
      background: #f0f0ff;
      color: #4e54c8;
      border: 1px solid #c7c9f5;
      transition: background 0.15s;
    }
    .mssc-open-link:hover { background: #e0e0ff; color: #3730a3; }




/* ===================== B.Ed Result Section ===================== */

/* Header */
.bed-result__header {
  margin-bottom: 30px;
}

/* Bed result  title */
.bed-result__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
}

/* Bed result  subtitle */
.bed-result__subtitle {
  color: var(--heading-color);
  font-size: 15px;
}

/* Card */
.bed-result__card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Bed result  card title */
.bed-result__card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #064e3b;
  border-left: 4px solid #10b981;
  padding-left: 10px;
}

/* Table */
.bed-result__table {
  width: 100%;
  border-collapse: collapse;
}

/* Th */
.bed-result__table th {
  background-color: var(--accent-color);
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  padding: 10px;
}

/* Td */
.bed-result__table td {
  padding: 10px;
  border: 1px solid #e5e7eb;
}

/* Zebra rows */
.bed-result__table tbody tr:nth-child(even) {
  background-color: #f0fdf4;
}

/* Hover effect */
.bed-result__table tbody tr:hover {
  background-color: #dcfce7;
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
  .bed-result__title {
    font-size: 22px;
  }

  .bed-result__card {
    padding: 15px;
  }

  .bed-result__table th,
  .bed-result__table td {
    font-size: 14px;
    padding: 8px;
  }
}




/* Header */
.med-result__header {
  margin-bottom: 30px;
}

/* Med result title */
.med-result__title {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
}

/* Med result subtitle */
.med-result__subtitle {
  color: var(--heading-color);
  font-size: 15px;
}

/* Card */
.med-result__card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Med result card title */
.med-result__card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #064e3b;
  border-left: 4px solid #10b981;
  padding-left: 10px;
}

/* Table */
.med-result__table {
  width: 100%;
  border-collapse: collapse;
}

/* Th */
.med-result__table th {
  background-color: var(--accent-color);
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  padding: 10px;
}

/* Td */
.med-result__table td {
  padding: 10px;
  border: 1px solid #e5e7eb;
}

/* Zebra rows */
.med-result__table tbody tr:nth-child(even) {
  background-color: #f0fdf4;
}

/* Hover effect */
.med-result__table tbody tr:hover {
  background-color: #dcfce7;
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
  .med-result__title {
    font-size: 22px;
  }

  .med-result__card {
    padding: 15px;
  }

  .med-result__table th,
  .med-result__table td {
    font-size: 14px;
    padding: 8px;
  }
}

/* =====================================================
   MESTON INSTITUTIONAL POLICY
   ===================================================== */

/* Meston policy section */
.meston-policy-section {
  background-color: #f9fafc;
  font-family: var(--paragraph);
  align-items:center !important;
}

/* Meston policy title */
.meston-policy-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 8px 0;
  text-align: center;
}

/* Meston policy subtitle */
.meston-policy-subtitle {
  font-size: 1rem;
  color: #6c757d;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

/* Meston policy title bar */
.meston-policy-title-bar {
  width: 70px;
  height: 3px;
  background: var(--accent-color);
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Card */
.meston-policy-card {
  background: #ffffff;
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Hover state — meston policy card */
.meston-policy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Meston policy card top */
.meston-policy-card-top {
  padding: 25px 22px;
  text-align: center;
}

/* Meston policy card icon */
.meston-policy-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  color: var(--accent-color);
}

/* Meston policy card badge */
.meston-policy-card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  background: #e9ecef;
  color: #495057;
}

/* H6 */
.meston-policy-card-top h6 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 10px;
}

/* Meston policy card top */
.meston-policy-card-top p {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Meston policy card footer */
.meston-policy-card-footer {
  border-top: 1px solid #eef1f6;
  padding: 14px 20px;
  display: flex;
  justify-content: center;
}

/* Meston policy btn view */
.meston-policy-btn-view {
  background: var(--accent-color);
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

/* Hover state — meston policy btn view */
.meston-policy-btn-view:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 134, 224, 0.35);
}




/* =====================================================
   MESTON CAMPUS TOUR
   ===================================================== */

/* Meston campus tour section */
.meston-campus-tour-section {
  background-color: #f9fafc;
  font-family: var(--paragraph);
}

/* Meston campus tour title */
.meston-campus-tour-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 8px 0;
}

/* Meston campus tour subtitle */
.meston-campus-tour-subtitle {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Meston campus tour title bar */
.meston-campus-tour-title-bar {
  width: 70px;
  height: 3px;
  background: var(--accent-color);
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Card */
.meston-campus-tour-card {
  background: #ffffff;
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Hover state — meston campus tour card */
.meston-campus-tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Meston campus tour card top */
.meston-campus-tour-card-top {
  padding: 25px 22px;
  text-align: center;
}

/* Meston campus tour card icon */
.meston-campus-tour-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eef3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
  color: var(--accent-color);
}

/* Meston campus tour card badge */
.meston-campus-tour-card-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  background: #e9ecef;
  color: #495057;
}

/* H6 */
.meston-campus-tour-card-top h6 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 10px;
}

/* Meston campus tour card top */
.meston-campus-tour-card-top p {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.7;
}

/* Meston campus tour card footer */
.meston-campus-tour-card-footer {
  border-top: 1px solid #eef1f6;
  padding: 14px 20px;
  display: flex;
  justify-content: center;
}

/* Meston campus tour btn view */
.meston-campus-tour-btn-view {
  background: var(--accent-color);
  color: #ffffff;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

/* Hover state — meston campus tour btn view */
.meston-campus-tour-btn-view:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(58, 134, 224, 0.35);
}




/* =========================================
MESTON RECENT EVENT SLIDER — FINAL CSS
========================================= */

:root {
--heading-color: #18377a;
--accent-color: #18377a;
}

/* ===== Section ===== */
.meston-recent-event-slider {
padding: 70px 0 50px;
overflow: hidden;
}

/* ===== Header ===== */
.meston-slider-header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
margin-bottom: 40px;
color: var(--accent-color);
}

.meston-slider-header-left {
flex-shrink: 0;
}

.meston-slider-tag {
display: inline-block;
font-size: 12px;
font-weight: 600;
letter-spacing: 2px;
text-transform: uppercase;
color: var(--accent-color);
padding: 4px 14px;
border-radius: 99px;
margin-bottom: 10px;
}

.meston-slider-title {
font-size: 36px;
font-weight: 700;
color: var(--heading-color);
line-height: 1.2;
margin: 0 0 8px;
}

.meston-slider-title span {
color: var(--accent-color);
}

.meston-slider-subtitle {
font-size: 15px;
color: #777;
margin: 0;
}

/* Decorative Line */
.meston-slider-header-right {
flex: 1;
}

.meston-slider-line {
width: 100%;
height: 2px;
background: linear-gradient(to right, #e3e3e3, rgba(24,55,122,0.08));
border-radius: 2px;
}

/* ===== Project Card ===== */
.meston-recent-event-slider .project {
width: 100%;
height: 420px;
border-radius: 12px;
overflow: hidden;
position: relative;
display: block;
background: #f0f0f0;
box-shadow: none !important;
}

/* ===== Image ===== */
.meston-recent-event-slider .project img {
width: 100%;
height: 100%;
object-fit: contain;
object-position: center;
display: block;
transition: transform 0.45s ease;
box-shadow: red;
}

.meston-recent-event-slider .project:hover img {
transform: scale(1.05);
}

/* ===== Navigation Arrows ===== */
.meston-recent-event-slider .swiper-button-prev,
.meston-recent-event-slider .swiper-button-next {
width: 42px !important;
height: 42px !important;
background: rgba(255, 255, 255, 0.96) !important;
border: 1px solid #ddd;
border-radius: 50%;
color: #333 !important;
top: 46%;
transition: background 0.25s, color 0.25s, border-color 0.25s;
box-shadow: none !important;
}

/* Remove focus glow */
.meston-recent-event-slider .swiper-button-prev:focus,
.meston-recent-event-slider .swiper-button-next:focus,
.meston-recent-event-slider .swiper-button-prev:active,
.meston-recent-event-slider .swiper-button-next:active {
box-shadow: none !important;
outline: none !important;
}

/* Hover */
.meston-recent-event-slider .swiper-button-prev:hover,
.meston-recent-event-slider .swiper-button-next:hover {
background: var(--accent-color) !important;
color: #fff !important;
border-color: var(--accent-color) !important;
}

.meston-recent-event-slider .swiper-button-prev::after,
.meston-recent-event-slider .swiper-button-next::after {
font-size: 13px !important;
font-weight: 700;
}

/* ===== Pagination ===== */
.meston-recent-event-slider .swiper-pagination {
position: static;
margin-top: 22px;
text-align: center;
}

.meston-recent-event-slider .swiper-pagination-bullet {
width: 8px;
height: 8px;
background: #ccc;
opacity: 1;
border-radius: 4px;
transition: width 0.3s, background 0.3s;
}

.meston-recent-event-slider .swiper-pagination-bullet-active {
width: 24px;
background: var(--accent-color) !important;
border-radius: 4px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 479.98px) {
.meston-recent-event-slider { padding: 40px 0 30px; }
.meston-slider-title { font-size: 24px; }
.meston-slider-header { flex-direction: column; align-items: flex-start; }
.meston-slider-line { display: none; }
.meston-recent-event-slider .project { height: 240px; }
}

@media (min-width: 480px) and (max-width: 767.98px) {
.meston-slider-title { font-size: 28px; }
.meston-recent-event-slider .project { height: 280px; }
}

@media (min-width: 768px) and (max-width: 991.98px) {
.meston-slider-title { font-size: 30px; }
.meston-recent-event-slider .project { height: 340px; }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
.meston-recent-event-slider .project { height: 400px; }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
.meston-recent-event-slider .project { height: 440px; }
}

@media (min-width: 1400px) {
.meston-recent-event-slider .project { height: 480px; }
}





/* ============================================
   Scholarships & Prizes - Stylesheet
   ============================================ */

/* Reset & Base */


/* ============================================
   Page Wrapper
   ============================================ */
.page-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================================
   Page Header
   ============================================ */
.page-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.page-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.page-header p {
  font-size: 1rem;
  color: #718096;
}

.divider {
  width: 60px;
  height: 4px;
  background:var(--accent-color);
  border-radius: 2px;
  margin: 0.75rem auto 0;
}

/* ============================================
   Section Cards
   ============================================ */
.card-section {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.card-header {
  background:var(--accent-color);
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.card-header h2 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 0;
}

.card-header .header-icon {
  font-size: 1.1rem;
}

/* ============================================
   Tables
   ============================================ */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

thead th {
  background-color: #f8fafc;
  color: #4a5568;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.85rem 1.2rem;
  border-bottom: 2px solid #e2e8f0;
  white-space: nowrap;
  text-align: left;
}

tbody tr {
  border-bottom: 1px solid #f0f4f8;
  transition: background 0.15s ease;
  font-size: 17px;
}

tbody tr:last-child {
  border-bottom: none;
}

tbody tr:hover {
  background-color: #f7f8ff;
}

tbody td {
  padding: 0.9rem 1.2rem;
  color: #2d3748;
  font-size: 0.95rem;
  vertical-align: middle;
}

.prize-name {
  font-weight: 600;
  color: #1a202c;
  font-size: 0.95rem;
}

.criteria-text {
  color: #4a5568;
  font-size: 18px;
  line-height: 1.6;
}

/* ============================================
   Category Badges
   ============================================ */
.badge-cat {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  line-height: 1.5;
}

.cat-sc    { background: #ede9fe; color: #4c1d95; border: 1px solid #c4b5fd; }
.cat-bc    { background: #dbeafe; color: #1e3a8a; border: 1px solid #93c5fd; }
.cat-mbc   { background: #dcfce7; color: #14532d; border: 1px solid #86efac; }
.cat-host  { background: #fef3c7; color: #78350f; border: 1px solid #fcd34d; }
.cat-diff  { background: #fce7f3; color: #831843; border: 1px solid #f9a8d4; }
.cat-cen   { background: #ccfbf1; color: #134e4a; border: 1px solid #5eead4; }
.cat-other { background: #f1f5f9; color: #334155; border: 1px solid #cbd5e1; }

/* ============================================
   Prize Number Circle
   ============================================ */
.prize-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}



/* ============================================
   Responsive — Tablet (max 768px)
   ============================================ */
@media (max-width: 768px) {
  body {
    font-size: 15px;
    padding: 1.25rem 0.75rem;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .card-header h2 {
    font-size: 0.88rem;
  }

  thead th {
    font-size: 0.75rem;
    padding: 0.7rem 0.9rem;
  }

  tbody td {
    padding: 0.75rem 0.9rem;
    font-size: 0.88rem;
  }

  .prize-name {
    font-size: 0.88rem;
  }

  .criteria-text {
    font-size: 0.84rem;
  }

  .badge-cat {
    font-size: 0.72rem;
    padding: 3px 9px;
  }

  .prize-num {
    width: 26px;
    height: 26px;
    font-size: 0.78rem;
  }
}

/* ============================================
   Responsive — Mobile (max 480px)
   ============================================ */
@media (max-width: 480px) {
  body {
    padding: 1rem 0.5rem;
  }

  .page-header h1 {
    font-size: 1.25rem;
  }

  .page-header p {
    font-size: 0.88rem;
  }

  .card-header {
    padding: 0.75rem 1rem;
  }

  .card-header h2 {
    font-size: 0.82rem;
  }

  thead th {
    font-size: 0.7rem;
    padding: 0.6rem 0.75rem;
  }

  tbody td {
    padding: 0.65rem 0.75rem;
    font-size: 0.84rem;
  }

  .badge-cat {
    font-size: 0.68rem;
    padding: 2px 8px;
  }

  .prize-num {
    width: 22px;
    height: 22px;
    font-size: 0.72rem;
  }
}




.scroll-events {
  max-height: 250px;   /* adjust height */
  overflow: hidden;
  position: relative;
}

.scroll-events .benefit-item {
  animation: scrollUp 12s linear infinite;
}

/* Keyframes */
@keyframes scrollUp {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}

.scroll-events {
  max-height: 260px;
  overflow: hidden;
  position: relative;
}

.scroll-events-inner {
  display: flex;
  flex-direction: column;
  animation: scrollLoop 18s linear infinite;
}

/* Smooth infinite scroll */
@keyframes scrollLoop {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

/* Optional: Pause on hover */
.scroll-events:hover .scroll-events-inner {
  animation-play-state: paused;
}





.infrastructure .infra-card {
  border-radius: 15px;
  transition: all 0.3s ease;
}

.infrastructure .infra-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.infrastructure i {
  transition: transform 0.3s ease;
  color: var(--accent-color) !important;
}

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



/*--------------------------------------------------------------
# Whatsapp Section Section
--------------------------------------------------------------*/


/* Chat with us */
.chat-with-us {
  position: fixed; 
  bottom: 13%;    
  right: 13px;     
  z-index: 1000;   
  background-color: #dfc906; 
  padding: 16px;   
  border-radius: 50%; 
  box-shadow: 0 2px 10px rgba(77, 18, 113, 0.2);
  width: 50px;     
  height: 50px;    
  display: flex;   
  justify-content: center; 
  align-items: center; 
  transition: background-color 0.3s; 
}

/* Contact text */
.contact-text {
    font-size: 16px; /* Adjust text size */
}
/* Hover state — chat with us */
.chat-with-us:hover {
  background-color: #d1d805; 
}

/* Contact link */
.contact-link {
  color: white; 
  text-decoration: none; 
  text-align: center; 
}

/* Contact icon */
.contact-icon {
  font-size: 24px; 
}

/* ===============================
# Call Button (Floating)
=============================== */
/* Call us */
.call-us {
  position: fixed;
  bottom: 150px;       /* Distance from bottom */
  right: 15px;        /* Distance from right */
  z-index: 1000;      /* Ensure it’s on top of other content */
}

/* Phone link */
.call-us .phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  height: 51px;
  background-color:#0953a7;  /* Blue color for call */
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Hover Effect */
.call-us .phone-link:hover {
  transform: scale(1.1);
  background-color: #022955; /* Darker blue on hover */
}

/* Mobile adjustments */
@media (max-width: 576px) {
  .call-us {
    bottom: 190px;
    right: 15px;
  }
  .call-us .phone-link {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}



.gallery-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.gallery-card-icon {
  font-size: 30px;
  color: #0d6efd;
  margin-bottom: 10px;
}