
@charset "UTF-8";
:root {
  --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Roboto",  sans-serif;
  --nav-font: "Sora",  sans-serif;
}


:root {
  --background-color: #ffffff;

  --default-color:#131920; 
  --heading-color: #2f4858;

  --accent-color: #8c000b;
  --secondary-color: #f6ba2a;
  --theme-color-1: #2f4858;
  --theme-color-2: #012c60;

  --surface-color: #ffffff;
  --contrast-color: #ffffff;

  --nav-color: #ffffff;
  --nav-hover-color: #ffffff;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #131920; 
  --nav-dropdown-hover-color:#8c000b;


    /* Bootstrap globals */
  --bs-link-color: var(--accent-color);
  --bs-link-hover-color: color-mix(in srgb, var(--accent-color), #000 15%);
  --bs-focus-ring-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  --bs-focus-ring-color: transparent;

  --ticker-speed: 30s;
}

/* Light */
.light-background {
  --background-color: #f5faff;
  --surface-color: #ffffff;
}

/* Dark */
.dark-background {
  --background-color: #060606;

  --default-color: #e6edf3;
  --heading-color: #ffffff;

  --accent-color: #f6ba2a;
  --secondary-color: #f6ba2a;

  --surface-color: #1e2a32;
  --contrast-color: #000000;
}

/* Accent */
.accent-background {
  --background-color: #012c60;

  --default-color: #ffffff;
  --heading-color: #ffffff;

  --accent-color: #f6ba2a;
  --secondary-color: #f6ba2a;

  --surface-color: #2f4858;
  --contrast-color: #012c60;
}

:root {
  scroll-behavior: smooth;
}


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

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

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

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

}
/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
  background-color: var(--surface-color);
}

.navbar-brand,
.navbar-nav .nav-link {
  color: var(--nav-color);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--nav-hover-color);
}

.navbar-toggler {
  border-color: color-mix(in srgb, var(--nav-color), transparent 70%);
}

/* =========================================================
   BUTTONS
   ========================================================= */

   
.btn-primary {
  --bs-btn-bg: var(--accent-color);
  --bs-btn-border-color: var(--accent-color);
  --bs-btn-color: var(--contrast-color);

  --bs-btn-hover-bg: color-mix(in srgb, var(--accent-color), #000 10%);
  --bs-btn-hover-border-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.btn-secondary {
  --bs-btn-bg: var(--secondary-color);
  --bs-btn-border-color: var(--secondary-color);
  --bs-btn-color: #000;

  --bs-btn-hover-bg: color-mix(in srgb, var(--secondary-color), #000 10%);
  --bs-btn-hover-border-color: color-mix(in srgb, var(--secondary-color), #000 10%);
}

.btn-outline-primary {
  --bs-btn-color: var(--accent-color);
  --bs-btn-border-color: var(--accent-color);

  --bs-btn-hover-bg: var(--accent-color);
  --bs-btn-hover-color: var(--contrast-color);
  --bs-btn-focus-shadow-rgb: 49,132,253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--accent-color);
  --bs-btn-active-border-color:  var(--accent-color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg:  var(--accent-color);
  --bs-btn-disabled-border-color: var(--accent-color);

}
.btn:hover, .btn-outline-primary:hover
{
  --bs-btn-hover-bg: var(--accent-color);
  --bs-btn-hover-color: var(--contrast-color);
  --bs-btn-hover-bg: var(--accent-color);
  --bs-btn-hover-color: var(--contrast-color);
  --bs-btn-focus-shadow-rgb: 49,132,253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--accent-color);
  --bs-btn-active-border-color:  var(--accent-color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg:  var(--accent-color);
  --bs-btn-disabled-border-color: var(--accent-color);
}
/* =========================================================
   ALERTS
   ========================================================= */

.alert-primary {
  --bs-alert-bg: color-mix(in srgb, var(--accent-color), transparent 90%);
  --bs-alert-color: var(--accent-color);
  --bs-alert-border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.alert-secondary {
  --bs-alert-bg: color-mix(in srgb, var(--secondary-color), transparent 90%);
  --bs-alert-color: #000;
}

/* =========================================================
   CARDS
   ========================================================= */

.card {
  background-color: var(--surface-color);
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.card-header {
  background-color: color-mix(in srgb, var(--theme-color-1), transparent 92%);
  color: var(--heading-color);
}

/* =========================================================
   TABLES
   ========================================================= */

.table {
  --bs-table-color: var(--default-color);
  --bs-table-bg: transparent;
}

.table thead {
  background-color: color-mix(in srgb, var(--theme-color-2), transparent 90%);
}

.table thead th {
  color: var(--heading-color);
}

/* =========================================================
   FORMS
   ========================================================= */

.form-control {
  background-color: var(--surface-color);
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 75%);
}

/* =========================================================
   BADGES
   ========================================================= */

.badge.bg-primary {
  background-color: var(--accent-color) !important;
}

.badge.bg-secondary {
  background-color: var(--secondary-color) !important;
  color: #000;
}
.badge.rounded-circle {
    background: none !important;
    border: 1px solid var(--accent-color) !important;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--theme-color-1);
}
.text-primary {
    color: var(--accent-color) !important;
}
.header {
  --background-color: #fff;
  --default-color: #1E1E1E;
  --heading-color: #f3c051;
  --accent-color: #8c000b;
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
}

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

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

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--accent-color);
}
.header .title-text
{

  margin:4px 10px;
}
.header .title-text h3
{
  font-size: 1.65rem;
}
.header .title-text h3, .header .title-text h5
{
  color: var(--accent-color);
  font-weight: 600;
   margin-bottom: 0;
}

.header .title-text p
{
  font-size: 0.90rem;
  font-weight: 500;
  margin-bottom: 10px;
}
.header .menu-container {
  border-top: 1px solid #e5e7eb;
  background-color: var(--accent-color);
}

.header .btn-admission,
.header .btn-admission:focus {
  font-size: 16px;
  font-family: var(--nav-font);
  font-weight: 500;
  color: var(--heading-color);
  background: var(--accent-color);
  padding: 8px 25px;
  margin: 5px 0;
  border-radius: 50px;
  transition: 0.3s;
  border: 2px solid color-mix(in srgb, var(--heading-color), transparent 40%);
  display: block;
}

.header .btn-admission:hover,
.header .btn-admission:focus:hover {
  background: var(--heading-color);
  color: var(--default-color);

}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  
  }
 .header .logo img{
  height:90px;
  margin-right: 0;
 }
 
  .header .title-text {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }
.header .title-text h3
{
  font-size: 1.20rem;
}
.header .title-text p
{
  margin-bottom: 10px;
}
  .header .toggle-menu {
    order: 3;
  }
}

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


@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

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

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

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

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

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

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

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

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

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

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul .active,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }
 .navmenu .dropdown .dropdown > a::after {
     content: "▸";
    font-size: 16px;        /* 🔼 increase size */
    font-weight: 600;      /* optional: thicker arrow */
    margin-left: auto;
    padding-left: 8px;
    line-height: 1;
    transition: transform 0.25s ease;
  }
  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    /*  left: -90%; */
     left:90%;
     margin-left: 1px;
    visibility: hidden;
     transform: translateX(10px);

  transition: opacity 0.25s ease, transform 0.25s ease;
  }


  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left:100%;
   /*  left: -100%; */
    visibility: visible;
    transform: translateX(0);
  }

    /* flipped */
  .navmenu .dropdown .dropdown .dropdown ul {
    right: 0;
    left: auto;
    transform: translateX(-10px);
  }

  .navmenu .dropdown .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left:auto;
    right: -150px;
   /*  left: -100%; */
    visibility: visible;
    transform: translateX(0);
  }
}

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

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 52px 16px 16px 16px;
    padding: 10px 0;
    margin: 0;
    border-radius: 8px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

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

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

  .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);
    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: #ffffff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

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

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


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

.footer .footer-content .logo {
  line-height: 1;
  max-width: 100px;
  width: 100%;
  display:block;
  margin: 0 12px;;
}

.footer .footer-content p {
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.footer h4 {
  color: var(--heading-color);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  font-family: var(--heading-font);
}

.footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}
.footer h5 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--heading-font);
  margin-bottom: 10px;
}
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 16px;
  transition: 0.3s;
}

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

.footer .footer-links ul a i {
  margin-right: 8px;
  font-size: 16px;
  color: var(--accent-color);
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer .footer-contact .contact-item .contact-icon {
  width: 30px;
  
   align-items: center;
  justify-content: center;
  margin-right: 8px;
  flex-shrink: 0;
}

.footer .footer-contact .contact-item .contact-icon i {
  color: var(--accent-color);
  font-size: 20px;
}

.footer .footer-contact .contact-item .contact-info p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  line-height: 1.25;
}

.footer .footer-contact .contact-item .contact-info a {
 color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-decoration: none;
   transition: 0.3s;
}

.footer .footer-contact .contact-item .contact-info a:hover {
 color: var(--accent-color);
}

.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  background-color: var(--theme-color-1);
  color: var(--contrast-color);
}

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .copyright p {
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer .footer-bottom .footer-bottom-links {
  text-align: right;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links {
    text-align: center;
    margin-bottom: 10px;
  }
}

.footer .footer-bottom .footer-bottom-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
  font-size: 13px;
  margin-left: 10px;
  margin-right: 10px;
  text-decoration: none;
}

.footer .footer-bottom .footer-bottom-links a:first-child {
  margin-left: 0;
}

.footer .footer-bottom .footer-bottom-links a:hover {
  color: var(--contrast-color);
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links a {
    margin: 0 10px;
  }
}



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

  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px;
  }
}
/*--------------------------------------------------------------*/

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

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

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

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

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

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

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

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


@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

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

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

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

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


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

.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

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

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

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

.section-title p {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# End of Global Styles
--------------------------------------------------------------*/

/* Hero Slider Styles */
  .hero-slider-section {
      position: relative;
      padding: 0;
  }
  
   .hero-slider-section  .swiper {
      width: 100%;
      height: 75vh;
      min-height: 480px;
      overflow: hidden;
      
  }
  
   .hero-slider-section  .swiper-slide {
      position: relative;
      background-color: #000;
  }
  
   .hero-slider-section  .slide-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.9;
  }
     .hero-slider-section  .slide-overlay {
         background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%);
       /*  background: rgba(15, 15, 15, 0.7); */
       /*  background: rgba(0, 0, 0, 0.5); */
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
   }
   .hero-slider-section  .slide-content {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 100px;
      color: white;
      z-index: 2;
  }

  .hero-slider-section   .slide-subtitle {
      font-size: 1.2rem;
      font-weight: 500;
      margin-bottom: 15px;
      color: var(--secondary-color);
      text-transform: uppercase;
      letter-spacing: 1.5px;
  }
  
   .hero-slider-section  .slide-title {
      font-size: 3rem;
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 25px;
       color: var(--contrast-color);
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      max-width: 800px;
  }
  
  .hero-slider-section   .slide-description {
      font-size: 1.2rem;
      line-height: 1.6;
      margin-bottom: 35px;
      max-width: 700px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }
  
   .hero-slider-section  .slide-buttons {
      display: flex;
      gap: 20px;
  }
  
  /* Swiper Navigation */
   .hero-slider-section  .swiper-button-next, .swiper-button-prev {
      color: white;
      background-color: rgba(0, 0, 0, 0.3);
      width: 60px;
      height: 60px;
      border-radius: 50%;
      transition: all 0.3s;
  }
  
   .hero-slider-section  .swiper-button-next:after, .swiper-button-prev:after {
      font-size: 24px;
      font-weight: bold;
  }
  
   .hero-slider-section  .swiper-button-next:hover, .swiper-button-prev:hover {
      background-color: rgba(26, 95, 158, 0.8);
  }
  
  /* Swiper Pagination */
   .hero-slider-section  .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
      background-color: rgba(255, 255, 255, 0.5);
      opacity: 1;
  }
  
   .hero-slider-section  .swiper-pagination-bullet-active {
      background-color: var(--school-yellow);
  }
  
  /* Animations */
@keyframes swiperContentAnimation {
  0% {
    opacity: 0;
    transform: translateX(-25px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-slider-section .slide-content {
  opacity: 0;
}
.hero-slider-section .swiper-slide-active .slide-content {
  animation-name: swiperContentAnimation;
  animation-duration: 0.4s;
  animation-delay: 0.6s;
  animation-fill-mode: both;
}



  /* Responsive Design */
  @media (max-width: 992px) {
     .hero-slider-section    .slide-content {
          padding: 0 50px;
      }
      
    .hero-slider-section     .slide-title {
          font-size: 2.8rem;
      }
      
    .hero-slider-section     .swiper {
          height: 70vh;
          min-height: 500px;
      }
  }
  
  @media (max-width: 768px) {
    .hero-slider-section  .slide-overlay {
         background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%);
   }
     .hero-slider-section    .header-content {
          flex-direction: column;
          text-align: center;
          gap: 15px;
      }
      
     .hero-slider-section    .slide-content {
          padding: 0 30px;
          text-align: center;
          align-items: center;
      }
      
   .hero-slider-section      .slide-title {
          font-size: 2.2rem;
      }
      
     .hero-slider-section    .slide-description {
          font-size: 1.1rem;
      }
      
     .hero-slider-section    .slide-buttons {
          flex-direction: column;
          align-items: center;
      }
      
    .hero-slider-section  .swiper-button-next, .swiper-button-prev {
          width: 50px;
          height: 50px;
      }
      
    .hero-slider-section   .swiper {
          height: 65vh;
          min-height: 450px;
      }
  }
  
  @media (max-width: 480px) {
     .hero-slider-section  .slide-overlay {
         background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%);
    }
    .hero-slider-section     .slide-content {
          padding: 0 20px;
      }
      
    .hero-slider-section     .slide-title {
          font-size: 1.8rem;
      }
      
    .hero-slider-section     .slide-subtitle {
          font-size: 1rem;
      }
      
    .hero-slider-section     .slide-description {
          font-size: 1rem;
      }
      
   .hero-slider-section      .btn {
          padding: 12px 24px;
          font-size: 1rem;
      }
      
    .hero-slider-section     .swiper {
          height: 40vh;
          min-height: 340px;
      }
  }

.ticker-section
{
  padding:10px;
}

.ticker-container{
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  padding: 12px 20px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
/* ===============================
   TICKER STYLES
   =============================== */

.ticker-wrap {
  width: 100%;
  overflow: hidden;
}

.ticker {
  display: flex;
  width: max-content;
  animation: ticker-scroll var(--ticker-speed) linear infinite;
}

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

.ticker ul {
  display: flex;
  margin: 0;
  padding: 0;
}

.ticker li {
  list-style: none;
  padding: 0 30px;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 500;
}

/* ===============================
   SEAMLESS LOOP
   =============================== */

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

/* ===============================
   UX IMPROVEMENTS
   =============================== */

.ticker {
  user-select: none;
  cursor: grab;
}

.ticker.paused {
  animation-play-state: paused !important;
}

/* ===============================
   About Section
   =============================== */
.about-section .about-content p {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;

}

.about-section .about-image, .motto-section .motto-image  {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.about-section .about-image img , .motto-section .motto-image img {
  width: 100%;
  border-radius: 12px;
  transform: scale(1.01);
}

.photo-gallery .swiper-button-prev,
.photo-gallery .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--theme-color-2), transparent 60%);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.photo-gallery .swiper-button-prev::after,
.photo-gallery .swiper-button-next::after {
  font-size: 16px;
  font-weight: 600;
}
.photo-gallery .gallery-item {
    box-sizing: border-box;
    position: relative;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    padding:10px;
  } 

.photo-gallery .gallery-item::before,
.photo-gallery .gallery-item::after {
    content: "";
    position: absolute;
    width: 20px; 
    height: 20px;
    border-color: var(--accent-color); 
    border-style: solid;
    border-width: 0;
    transition: width 0.3s ease, height 0.3s ease;
  }
/* Scale up on hover */
.photo-gallery .gallery-item:hover::before,
.photo-gallery .gallery-item:hover::after {
    width: 50px;
    height: 50px;
}

/* Top-left corner */
.photo-gallery .gallery-item::before {
    top: -2px; /* Adjust for border width of container */
    right: -2px;
    border-top-width: 3px; /* Thickness of the corner border */
    border-right-width: 3px;
}

  /* Bottom-right corner */
.photo-gallery .gallery-item::after {
    bottom: -2px;
    left: -2px;
    border-bottom-width: 3px;
    border-left-width: 3px;
  }
.contact .contact-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

    .contact .contact-content .contact-title h2 {
        font-size: 2rem;
        margin-bottom: 20px;
        font-weight: 700;
        color: var(--accent-color);
    }

.contact .contact-card {
    padding: 14px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

    .contact .contact-card:hover {
        background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    }

    .contact .contact-card .icon-box {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

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

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

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

.contact .contact-map-container {
    background-color: var(--surface-color);
    border-radius: 16px;
    height: 520px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
/*
    Forms
*/
.ast
{
    color:#d00;
}
.rbl input[type="radio"] {
    margin-right: 6px;
}

.rbl label {
    margin-right: 20px;
}
/* Cards */
.icon-card {
    margin-bottom: 30px;
}
.icon-card .card-01 h3 {
    font-size: 1.8rem;
    font-weight: 700;
}

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

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

    .icon-card .card-01 .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;
    }

        .icon-card .card-01 .icon i {
            font-size: 32px;
            color: var(--accent-color);
        }

    .icon-card .card-01 h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .icon-card .card-01 p {
        font-size: 0.95rem;
        margin-bottom: 0;
    }

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

    .icon-card .card-03:hover,
    .icon-card .card-03.active {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    .icon-card .card-03.active {
        background: var(--surface-color);
        border-left: 4px solid var(--accent-color);
    }

        .icon-card .card-03.active .icon {
            background: var(--accent-color);
            color: var(--contrast-color);
        }

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

    .icon-card .card-03 .card-content {
        flex: 1;
    }

    .icon-card .card-03 .card-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
        font-weight: 700;
    }

    .icon-card .card-03 .card-content p {
        font-size: 1rem;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        margin: 0;
    }

    .img-card .card-05 {
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.img-card .card-05 img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: all 0.5s ease;

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

.img-card .card-05 .card-content {
  padding: 20px;
  background-color: var(--surface-color);
}

.img-card .card-05 .card-content h5 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.img-card .card-05 .card-content p {
  font-size: 0.9rem;
  margin-bottom: 0;
}
.img-card .card-05 .card-content a {
  font-size: 0.9rem;
  display: block;
  margin-top: 10px;
}

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

.cms-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    position: relative;
}
.cms-content h2::after {
        content: "";
        position: absolute;
        display: block;
        width: 60px;
        height: 3px;
        background: var(--accent-color);
        left: 0;
        bottom: 0;
        margin: auto;
    }
.internal-header {
    text-align: center !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(/assets/img/svg-bg1.svg);
}
    .internal-header h2 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
        color: var(--heading-color);
        font-family: var(--heading-font);
    }
    .internal-header h2::after {
        content: "";
        position: absolute;
        display: block;
        width: 60px;
        height: 3px;
        background: var(--accent-color);
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
    }

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


.internal-footer {
    text-align: center !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(/assets/img/bottom-bg.svg);
}