
@charset "UTF-8";
 
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
 
/* Fonts */
:root {
  --default-font: "Montserrat", sans-serif !important;
  --heading-font: "Montserrat", sans-serif !important;
  --nav-font: "Montserrat", sans-serif !important;
}

/* 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: #fff; /* Background color for the entire website, including individual sections */
  --default-color: #E74E6C; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0C1322; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #777777; /* 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: #FFF1F4; /* 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: #7D389D; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --whitetrans:rgba(255, 255, 255, 0.64);
--subtext-color:#777777;


}

/* 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: #fff;  /* The default color of the main navmenu links */
  --nav-hover-color: #fff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #010608; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #04415f; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

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

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

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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

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

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

storng {
    font-weight: 700;
}

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

.header .header-container {
    border-bottom: 0px solid var(--background-color);
  transition: all 0.5s;
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}

.header .logo {
 
  position: relative;
  inset: 0 auto 0 0;
  padding: 0 0px;
}

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

.navmenu a .homeicon {
      font-size: 15px;
    line-height: 18px;
    margin: 0;
    padding-right: 8px;
}
.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

.counsl-btn{
  background: #fff;
    border: 1px solid #fff;
    text-align: center;
    padding: 10px !important;
    border-radius: 8px;
    color: var(--default-color) !important;
    font-weight: 500 !important;
    border: 1px solid transparent;
}
.scrolled .counsl-btn{
  border: 1px solid var(--default-color);
}
/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #ffffff;
}
.scrolled .header .navmenu li a{
   color: var(--heading-color);
}
.scrolled .header .navmenu li:hover>a,.scrolled .header .navmenu .active,.scrolled .header .navmenu .active:focus {
        color: var(--default-color);
        font-weight: 700;
    }
.scrolled .header .red-logo{
  display: flex !important ;
  position: relative;
    inset: 0 auto 0 0;
    padding: 0 0px;
}
 
.scrolled .header .logo{
  display: none !important;
}

.footer {
  color: #0C1322;
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
  overflow: hidden;
  padding: 0 20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer .footer-links ul a {
  color: #0C1322;
  display: inline-block;
  line-height: 1;
}

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

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

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

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

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

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

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

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

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

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

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

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

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

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

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

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

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--subtext-color);

  
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}


/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

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

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

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

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
     position: relative;
    overflow: hidden;
    padding: 0px 0 0 0;
    margin: 0px 0 0 0;
}
.hero .hero-wrapper {
  padding: 0px;
}
.hero .hero-wrapper .hero-content h1 {
 font-size: 25px;
font-style: normal;
font-weight: 700;
line-height: 50px;
letter-spacing: 0.44px;
  color:#0c1322;
}
.hero .hero-wrapper .hero-content h1 span{
  color: var(--default-color);
      font-size: 35px;
}

.hero .hero-wrapper .hero-content p {
font-family: Montserrat;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 32px; 
  color: var(--background-color) !important;
}

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

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

.hero .hero-wrapper .hero-content .stats-row .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #0c1322;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.hero .feature-cards-wrapper .feature-card {
background: var(--whitetrans);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 4px 4px 8px 0px rgba(255, 255, 255, 0.24), 2px 2px 10px 0px rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(32px);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.hero .feature-cards-wrapper .feature-card:hover,
.hero .feature-cards-wrapper .feature-card.active {
  transform: translateY(-10px);
   border-left: 4px solid var(--default-color);
  
}

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

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

.hero .feature-cards-wrapper .feature-card .feature-icon {
  width: 60px;
  height: 60px;
  
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

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

.hero .feature-cards-wrapper .feature-card .feature-content h3 {
     font-size: 20px;
    margin-bottom: 0;
    font-weight: 700;
    line-height: 40px;
}

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

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

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

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

.hero .upcoming-event .event-content .event-date {
  display: flex;
  flex-direction: column;
  background: var(--surface-color);
  color: var(--default-color);
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  margin-right: 30px;
  min-width: 100px;
}
.hero .upcoming-event .event-content .event-date .day {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

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

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

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

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

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

.hero .upcoming-event .event-content .event-action .btn-event:hover {
  background: var(--default-color);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.about .about-image .mission-vision .mission,
.about .about-image .mission-vision .vision {
  
  padding: 25px;
 
  border-radius: 12px;
border: 1px solid var(--secondary-color-secondary-100-e-5-d-1-f-1, #E5D1F1);
background: var(--neutral-colors-neutral-50-ffffff, #FFF);
box-shadow: 12px 12px 24px 0 #FFF, 8px 8px 24px 0 rgba(0, 0, 0, 0.10);
}

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

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

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

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

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

.about .core-values .value-card {
  background-color: #fff;
  padding: 1.6rem;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
 box-shadow:0px 0px 10px 1px rgba(19, 16, 34, 0.15);
}

.about .core-values .value-card:hover {
  transform: translateY(-5px);
box-shadow: 0px 0px 4px 1px rgba(94, 4, 255, 0.20);
}


.about .core-values .value-card .value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  margin-bottom: 20px;
}
.about .core-values .value-card:hover .value-icon{
  background-color: var(--default-color);
 
}
.about .core-values .value-card .value-icon i {
  font-size: 32px;
  color: var(--accent-color);
}
.about .core-values .value-card:hover .value-icon i{
 color: #fff !important;
}
.about .core-values .value-card h4 {
  font-size:17px;
  margin-bottom: 15px;
  font-weight: 600;
}

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

/*--------------------------------------------------------------
# Featured Programs Section
--------------------------------------------------------------*/
.featured-programs .program-banner {
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
 box-shadow:0px 0px 10px 1px rgba(19, 16, 34, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.featured-programs .program-banner:hover {
  transform: translateY(-5px);
 box-shadow: 0px 0px 10px 1px rgba(94, 4, 255, 0.20);
}

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

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

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

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

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

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

.featured-programs .banner-info .program-header h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
  color: var(--heading-color);
}

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

.featured-programs .banner-info .program-header .program-stats span {
font-size: 16px;
    color: #676666;
    display: flex;
    align-items: flex-start;
    line-height: 27px;
}

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

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

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

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

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

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

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

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

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

.featured-programs .program-item {
  display: block;
  align-items: center;
  background-color: #fff;

  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--heading-color), transparent 90%);
  /* cursor: pointer; */
}

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

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

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

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

.featured-programs .program-item .item-content {
  flex: 1;
    padding: 20px;
}
.featured-programs .program-item .item-content .program-stats{
display: flex;
    gap: 25px;
}
.featured-programs .program-item .item-content .program-stats span{
  display: flex;
  align-items: flex-start;
}

 .featured-programs .program-item .item-content .program-stats span i {
    margin-right: 8px;
    color: var(--accent-color);
    font-size: 1rem;
}
.featured-programs .program-item .item-content h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.featured-programs .program-item .item-content p {
color: #777;
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 27px;
}

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

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

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

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

/*--------------------------------------------------------------
# Students Life Block Section
--------------------------------------------------------------*/
.students-life-block .hero-image-wrapper {
  position: relative;
}

.students-life-block .hero-image-wrapper .main-image {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.students-life-block .hero-image-wrapper .floating-card {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--surface-color);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.students-life-block .hero-image-wrapper .floating-card .card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b6b 30%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.students-life-block .hero-image-wrapper .floating-card .card-icon i {
  color: var(--contrast-color);
  font-size: 1.5rem;
}

.students-life-block .hero-image-wrapper .floating-card .card-content {
  display: flex;
  flex-direction: column;
}

.students-life-block .hero-image-wrapper .floating-card .card-content .card-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.students-life-block .hero-image-wrapper .floating-card .card-content .card-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.students-life-block .content-wrapper .section-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.students-life-block .content-wrapper h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.students-life-block .content-wrapper h3{
  color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.students-life-block .content-wrapper .lead-text {
font-size: 15px;
    color: #777;
    margin-bottom: 10px;
    line-height: 25px;
}

.students-life-block .info-grid {
  margin-bottom: 2.5rem;
  margin-top:1.5rem;
}

.students-life-block .info-grid .info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.students-life-block .info-grid .info-item .info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), color-mix(in srgb, var(--accent-color), transparent 95%));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.students-life-block .info-grid .info-item .info-icon i {
  font-size: 1.5rem;
  color: #7D389D
;
}

.students-life-block .info-grid .info-item .info-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.students-life-block .info-grid .info-item .info-text strong {
  font-weight: 600;
  color: var(--heading-color);
}

.students-life-block .info-grid .info-item .info-text span {
      font-size: 14px;
    color: #777;
}

.students-life-block .cta-section {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.students-life-block .cta-section .btn-primary {
     background: #E74E6C;
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #E74E6C;
}

.students-life-block .cta-section .btn-primary:hover {
  background: transparent;
  color: #E74E6C;
  transform: translateY(-2px);
}

.students-life-block .cta-section .btn-link {
 display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
        padding: 4px 20px;
    border: 2px solid transparent;
    border-radius:30px; /* Rounded corners always present */
}

.students-life-block .cta-section .btn-link i {
  font-size: 2rem;
  color: var(--accent-color);
}

.students-life-block .cta-section .btn-link:hover {
 border-color: #E74E6C; /* Or a custom hover color */
color: #E74E6C;
}
.students-life-block .activities-showcase {
  margin-top: 4rem;
}

.students-life-block .activities-showcase .featured-activity {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.students-life-block .activities-showcase .featured-activity .activity-media {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.students-life-block .activities-showcase .featured-activity .activity-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.students-life-block .activities-showcase .featured-activity .activity-media:hover img {
  transform: scale(1.1);
}

.students-life-block .activities-showcase .featured-activity .activity-media:hover .activity-overlay {
  opacity: 1;
}

.students-life-block .activities-showcase .featured-activity .activity-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.students-life-block .activities-showcase .featured-activity .activity-overlay .overlay-content {
  color: var(--contrast-color);
}

.students-life-block .activities-showcase .featured-activity .activity-overlay .overlay-content h4 {
  color: var(--contrast-color);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.students-life-block .activities-showcase .featured-activity .activity-overlay .overlay-content p {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.students-life-block .activities-showcase .featured-activity .activity-overlay .overlay-content .overlay-btn {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  text-decoration: none;
  transition: transform 0.3s ease;
}

.students-life-block .activities-showcase .featured-activity .activity-overlay .overlay-content .overlay-btn:hover {
  transform: scale(1.1);
}

.students-life-block .activities-showcase .featured-activity .activity-overlay .overlay-content .overlay-btn i {
  font-size: 1.25rem;
}

.students-life-block .activities-showcase .activities-list {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.students-life-block .activities-showcase .activities-list .activity-item {
  display: flex;
  gap: 1rem;
  background: var(--surface-color);
  padding: 1.25rem;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.students-life-block .activities-showcase .activities-list .activity-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.students-life-block .activities-showcase .activities-list .activity-item .activity-thumb {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.students-life-block .activities-showcase .activities-list .activity-item .activity-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.students-life-block .activities-showcase .activities-list .activity-item .activity-info h6 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.students-life-block .activities-showcase .activities-list .activity-item .activity-info p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  line-height: 1.4;
}

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

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

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

.testimonials .testimonial-item {
  background: #fff;
  border-radius: 20px;
  padding: 0;
  height: 100%;
  /* border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%); */
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
   box-shadow:0px 0px 10px 1px rgba(19, 16, 34, 0.15);
}

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

.testimonials .testimonial-item:hover {
  box-shadow: 0px 0px 4px 1px rgba(94, 4, 255, 0.20);

}

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

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

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

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

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

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

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

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

.testimonials .testimonial-body p {
  font-size: 14px;
  line-height: 20px;
  color:#0C1322;
  margin: 0;
  font-style: italic;
  text-align: center;
  position: relative;
}

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

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

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

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

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

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

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

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

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background: var(--contrast-color);
  transform: scale(1.05);
  color: #fff;
}

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

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

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

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.2);
}
.stats .intro-content {
  margin-bottom: 2rem;
}
.stats h3 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.stats .intro-content .section-heading {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stats .intro-content .section-description {
font-size: 17px;
    line-height: 25px;
    color: #777;
    max-width: 700px;
  margin: 0 auto;
}

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

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

.stats .metric-card:hover {
  transform: translateY(-8px);
 box-shadow: 0px 0px 4px 1px rgba(94, 4, 255, 0.20);
}

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

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

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

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

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

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

.stats .metric-card .metric-header .metric-value {
     font-size: 30px;
    font-weight: 700;
  color: #E74E6C;
  font-family: var(--heading-font);
  line-height: 1;
}

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

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

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

.stats .highlights-section .highlights-content .highlights-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}
.stats .highlights-section .highlights-content .highlights-subtitle {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}
.stats .highlights-section .highlights-content .highlights-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #777;
}

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

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

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

.stats .highlights-section .highlights-content .highlights-features .feature-item span {
  font-size: 1.05rem;
  font-weight: 500;
  color: #0C1322;
}

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

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

.stats .highlights-section .highlights-content .highlights-cta .cta-btn.primary {
  background: #E74E6C;
    color: #fff;
  border: 2px solid transparent;
}

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

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

.stats .highlights-section .highlights-content .highlights-cta .cta-btn.secondary:hover {
  background: #E74E6C;
    color: #fff;
  border: 2px solid transparent;
}

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

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

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

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

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

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item .gallery-overlay h5,
.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item .gallery-overlay h6 {
  color:#fff;
  margin: 0;
  font-weight: 600;
}

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

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

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

.stats .highlights-section .highlights-gallery .gallery-grid .gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}
/*--------------------------------------------------------------
# Recent News Section
--------------------------------------------------------------*/
.recent-news .post-item {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
  gap: 24px;
  height: 100%;
}

.recent-news .post-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.recent-news .post-item:hover .post-title a {
  color: var(--accent-color);
}

.recent-news .post-item:hover .post-img img {
  transform: scale(1.1);
}

.recent-news .post-img {
  flex: 0 0 280px;
  overflow: hidden;
}

.recent-news .post-img img {
  width: 280px;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.recent-news .post-content {
  padding: 24px 24px 24px 0;
}

.recent-news .category {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 16px;
  margin-bottom: 16px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50px;
  transition: 0.3s;
}

.recent-news .category:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.recent-news .post-title {
  margin: 0 0 16px 0;
}

.recent-news .post-title a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 700;
  transition: 0.3s;
}

.recent-news .post-title a:hover {
  color: var(--accent-color);
}

.recent-news .post-description {
  color: var(--default-color);
  margin: 0 0 24px 0;
  font-size: 16px;
  line-height: 1.6;
}

.recent-news .post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.recent-news .post-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.recent-news .post-author img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.recent-news .post-author .author-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--heading-color);
}

.recent-news .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}


/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .event-item { 
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:0px 0px 10px 1px rgba(19, 16, 34, 0.15);
  transition: all 0.4s ease;
  height: 100%;
}

.events .event-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0px 4px 1px rgba(94, 4, 255, 0.20);
}

.events .event-item .event-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

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

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

.events .event-item .event-image .event-date-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--contrast-color);
  color: #fff;
  padding: 8px 12px;
  border-radius: 12px;
  text-align: center;

}

.events .event-item .event-image .event-date-overlay .date {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.events .event-item .event-details {
  padding: 1.5rem;
}

.events .event-item .event-details .event-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.events .event-item .event-details .event-category .badge {
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.events .event-item .event-details .event-category .badge.academic {
  background: linear-gradient(45deg, #e3f2fd, #bbdefb);
  color: #0d47a1;
}

.events .event-item .event-details .event-category .badge.sports {
  background: linear-gradient(45deg, #e8f5e8, #c8e6c9);
  color: #2e7d32;
}

.events .event-item .event-details .event-category .badge.arts {
  background: linear-gradient(45deg, #ffebee, #ffcdd2);
  color: #c62828;
}

.events .event-item .event-details .event-category .badge.community {
  background: linear-gradient(45deg, #fff3e0, #ffe0b2);
  color: #e65100;
}

.events .event-item .event-details .event-category .event-time {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 0.3rem 0.7rem;
  border-radius: 15px;
}

.events .event-item .event-details h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  color: var(--heading-color);
}

.events .event-item .event-details p {
  color: #777;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.events .event-item .event-details .event-info {
   margin-bottom: 1rem; 
  /* min-height: 300px; */
}

.events .event-item .event-details .event-info .info-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: #0C1322;
}

.events .event-item .event-details .event-info .info-row i {
  font-size: 1rem;
  color: var(--accent-color);
  margin-right: 0.6rem;
  width: 16px;
}

.events .event-item .event-details .event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.events .event-item .event-details .event-footer .register-btn {
 background: #E74E6C;
  color:  #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  
}

.events .event-item .event-details .event-footer .register-btn:hover {
  transform: translateY(-2px);
  background: var(--contrast-color);
}



.events .event-item .event-details .event-footer .event-share {
  display: flex;
  gap: 0.5rem;
}

.events .event-item .event-details .event-footer .event-share i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color:  var(--contrast-color);
  color:var(--background-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

.events .event-item .event-details .event-footer .event-share i:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.events .events-navigation {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.events .events-navigation .filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.events .events-navigation .filter-tabs .filter-tab {
  padding: 0.6rem 1.2rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  background-color: transparent;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.events .events-navigation .filter-tabs .filter-tab:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.events .events-navigation .filter-tabs .filter-tab.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.events .events-navigation .view-calendar-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background-color: var(--surface-color);
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.events .events-navigation .view-calendar-btn i {
  font-size: 1.1rem;
}

.events .events-navigation .view-calendar-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}
.events  .cta-section, .core-values .cta-section{
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
}

.events  .cta-section .btn-view, .core-values .cta-section .btn-view{
   background: #fff;
    color: #E74E6C;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #E74E6C;
}
.events  .cta-section .btn-view:hover, .core-values .cta-section .btn-view:hover{
background: #E74E6C;
    color: #fff;
        transform: translateY(-10px);
}


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

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

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

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

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

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

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

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

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

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

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

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

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

.history .about-image .mission-vision .mission,
.history .about-image .mission-vision .vision {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow:0px 0px 10px 1px rgba(19, 16, 34, 0.15);
}
.history .about-image .mission-vision .mission:hover,
.history .about-image .mission-vision .vision:hover {
  box-shadow: 0px 0px 10px 1px rgba(94, 4, 255, 0.20);
}

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

.history .about-image .mission-vision .mission h3:before,
.history .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;
}

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


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

.history .core-values .value-card {
  background-color: #fff;
  padding: 1.6rem;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
 box-shadow:0px 0px 10px 1px rgba(19, 16, 34, 0.15);
}

.history .core-values .value-card:hover {
  transform: translateY(-5px);
box-shadow: 0px 0px 4px 1px rgba(94, 4, 255, 0.20);
}

.history .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;
}
.history .core-values .value-card:hover .value-icon{
  background-color: var(--default-color);
 
}
.history .core-values .value-card .value-icon i {
  font-size: 32px;
  color: var(--accent-color);
}
.history .core-values .value-card:hover .value-icon i{
 color: #fff !important;
}
.history .core-values .value-card h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

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

/*--------------------------------------------------------------
# Leadership Section
--------------------------------------------------------------*/
.leadership .intro-wrapper {
  margin-bottom: 5rem;
}

.leadership .subtitle {
  display: block;
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.leadership .title {
  color: var(--heading-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.leadership .description {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0rem;
}

.leadership .intro-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.leadership .intro-image img {
  width: 100%;
  border-radius: 12px;
  transform: scale(1.01);
}

.leadership .intro-image .experience-badge {
  position: absolute;
  bottom: 30px;
  left: -15px;
  background-color: #fff;
  color: var(--contrast-color);
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.leadership .intro-image .experience-badge .years {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.1;
}

.leadership .intro-image .experience-badge .text {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  max-width: 140px;
}

.leadership .highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.leadership .highlights .highlight-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.leadership .highlights .highlight-item .icon-box {
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.leadership .highlights .highlight-item .icon-box i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.leadership .highlights .highlight-item .content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.leadership .highlights .highlight-item .content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.leadership .leadership-section {
  margin-top: 0rem;
}

.leadership .leadership-section .section-header {
  max-width: 700px;
  margin: 0 auto 3rem;
}

.leadership .leadership-section .section-header .description {
  margin-bottom: 0;
}

.leadership .team-card {
  height: 360px;
  margin-bottom: 15px;
  perspective: 1000px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  overflow: hidden;
}

.leadership .team-card .card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  overflow: hidden;
}

.leadership .team-card .card-front,
.leadership .team-card .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.leadership .team-card .card-front {
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  z-index: 1;
}

.leadership .team-card .card-front .member-image {
  height: 280px;
  overflow: hidden;
}

.leadership .team-card .card-front .member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.leadership .team-card .card-front .member-info {
  padding: 15px;
}

.leadership .team-card .card-front .member-info h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.leadership .team-card .card-front .member-info p {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
}

.leadership .team-card .card-back {
  background: var(--surface-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 25px;
  bottom: -100%;
  z-index: 2;
  transition: bottom 0.3s ease-in-out;
}

.leadership .team-card .card-back h4 {
  font-size: 1.25rem;
  margin-bottom: 5px;
}

.leadership .team-card .card-back .position {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.leadership .team-card .card-back .bio {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.leadership .team-card .card-back .social-links {
  display: flex;
  gap: 10px;
}

.leadership .team-card .card-back .social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 1.1rem;
  transition: all 0.3s;
}

.leadership .team-card .card-back .social-links a:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

.leadership .team-card:hover .card-back {
  bottom: 0;
}
/*--------------------------------------------------------------
# Admissions Section
--------------------------------------------------------------*/
.admissions .section-subtitle {
  color: var(--heading-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.admissions .section-subtitle:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.admissions .application-steps {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  height: 100%;
 box-shadow:0px 0px 10px 1px rgba(19, 16, 34, 0.15);
}
.admissions .application-steps:hover{
  box-shadow: 0px 0px 10px 1px rgba(94, 4, 255, 0.20);

}
.admissions .application-steps .steps-wrapper {
  position: relative;
}

.admissions .application-steps .steps-wrapper:before {
  content: "";
  position: absolute;
  left: 23px;
  top: 15px;
  height: calc(100% - 30px);
  width: 2px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.admissions .application-steps .step-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
  position: relative;
}

.admissions .application-steps .step-item:last-child {
  margin-bottom: 0;
}

.admissions .application-steps .step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--contrast-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.admissions .application-steps .step-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.admissions .application-steps .step-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color:#0C1322;
}

.admissions .requirements-card {
  background-color:#fff;
  padding: 1.6rem;
  border-radius: 10px;
  height: 100%;
  box-shadow:0px 0px 10px 1px rgba(19, 16, 34, 0.15);
}
.admissions .requirements-card:hover{
  box-shadow: 0px 0px 10px 1px rgba(94, 4, 255, 0.20);
}
.admissions .requirements-card .requirements-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.admissions .requirements-card .requirements-list li {
  display: flex;
  align-items: start;
  margin-bottom: 10px;
}

.admissions .requirements-card .requirements-list li i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: -3px;
}

.admissions .requirements-card .requirements-list li span {
  font-size: 0.95rem;
}

.admissions .requirements-card .special-note {
  display: flex;
  align-items: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  padding: 1rem;
  border-radius: 8px;
  font-weight: 500;
}

.admissions .requirements-card .special-note i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-right: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}

.admissions .requirements-card .special-note p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.admissions .tuition-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  height: 100%;
 box-shadow:0px 0px 10px 1px rgba(19, 16, 34, 0.15);
}
.admissions .tuition-card:hover{
  box-shadow: 0px 0px 10px 1px rgba(94, 4, 255, 0.20);

}
.admissions .tuition-card .tuition-table {
  margin-bottom: 1.5rem;
}

.admissions .tuition-card .tuition-table .table {
  margin-bottom: 0;
}

.admissions .tuition-card .tuition-table .table th {
  background-color: color-mix(in srgb, var(--heading-color), transparent 80%);
  color: var(--heading-color);
  font-weight: 600;
  border-bottom: none;
}

.admissions .tuition-card .tuition-table .table td {
  vertical-align: middle;
  color: #0C1322;
  background-color: #fff;
}

.admissions .tuition-card .financial-aid {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  padding: 1.2rem;
  border-radius: 8px;
}

.admissions .tuition-card .financial-aid h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.admissions .tuition-card .financial-aid p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.admissions .tuition-card .financial-aid .btn-aid {
  background-color: var(--default-color);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.admissions .tuition-card .financial-aid .btn-aid:hover {
    background-color: var(--default-color);
}

.admissions .contact-form-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  height: 100%;
   box-shadow:0px 0px 10px 1px rgba(19, 16, 34, 0.15);
}
.admissions .contact-form-card:hover{
  box-shadow: 0px 0px 10px 1px rgba(94, 4, 255, 0.20);
}
.admissions .contact-form-card .form-control,
.admissions .contact-form-card .form-select {
  padding: 0.6rem 1rem;
  color: var(--heading-color);
  background-color: #fbfbfb;
  font-size: 14px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
}

.admissions .contact-form-card .form-control:focus,
.admissions .contact-form-card .form-select:focus {
box-shadow: none !important;
  border-color: var(--default-color);
}

.admissions .contact-form-card .form-control::placeholder,
.admissions .contact-form-card .form-select::placeholder {
  color: color-mix(in srgb, var(--heading-color), transparent 50%);
}

.admissions .contact-form-card .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.admissions .contact-form-card .form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 70%);
}

.admissions .contact-form-card .form-check-label {
  font-size: 0.85rem;
}

.admissions .contact-form-card .loading,
.admissions .contact-form-card .error-message,
.admissions .contact-form-card .sent-message {
  display: none;
  margin-bottom: 15px;
}

.admissions .contact-form-card .btn-request {
  background-color: var(--default-color);
  color: #fff;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  width: 100%;
}

.admissions .contact-form-card .btn-request:hover {
  background-color: var(--default-color);
}

.admissions .deadlines-card {
  background-color: var(--surface-color);
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.admissions .deadlines-card .deadlines-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.admissions .deadlines-card .deadline-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--heading-color), transparent 95%);
  transition: all 0.3s ease;
}

.admissions .deadlines-card .deadline-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.admissions .deadlines-card .deadline-item .deadline-date {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.8rem;
}

.admissions .deadlines-card .deadline-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.admissions .deadlines-card .deadline-item p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.admissions .campus-visit {
  padding-bottom: 1rem;
}

.admissions .campus-visit .visit-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.admissions .campus-visit .visit-image img {
  border-radius: 10px;
}

.admissions .campus-visit .visit-image .image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: color-mix(in srgb, var(--heading-color), transparent 30%);
  color: var(--contrast-color);
  padding: 1rem;
  font-size: 0.9rem;
  text-align: center;
}

.admissions .campus-visit .visit-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1rem;
}
.admissions .campus-visit .visit-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.admissions .campus-visit .visit-content p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.admissions .campus-visit .visit-content .visit-options {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.admissions .campus-visit .visit-content .visit-options li {
  display: flex;
  align-items: center;
  margin-bottom: 0.7rem;
}

.admissions .campus-visit .visit-content .visit-options li i {
  color: var(--accent-color);
  margin-right: 10px;
}

.admissions .campus-visit .visit-content .btn-schedule {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.8rem 2rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-bottom: 1.2rem;
}

.admissions .campus-visit .visit-content .btn-schedule:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
  transform: translateY(-3px);
}

.admissions .campus-visit .visit-content .virtual-option {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.admissions .campus-visit .visit-content .virtual-option span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.admissions .campus-visit .visit-content .virtual-option .virtual-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  font-weight: 500;
}

.admissions .campus-visit .visit-content .virtual-option .virtual-link i {
  transition: 0.3s ease;
}

.admissions .campus-visit .visit-content .virtual-option .virtual-link:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Academics Section
--------------------------------------------------------------*/
.academics .section-heading {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.academics .lead {
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.academics .btn {
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.academics .btn.btn-primary {
  background-color: var(--default-color);
  border-color: var(--default-color);
  color:#fff;
}

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

.academics .btn.btn-outline {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  color: var(--default-color);
}

.academics .btn.btn-outline:hover {
  background-color: transparent;
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.academics .key-metrics .metric-card {
  background-color: var(--surface-color);
  padding: 1.5rem;
  border-radius: 8px;
  height: 100%;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--heading-color), transparent 93%);
  text-align: center;
  transition: all 0.3s ease;
}

.academics .key-metrics .metric-card:hover {
  transform: translateY(-5px);
}

.academics .key-metrics .metric-card h2 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.academics .key-metrics .metric-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--heading-color);
}

.academics .programs-section,
.academics .faculty-section {
  padding-top: 2rem;
}

.academics .programs-section .section-header,
.academics .faculty-section .section-header {
  margin-bottom: 2rem;
}

.academics .programs-section .section-header h3,
.academics .faculty-section .section-header h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.academics .programs-section .section-header p,
.academics .faculty-section .section-header p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.academics .programs-filters {
  padding: 0;
  margin: 0 0 2rem 0;
  list-style: none;
  text-align: center;
}

.academics .programs-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px;
  margin: 0 5px 10px 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.academics .programs-filters li:hover,
.academics .programs-filters li.filter-active {
  background-color: var(--default-color);
  color: var(--surface-color);
}

.academics .program-card {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--heading-color), transparent 95%);
  transition: all 0.3s ease;
  height: 100%;
}

.academics .program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px color-mix(in srgb, var(--heading-color), transparent 92%);
}

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

.academics .program-card .program-img {
  position: relative;
  overflow: hidden;
}

.academics .program-card .program-img img {
  transition: all 0.5s ease;
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.academics .program-card .program-img .program-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 5px 10px;
  font-size: 0.8rem;
  border-radius: 4px;
}

.academics .program-card .program-content {
  padding: 1.5rem;
}

.academics .program-card .program-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.academics .program-card .program-content p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.academics .program-card .program-content .program-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.academics .program-card .program-content .program-meta .meta-item {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.academics .program-card .program-content .program-meta .meta-item i {
  margin-right: 5px;
  color: var(--accent-color);
}

.academics .program-card .program-content .program-link {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 500;
  font-size: 0.9rem;
}

.academics .program-card .program-content .program-link i {
  transition: all 0.3s ease;
  margin-left: 5px;
}

.academics .program-card .program-content .program-link:hover {
  color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.academics .program-card .program-content .program-link:hover i {
  transform: translateX(5px);
}

.academics .faculty-card {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--heading-color), transparent 95%);
  transition: all 0.3s ease;
  height: 100%;
}

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

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

.academics .faculty-card .faculty-img {
  overflow: hidden;
}

.academics .faculty-card .faculty-img img {
  transition: all 0.5s ease;
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.academics .faculty-card .faculty-content {
  padding: 1.25rem;
  text-align: center;
}

.academics .faculty-card .faculty-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.academics .faculty-card .faculty-content .faculty-position {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.academics .faculty-card .faculty-content .faculty-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.academics .faculty-card .faculty-content .faculty-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.academics .faculty-card .faculty-content .faculty-social a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.academics .swiper-wrapper {
  height: auto !important;
}
/*--------------------------------------------------------------
# Students Life Section
--------------------------------------------------------------*/
.students-life .student-life-intro {
  padding: 15px;
}

.students-life .student-life-intro h3 {
  margin-bottom: 20px;
  position: relative;
}

.students-life .student-life-intro h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background-color: var(--accent-color);
}

.students-life .student-life-intro p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.students-life .student-life-intro .btn {
  padding: 10px 25px;
  border-radius: 5px;
  color: var(--accent-color);
  border-color: var(--accent-color);
  transition: all 0.3s ease;
}

.students-life .student-life-intro .btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.students-life .student-organizations h3 {
  margin-bottom: 30px;
  position: relative;
}

.students-life .student-organizations h3:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.students-life .student-organizations .organization-card {
  background-color:#fff;
  padding: 25px;
  border-radius: 8px;
 box-shadow:0px 0px 10px 1px rgba(19, 16, 34, 0.15);

  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.students-life .student-organizations .organization-card:hover {
  transform: translateY(-5px);
 box-shadow: 0px 0px 10px 1px rgba(94, 4, 255, 0.20);
}

.students-life .student-organizations .organization-card .icon-box {
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.students-life .student-organizations .organization-card .icon-box i {
  font-size: 28px;
  color: var(--accent-color);
}

.students-life .student-organizations .organization-card h5 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.students-life .student-organizations .organization-card p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.students-life .student-organizations .organization-card .badge {
  background-color: color-mix(in srgb, var(--heading-color), transparent 80%);
  color: var(--heading-color);
  padding: 5px 12px;
  border-radius: 25px;
  font-weight: normal;
  font-size: 0.75rem;
}

.students-life .athletics-programs h3 {
  margin-bottom: 30px;
  position: relative;
}

.students-life .athletics-programs h3:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.students-life .athletics-programs .swiper-wrapper {
  height: auto !important;
}

.students-life .athletics-programs .athletics-card {
  border-radius: 8px;
  overflow: hidden;
   box-shadow:0px 0px 10px 1px rgba(19, 16, 34, 0.15);
}
.students-life .athletics-programs .athletics-card:hover{
   box-shadow: 0px 0px 10px 1px rgba(94, 4, 255, 0.20);

}
.students-life .athletics-programs .athletics-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.students-life .athletics-programs .athletics-card .athletics-content {
  padding: 20px;
  background-color: #fff;
}

.students-life .athletics-programs .athletics-card .athletics-content h5 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.students-life .athletics-programs .athletics-card .athletics-content p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.students-life .athletics-programs .swiper {
  padding: 0 15px;
}

.students-life .athletics-programs .swiper-slide {
  padding-bottom: 60px;
}

.students-life .athletics-programs .swiper-pagination {
  margin-top: 20px;
}

.students-life .athletics-programs .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  opacity: 1;
}

.students-life .athletics-programs .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  width: 12px;
  height: 12px;
}

.students-life .campus-facilities h3 {
  margin-bottom: 30px;
  position: relative;
}

.students-life .campus-facilities h3:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.students-life .campus-facilities .facility-card {
  border-radius: 8px;
  overflow: hidden;
 box-shadow:0px 0px 10px 1px rgba(19, 16, 34, 0.15);
  height: 100%;
  transition: transform 0.3s ease;
   background-color: #fff;
}

.students-life .campus-facilities .facility-card:hover {
  transform: translateY(-5px);
   box-shadow: 0px 0px 10px 1px rgba(94, 4, 255, 0.20);
}

.students-life .campus-facilities .facility-card img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.students-life .campus-facilities .facility-card .facility-info {
  padding: 16px;
  background-color: #fff;
}

.students-life .campus-facilities .facility-card .facility-info h5 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.students-life .campus-facilities .facility-card .facility-info p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.students-life .support-services h3 {
  margin-bottom: 30px;
  position: relative;
}

.students-life .support-services h3:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.students-life .support-services .service-card {
  padding: 30px;
  background-color:#fff;
  border-radius: 8px;
   box-shadow:0px 0px 10px 1px rgba(19, 16, 34, 0.15);
  height: 100%;
  transition: all 0.3s ease;
}

.students-life .support-services .service-card:hover {
  
 box-shadow: 0px 0px 10px 1px rgba(94, 4, 255, 0.20);
}

.students-life .support-services .service-card:hover .icon-box {
  background-color: var(--default-color);
}

.students-life .support-services .service-card:hover .icon-box i {
  color: #fff;
}

.students-life .support-services .service-card .icon-box {
  width: 65px;
  height: 65px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.students-life .support-services .service-card .icon-box i {
  font-size: 30px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.students-life .support-services .service-card h5 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.students-life .support-services .service-card p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.students-life .support-services .service-card .service-link {
  color: var(--accent-color);
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.students-life .support-services .service-card .service-link i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.students-life .support-services .service-card .service-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.students-life .support-services .service-card .service-link:hover i {
  transform: translateX(5px);
}

.students-life .student-gallery h3 {
  margin-bottom: 30px;
  position: relative;
}

.students-life .student-gallery h3:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.students-life .student-gallery .gallery-item {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
}

.students-life .student-gallery .gallery-item img {
  transition: all 0.4s ease;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.students-life .student-gallery .gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.students-life .student-gallery .gallery-item .gallery-overlay i {
  color: var(--contrast-color);
  font-size: 2rem;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

.students-life .student-gallery .gallery-item:hover img {
  transform: scale(1.05);
}

.students-life .student-gallery .gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.students-life .student-gallery .gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

.students-life .cta-block {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 40px;
  border-radius: 10px;
}

.students-life .cta-block h3 {
  color: var(--heading-color);
  margin-bottom: 15px;
}

.students-life .cta-block p {
  margin-bottom: 0;
  opacity: 0.9;
}

.students-life .cta-block .btn {
  padding: 10px 24px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.students-life .cta-block .btn.btn-primary {
  background-color: var(--default-color);
  border-color: var(--default-color);
  color:#fff;
}

.students-life .cta-block .btn.btn-primary:hover {
  background-color: #fff;
   color: var(--default-color);
}

.students-life .cta-block .btn.btn-outline-primary {
  color: var(--contrast-color);
    background-color: #fff;
  border-color: var(--contrast-color);
}

.students-life .cta-block .btn.btn-outline-primary:hover {
  background-color: var(--contrast-color);
  color: #fff;
}

/*--------------------------------------------------------------
# Faculty  Staff Section
--------------------------------------------------------------*/
.faculty--staff .faculty-search {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.faculty--staff .faculty-search .input-group .form-control {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.faculty--staff .faculty-search .input-group .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.faculty--staff .faculty-search .input-group .form-control:focus {
  box-shadow: none;
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
}

.faculty--staff .faculty-search .input-group .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0 1.5rem;
  transition: all 0.3s ease;
}

.faculty--staff .faculty-search .input-group .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
}

.faculty--staff .faculty-search .search-filters {
  gap: 0.8rem;
}

.faculty--staff .faculty-search .search-filters .filter-item {
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  cursor: pointer;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  transition: all 0.3s ease;
}

.faculty--staff .faculty-search .search-filters .filter-item:hover {
  background-color: #e9e9e9;
}

.faculty--staff .faculty-search .search-filters .filter-item.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.faculty--staff .faculty-grid .faculty-card {
  background-color: var(--surface-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.faculty--staff .faculty-grid .faculty-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
}

.faculty--staff .faculty-grid .faculty-card:hover .faculty-image .social-links {
  opacity: 1;
}

.faculty--staff .faculty-grid .faculty-card .faculty-image {
  position: relative;
  overflow: hidden;
}

.faculty--staff .faculty-grid .faculty-card .faculty-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.faculty--staff .faculty-grid .faculty-card .faculty-image .social-links {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 1.5rem 1rem 0.5rem;
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

.faculty--staff .faculty-grid .faculty-card .faculty-image .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.faculty--staff .faculty-grid .faculty-card .faculty-image .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faculty--staff .faculty-grid .faculty-card .faculty-info {
  padding: 1.5rem;
}

.faculty--staff .faculty-grid .faculty-card .faculty-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.faculty--staff .faculty-grid .faculty-card .faculty-info .position {
  color: var(--accent-color);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.faculty--staff .faculty-grid .faculty-card .faculty-info .department {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.faculty--staff .faculty-grid .faculty-card .faculty-info .research-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.faculty--staff .faculty-grid .faculty-card .faculty-info .research-tags span {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: color-mix(in srgb, var(--accent-color), black 20%);
}

.faculty--staff .faculty-grid .faculty-card .faculty-info .profile-link {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid var(--accent-color);
  border-radius: 30px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  color: var(--accent-color);
}

.faculty--staff .faculty-grid .faculty-card .faculty-info .profile-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.faculty--staff .pagination-container .pagination .page-item {
  margin: 0 0.2rem;
}

.faculty--staff .pagination-container .pagination .page-item .page-link {
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--default-color);
  transition: all 0.3s ease;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.faculty--staff .pagination-container .pagination .page-item .page-link:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.faculty--staff .pagination-container .pagination .page-item.active .page-link {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.faculty--staff .pagination-container .pagination .page-item.disabled .page-link {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  background-color: transparent;
}

/*--------------------------------------------------------------
# Campus Facilities Section
--------------------------------------------------------------*/
.campus-facilities .hero-intro {
  padding: 3rem 0 5rem;
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 2%) 0%, var(--surface-color) 100%);
  border-radius: 20px;
  margin-bottom: 4rem;
}

.campus-facilities .hero-intro .content-wrapper {
  padding: 2rem;
}

.campus-facilities .hero-intro .content-wrapper .badge-highlight {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.campus-facilities .hero-intro .content-wrapper h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.campus-facilities .hero-intro .content-wrapper .lead-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.campus-facilities .hero-intro .content-wrapper .feature-highlights {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.campus-facilities .hero-intro .content-wrapper .feature-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.campus-facilities .hero-intro .content-wrapper .feature-highlights .highlight-item i {
  font-size: 2.5rem;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 15px;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.campus-facilities .hero-intro .content-wrapper .feature-highlights .highlight-item .number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  display: block;
  line-height: 1;
}

.campus-facilities .hero-intro .content-wrapper .feature-highlights .highlight-item .label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.campus-facilities .hero-intro .hero-visual {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.campus-facilities .hero-intro .hero-visual .image-stack {
  position: relative;
  height: 100%;
}

.campus-facilities .hero-intro .hero-visual .image-stack .primary-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.campus-facilities .hero-intro .hero-visual .image-stack .floating-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--surface-color);
  padding: 1.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.campus-facilities .hero-intro .hero-visual .image-stack .floating-card i {
  font-size: 1.8rem;
  color: var(--accent-color);
}

.campus-facilities .hero-intro .hero-visual .image-stack .floating-card span {
  font-weight: 600;
  color: var(--heading-color);
}

.campus-facilities .facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.campus-facilities .facilities-grid .category-card {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

.campus-facilities .facilities-grid .category-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b6b 30%));
  z-index: 1;
}

.campus-facilities .facilities-grid .category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.campus-facilities .facilities-grid .category-card .card-header {
  padding: 2rem 2rem 1rem;
  text-align: center;
}

.campus-facilities .facilities-grid .category-card .card-header .icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b6b 20%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.campus-facilities .facilities-grid .category-card .card-header .icon-wrapper i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.campus-facilities .facilities-grid .category-card .card-header h3 {
  font-weight: 700;
  margin: 0;
  font-size: 1.4rem;
}

.campus-facilities .facilities-grid .category-card .card-content {
  padding: 0 2rem;
}

.campus-facilities .facilities-grid .category-card .card-content .facility-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.campus-facilities .facilities-grid .category-card .card-content .facility-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.campus-facilities .facilities-grid .category-card .card-content .facility-list .facility-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
}

.campus-facilities .facilities-grid .category-card .card-content .facility-list .facility-item i {
  color: var(--accent-color);
  margin-right: 10px;
  font-size: 1.1rem;
}

.campus-facilities .facilities-grid .category-card .card-content .facility-list .facility-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.campus-facilities .facilities-grid .category-card .card-footer {
  padding: 1.5rem 2rem 2rem;
}

.campus-facilities .facilities-grid .category-card .card-footer .explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

.campus-facilities .facilities-grid .category-card .card-footer .explore-btn i {
  transition: transform 0.3s ease;
}

.campus-facilities .facilities-grid .category-card .card-footer .explore-btn:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.campus-facilities .facilities-grid .category-card .card-footer .explore-btn:hover i {
  transform: translateX(5px);
}

.campus-facilities .facilities-grid .category-card:hover .facility-image img {
  transform: scale(1.05);
}

.campus-facilities .campus-tour-section {
  padding: 0rem 0;
  background: #f8f8f8;
  border-radius: 25px;
  /* margin-bottom: 5rem; */
}

.campus-facilities .campus-tour-section .tour-content {
  padding: 2rem;
}

.campus-facilities .campus-tour-section .tour-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.campus-facilities .campus-tour-section .tour-content>p {
  font-size: 1.1rem;
  color: #0C1322;
  margin-bottom: 2.5rem;
}

.campus-facilities .campus-tour-section .tour-content .tour-features {
  margin-bottom: 2.5rem;
}

.campus-facilities .campus-tour-section .tour-content .tour-features .tour-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.campus-facilities .campus-tour-section .tour-content .tour-features .tour-feature i {
  font-size: 1.5rem;
  color:#fff;
  margin-top: 5px;
  background:var(--default-color);
  padding: 12px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.campus-facilities .campus-tour-section .tour-content .tour-features .tour-feature strong {
  display: block;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.campus-facilities .campus-tour-section .tour-content .tour-features .tour-feature p {
  margin: 0;
  font-size: 0.9rem;
  color: #777;
}

.campus-facilities .campus-tour-section .tour-content .tour-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.campus-facilities .campus-tour-section .tour-content .tour-actions .btn-primary {
  background: var(--default-color);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.campus-facilities .campus-tour-section .tour-content .tour-actions .btn-primary:hover {
  background: var(--default-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.campus-facilities .campus-tour-section .tour-content .tour-actions .btn-outline {
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.campus-facilities .campus-tour-section .tour-content .tour-actions .btn-outline:hover {
  background: var(--default-color);
  color: #fff;
  transform: translateY(-2px);
   border: 2px solid var(--default-color);
}

.campus-facilities .campus-tour-section .tour-visual .video-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.campus-facilities .campus-tour-section .tour-visual .video-container video {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.campus-facilities .campus-tour-section .tour-visual .video-container .play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.campus-facilities .campus-tour-section .tour-visual .video-container .play-overlay .play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  border: none;
  color: var(--contrast-color);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.campus-facilities .campus-tour-section .tour-visual .video-container .play-overlay .play-btn:hover {
  background: var(--accent-color);
  transform: scale(1.1);
}

.campus-facilities .highlights-carousel {
  margin-bottom: 5rem;
}

.campus-facilities .highlights-carousel .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.campus-facilities .highlights-carousel .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.campus-facilities .highlights-carousel .section-header h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b6b 30%));
  border-radius: 2px;
}

.campus-facilities .highlights-carousel .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 600px;
  margin: 0 auto;
}

.campus-facilities .highlights-carousel .campus-slider .swiper-wrapper {
  height: auto !important;
}

.campus-facilities .highlights-carousel .campus-slider .highlight-card {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  height: 100%;
}

.campus-facilities .highlights-carousel .campus-slider .highlight-card .card-image {
  position: relative;
  overflow: hidden;
}

.campus-facilities .highlights-carousel .campus-slider .highlight-card .card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.campus-facilities .highlights-carousel .campus-slider .highlight-card .card-image .image-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
}

.campus-facilities .highlights-carousel .campus-slider .highlight-card .card-image .image-overlay .category-tag {
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  color: var(--contrast-color);
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.campus-facilities .highlights-carousel .campus-slider .highlight-card .card-body {
  padding: 1.5rem;
}

.campus-facilities .highlights-carousel .campus-slider .highlight-card .card-body h4 {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.campus-facilities .highlights-carousel .campus-slider .highlight-card .card-body p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.campus-facilities .highlights-carousel .campus-slider .highlight-card .card-body .card-stats {
  display: flex;
  gap: 1rem;
}

.campus-facilities .highlights-carousel .campus-slider .highlight-card .card-body .card-stats .stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.campus-facilities .highlights-carousel .campus-slider .highlight-card .card-body .card-stats .stat i {
  color: var(--accent-color);
  font-size: 1rem;
}

.campus-facilities .highlights-carousel .campus-slider .highlight-card:hover .card-image img {
  transform: scale(1.1);
}

.campus-facilities .highlights-carousel .campus-slider .swiper-pagination {
  margin-top: 2rem;
}

.campus-facilities .highlights-carousel .campus-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
  opacity: 1;
}

.campus-facilities .highlights-carousel .campus-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.2);
}

.campus-facilities .highlights-carousel .campus-slider .swiper-button-prev,
.campus-facilities .highlights-carousel .campus-slider .swiper-button-next {
  color: var(--accent-color);
  background: var(--surface-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.campus-facilities .highlights-carousel .campus-slider .swiper-button-prev:hover,
.campus-facilities .highlights-carousel .campus-slider .swiper-button-next:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.campus-facilities .highlights-carousel .campus-slider .swiper-button-prev:after,
.campus-facilities .highlights-carousel .campus-slider .swiper-button-next:after {
  font-size: 1.2rem;
  font-weight: 700;
}

.campus-facilities .map-integration .map-sidebar {
  background: var(--surface-color);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.campus-facilities .map-integration .map-sidebar h3 {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.campus-facilities .map-integration .map-sidebar>p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.campus-facilities .map-integration .map-sidebar .location-categories {
  margin-bottom: 2.5rem;
}

.campus-facilities .map-integration .map-sidebar .location-categories .category-filter {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.campus-facilities .map-integration .map-sidebar .location-categories .category-filter i {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.campus-facilities .map-integration .map-sidebar .location-categories .category-filter span {
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.campus-facilities .map-integration .map-sidebar .location-categories .category-filter:hover {
  background: color-mix(in srgb, var(--surface-color), var(--accent-color) 5%);
}

.campus-facilities .map-integration .map-sidebar .location-categories .category-filter.active {
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.campus-facilities .map-integration .map-sidebar .location-categories .category-filter.active i,
.campus-facilities .map-integration .map-sidebar .location-categories .category-filter.active span {
  color: var(--accent-color);
}

.campus-facilities .map-integration .map-sidebar .map-actions .action-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  color: var(--accent-color);
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.campus-facilities .map-integration .map-sidebar .map-actions .action-link:last-child {
  border-bottom: none;
}

.campus-facilities .map-integration .map-sidebar .map-actions .action-link i {
  font-size: 1.1rem;
}

.campus-facilities .map-integration .map-sidebar .map-actions .action-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-left: 10px;
}

.campus-facilities .map-integration .map-embed {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.campus-facilities .map-integration .map-embed iframe {
  border: none;
}

.campus-facilities .map-integration .map-embed .map-overlay-info {
  position: absolute;
  top: 20px;
  left: 20px;
}

.campus-facilities .map-integration .map-embed .map-overlay-info .info-card {
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  padding: 1.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.campus-facilities .map-integration .map-embed .map-overlay-info .info-card h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.campus-facilities .map-integration .map-embed .map-overlay-info .info-card p {
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.9rem;
}

.campus-facilities .map-integration .map-embed .map-overlay-info .info-card .quick-stats {
  display: flex;
  gap: 1rem;
}

.campus-facilities .map-integration .map-embed .map-overlay-info .info-card .quick-stats span {
  font-size: 0.85rem;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  gap: 5px;
}

.campus-facilities .map-integration .map-embed .map-overlay-info .info-card .quick-stats span i {
  font-size: 0.9rem;
}

/*--------------------------------------------------------------
# News Hero Section
--------------------------------------------------------------*/
.news-hero .featured-post {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.news-hero .featured-post img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.news-hero .featured-post .post-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  padding: 2rem;
  color: var(--contrast-color);
}

.news-hero .featured-post .post-content {
  max-width: 800px;
}

.news-hero .featured-post .post-title {
  font-size: 2rem;
  margin: 1rem 0;
}

.news-hero .featured-post .post-title a {
  color: var(--contrast-color);
}

.news-hero .featured-post .post-title a:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.news-hero .featured-post .post-excerpt {
  font-size: 1rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.news-hero .secondary-post {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}

.news-hero .secondary-post .post-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.news-hero .secondary-post .post-content {
  padding: 1.5rem;
}

.news-hero .secondary-post .post-title {
  font-size: 1.25rem;
  margin: 0.5rem 0;
  line-height: 1.4;
}

.news-hero .secondary-post .post-title a {
  color: var(--heading-color);
}

.news-hero .secondary-post .post-title a:hover {
  color: var(--accent-color);
}

.news-hero .news-tabs {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
}

.news-hero .news-tabs .nav-tabs {
  border: none;
  padding: 1rem 1rem 0;
  gap: 0.5rem;
  background-color: var(--surface-color);
}

.news-hero .news-tabs .nav-tabs .nav-link {
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--default-color);
  font-weight: 500;
  border-radius: 20px;
  transition: 0.3s;
}

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

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

.news-hero .news-tabs .tab-content {
  padding: 1.5rem;
}

.news-hero .tab-post {
  padding: 1rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.news-hero .tab-post:first-child {
  padding-top: 0;
}

.news-hero .tab-post:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.news-hero .tab-post img {
  border-radius: 8px;
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.news-hero .tab-post .post-content {
  padding-left: 1rem;
}

.news-hero .tab-post .post-title {
  font-size: 0.9375rem;
  margin: 0.5rem 0;
  line-height: 1.4;
}

.news-hero .tab-post .post-title a {
  color: var(--heading-color);
}

.news-hero .tab-post .post-title a:hover {
  color: var(--accent-color);
}

.news-hero .category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-right: 0.5rem;
}

.news-hero .date {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.news-hero .post-author {
  font-size: 0.8125rem;
  margin-top: 0.5rem;
}

.news-hero .post-author span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.news-hero .post-author a {
  color: var(--accent-color);
  font-weight: 500;
}

.news-hero .post-author a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}


/*--------------------------------------------------------------
# News Posts Section
--------------------------------------------------------------*/
.news-posts article {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.news-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.news-posts .post-category {
  font-size: 16px;
  color: #777;
  margin-bottom: 10px;
}

.news-posts .title {
  font-size: 18px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 0px 0;
}

.news-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.news-posts .title a:hover {
  color: var(--accent-color);
}

.news-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.news-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.news-posts .post-date {
  font-size: 14px;
  color: #777;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
  padding-top: 0;
}

.pagination-2 nav {
  position: relative;
}

.pagination-2 ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-2 li {
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.pagination-2 li.ellipsis {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 8px 16px;
  user-select: none;
}

.pagination-2 li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px 16px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 4px color-mix(in srgb, var(--default-color), transparent 90%);
}

.pagination-2 li a.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.pagination-2 li a:hover:not(.active) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-1px);
  box-shadow: 0 3px 6px color-mix(in srgb, var(--default-color), transparent 85%);
}

.pagination-2 li a i {
  font-size: 14px;
}

.pagination-2 li a span {
  margin: 0 4px;
}
/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.blog-details .article-header {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.blog-details .article-header .meta-categories {
  margin-bottom: 1.5rem;
}

.blog-details .article-header .meta-categories .category {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  margin: 0 0.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.blog-details .article-header .meta-categories .category:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.blog-details .article-header .title {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--heading-color);
}

.blog-details .article-header .article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.blog-details .article-header .article-meta .author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-details .article-header .article-meta .author .author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-details .article-header .article-meta .author .author-info {
  text-align: left;
}

.blog-details .article-header .article-meta .author .author-info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.blog-details .article-header .article-meta .author .author-info span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9rem;
}

.blog-details .article-header .article-meta .post-info {
  display: flex;
  gap: 1.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.blog-details .article-header .article-meta .post-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}


.blog-details .article-featured-image {
  margin: 0 -2rem 3rem;
  height: 500px;
  overflow: hidden;
  border-radius: 16px;
}

.blog-details .article-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-details .article-wrapper {
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: 3rem;
  position: relative;
}
.blog-details .article-wrapper .table-of-contents {
  position: sticky;
  top: 100px;
  height: fit-content;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.blog-details .article-wrapper .table-of-contents h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

.blog-details .article-wrapper .table-of-contents nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-details .article-wrapper .table-of-contents nav ul li {
  margin-bottom: 0.75rem;
}

.blog-details .article-wrapper .table-of-contents nav ul li a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  padding-left: 1rem;
  position: relative;
}

.blog-details .article-wrapper .table-of-contents nav ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent-color);
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.blog-details .article-wrapper .table-of-contents nav ul li a:hover,
.blog-details .article-wrapper .table-of-contents nav ul li a.active {
  color: var(--heading-color);
}

.blog-details .article-wrapper .table-of-contents nav ul li a:hover::before,
.blog-details .article-wrapper .table-of-contents nav ul li a.active::before {
  opacity: 1;
}

.blog-details .article-wrapper .article-content {
  font-size: 1.15rem;
  line-height: 1.8;
}

.blog-details .article-wrapper .article-content .content-section {
  margin-bottom: 4rem;
}

.blog-details .article-wrapper .article-content .content-section .lead {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--heading-color);
  margin-bottom: 2rem;
}

.blog-details .article-wrapper .article-content .content-section h2 {
  font-size: 2.2rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote {
  margin: 3rem 0;
  padding: 3rem;
  background: var(--surface-color);
  border-radius: 12px;
  position: relative;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote::before {
  content: "“";
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  font-family: serif;
  line-height: 1;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote blockquote {
  padding-left: 3rem;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote blockquote p {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote blockquote cite {
  font-style: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption.right {
  float: right;
  max-width: 450px;
  margin: 0 0 2rem 2rem;
}


.blog-details .article-wrapper .article-content .content-section .image-with-caption img {
  width: 100%;
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption figcaption {
  padding: 1rem;
  background: var(--surface-color);
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-wrapper .article-content .content-section .feature-points {
  display: grid;
  gap: 2rem;
  margin: 2rem 0;
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point i {
  font-size: 2rem;
  color: var(--accent-color);
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point h4 {
  margin: 0 0 0.5rem;
  color: var(--heading-color);
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point p {
  margin: 0;
  font-size: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid {
  margin: 2rem 0;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card .icon {
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card .icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card ul {
  padding-left: 1.2rem;
  margin: 0;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card ul li {
  margin-bottom: 0.5rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.blog-details .article-wrapper .article-content .content-section .key-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle {
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  position: relative;
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle .number {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle h4 {
  color: var(--heading-color);
  margin: 1rem 0;
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle p {
  margin: 0;
  font-size: 0.95rem;
}

.blog-details .article-wrapper .article-content .content-section .info-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  margin: 2rem 0;
}

.blog-details .article-wrapper .article-content .content-section .info-box .icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
}

.blog-details .article-wrapper .article-content .content-section .info-box .content h4 {
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.blog-details .article-wrapper .article-content .content-section .info-box .content p {
  margin: 0;
}

.blog-details .article-wrapper .article-content .content-section .future-trends {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}


.blog-details .article-wrapper .article-content .content-section .future-trends .trend {
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend:hover {
  transform: translateY(-5px);
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend p {
  margin: 0;
  font-size: 0.95rem;
}

.blog-details .article-footer {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .article-footer h4 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.blog-details .article-footer .share-article {
  margin-bottom: 3rem;
}

.blog-details .article-footer .share-article .share-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.blog-details .article-footer .share-article .share-buttons .share-button {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: var(--surface-color);
  border-radius: 30px;
  color: var(--heading-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .article-footer .share-article .share-buttons .share-button i {
  font-size: 1.2rem;
}

.blog-details .article-footer .share-article .share-buttons .share-button:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.blog-details .article-footer .share-article .share-buttons .share-button.twitter:hover {
  background: #1DA1F2;
}

.blog-details .article-footer .share-article .share-buttons .share-button.facebook:hover {
  background: #4267B2;
}

.blog-details .article-footer .share-article .share-buttons .share-button.linkedin:hover {
  background: #0077B5;
}

.blog-details .article-footer .article-tags .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.blog-details .article-footer .article-tags .tags .tag {
  padding: 0.5rem 1rem;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .article-footer .article-tags .tags .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Events Extended Section
--------------------------------------------------------------*/
.events-extended .events-list {
  margin-bottom: 30px;
}

.events-extended .events-list .event-item {
  display: flex;
  margin-bottom: 30px;
  border-radius: 8px;
box-shadow:0px 0px 10px 1px rgba(19, 16, 34, 0.15);
  overflow: hidden;
  background-color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.events-extended .events-list .event-item:hover {
  transform: translateY(-5px);
   box-shadow: 0px 0px 4px 1px rgba(94, 4, 255, 0.20);
}

.events-extended .events-list .event-item .event-date {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 80px;
  padding: 20px;
  background-color: #f7f7f7;
  color: var(--contrast-color);
  text-align: center;
}

.events-extended .events-list .event-item .event-date .day {
  font-family: var(--heading-font);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.events-extended .events-list .event-item .event-date .month {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.events-extended .events-list .event-item .event-content {
  padding: 25px;
  flex: 1;
}

.events-extended .events-list .event-item .event-content .event-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.events-extended .events-list .event-item .event-content .event-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  color: #777;
  font-size: 14px;
}

.events-extended .events-list .event-item .event-content .event-meta span {
  display: inline-flex;
  align-items: center;
}

.events-extended .events-list .event-item .event-content .event-meta span i {
  margin-right: 8px;
  font-size: 16px;
  color: var(--accent-color);
}

.events-extended .events-list .event-item .event-content .event-description {
  margin-bottom: 15px;
  color:#777;
  line-height: 1.6;
}

.events-extended .events-list .event-item .event-content .btn-event-details {
  display: inline-flex;
  align-items: center;
  color: var(--accent-color);
  font-weight: 600;
  transition: all 0.3s;
}

.events-extended .events-list .event-item .event-content .btn-event-details i {
  margin-left: 5px;
  transition: transform 0.3s;
}

.events-extended .events-list .event-item .event-content .btn-event-details:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.events-extended .events-list .event-item .event-content .btn-event-details:hover i {
  transform: translateX(5px);
}

.events-extended .events-list .events-pagination {
  margin-top: 40px;
}

.events-extended .events-list .events-pagination .page-link {
  margin: 0 5px;
  border-radius: 5px;
  color: var(--default-color);
  background-color: var(--background-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 85%);
  transition: all 0.3s;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.events-extended .events-list .events-pagination .page-link:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
}

.events-extended .events-list .events-pagination .page-item.active .page-link {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.events-extended .events-list .events-pagination .page-item.disabled .page-link {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
}

.events-extended .events-sidebar .sidebar-item {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
}

.events-extended .events-sidebar .sidebar-item h4 {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}

.events-extended .events-sidebar .sidebar-item h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.events-extended .events-sidebar .sidebar-item.search-form .input-group {
  position: relative;
}

.events-extended .events-sidebar .sidebar-item.search-form .input-group .form-control {
  border-radius: 50px;
  padding-right: 50px;
  height: 48px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.events-extended .events-sidebar .sidebar-item.search-form .input-group .form-control:focus {
  box-shadow: none;
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.events-extended .events-sidebar .sidebar-item.search-form .input-group .btn {
  position: absolute;
  right: 0;
  top: 0;
  height: 48px;
  width: 48px;
  z-index: 5;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.events-extended .events-sidebar .sidebar-item.search-form .input-group .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.events-extended .events-sidebar .sidebar-item.categories ul li {
  position: relative;
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.events-extended .events-sidebar .sidebar-item.categories ul li:last-child {
  border-bottom: none;
}

.events-extended .events-sidebar .sidebar-item.categories ul li a {
  display: flex;
  justify-content: space-between;
  color: var(--default-color);
  transition: 0.3s;
}

.events-extended .events-sidebar .sidebar-item.categories ul li a span {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
}

.events-extended .events-sidebar .sidebar-item.categories ul li a:hover {
  color: var(--accent-color);
}

.events-extended .events-sidebar .sidebar-item.upcoming-events .featured-event {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

.events-extended .events-sidebar .sidebar-item.upcoming-events .featured-event img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.events-extended .events-sidebar .sidebar-item.upcoming-events .featured-event .featured-event-details {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.events-extended .events-sidebar .sidebar-item.upcoming-events .featured-event .featured-event-details h5 {
  color: var(--contrast-color);
  font-size: 18px;
  margin-bottom: 5px;
}

.events-extended .events-sidebar .sidebar-item.upcoming-events .featured-event .featured-event-details .event-date {
  display: block;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  font-size: 14px;
  margin-bottom: 10px;
}

.events-extended .events-sidebar .sidebar-item.upcoming-events .featured-event .featured-event-details .event-date i {
  margin-right: 5px;
}

.events-extended .events-sidebar .sidebar-item.upcoming-events .featured-event .featured-event-details .btn-sm {
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 50px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transition: all 0.3s;
}

.events-extended .events-sidebar .sidebar-item.upcoming-events .featured-event .featured-event-details .btn-sm:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 25%);
  transform: translateY(-2px);
}

.events-extended .events-sidebar .sidebar-item.event-calendar .calendar-widget .calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.events-extended .events-sidebar .sidebar-item.event-calendar .calendar-widget .calendar-header h5 {
  margin-bottom: 0;
  font-size: 18px;
}

.events-extended .events-sidebar .sidebar-item.event-calendar .calendar-widget .calendar-header .calendar-nav {
  display: flex;
  gap: 10px;
}

.events-extended .events-sidebar .sidebar-item.event-calendar .calendar-widget .calendar-header .calendar-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s;
}

.events-extended .events-sidebar .sidebar-item.event-calendar .calendar-widget .calendar-header .calendar-nav a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.events-extended .events-sidebar .sidebar-item.event-calendar .calendar-widget .calendar-table {
  width: 100%;
  border-collapse: collapse;
}

.events-extended .events-sidebar .sidebar-item.event-calendar .calendar-widget .calendar-table th,
.events-extended .events-sidebar .sidebar-item.event-calendar .calendar-widget .calendar-table td {
  text-align: center;
  padding: 8px;
  font-size: 14px;
}

.events-extended .events-sidebar .sidebar-item.event-calendar .calendar-widget .calendar-table thead th {
  color: var(--heading-color);
  font-weight: 600;
}

.events-extended .events-sidebar .sidebar-item.event-calendar .calendar-widget .calendar-table td.has-event {
  position: relative;
  font-weight: 700;
  color: var(--accent-color);
}

.events-extended .events-sidebar .sidebar-item.event-calendar .calendar-widget .calendar-table td.has-event:after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--accent-color);
}


/*--------------------------------------------------------------
# Event Section
--------------------------------------------------------------*/
.event .event-meta {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 15px;
  border-radius: 8px;
}

.event .event-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.event .event-meta .meta-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.event .event-meta .meta-item span {
  font-weight: 500;
}

.event .event-content h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.event .event-content h3 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.event .event-content h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 3px;
  width: 50px;
  background-color: var(--accent-color);
}

.event .event-content p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.event .event-content .event-highlights {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.event .event-content .event-highlights li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.event .event-content .event-highlights li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 3px;
}

.event .event-content .event-highlights li span {
  flex: 1;
}

.event .event-content .schedule-table {
  margin-top: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.event .event-content .schedule-table .schedule-row {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.event .event-content .schedule-table .schedule-row:last-child {
  border-bottom: none;
}

.event .event-content .schedule-table .schedule-row:nth-child(odd) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.event .event-content .schedule-table .schedule-time {
  width: 40px;
  padding: 15px;
  font-weight: 600;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
}

.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;
  color: var(--contrast-color);
}

.event .event-content .schedule-table .schedule-activity p {
  margin: 0;
  font-size: 0.95rem;
}
.event .event-content .schedule-table .schedule-activity ul li{
  font-size: 0.95rem;
}
.event .event-content .event-gallery img {
  transition: all 0.3s ease;
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.event .event-content .event-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.event .event-sidebar .sidebar-widget {
  margin-bottom: 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow:0px 0px 10px 1px rgba(19, 16, 34, 0.15);
  padding: 1.6rem;
  position: relative !important;
  top:0 !important; 
}
.event .event-sidebar .sidebar-widget:hover{
  box-shadow: 0px 0px 10px 1px rgba(94, 4, 255, 0.20);
}

.event .event-sidebar .sidebar-widget h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}

.event .event-sidebar .sidebar-widget h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 3px;
  width: 60px;
  background-color: var(--accent-color);
}

.event .event-sidebar .registration-form .btn-register {
  background-color: var(--contrast-color);
  color: #FFF;
  border: none;
  padding: 12px 0;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid var(--contrast-color);
}

.event .event-sidebar .registration-form .btn-register:hover {
  background-color: #FFF;
  transform: translateY(-2px);
  color: var(--contrast-color);;
}

.event .event-sidebar .registration-form .btn-register:active {
  transform: translateY(0);
}

.event .event-sidebar .organizer-info .organizer-details {
  display: flex;
  flex-direction: column;
}

.event .event-sidebar .organizer-info .organizer-details .organizer-image {
  margin-bottom: 15px;
}

.event .event-sidebar .organizer-info .organizer-details .organizer-image img {
  border-radius: 8px;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.event .event-sidebar .organizer-info .organizer-details .organizer-content h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.event .event-sidebar .organizer-info .organizer-details .organizer-content .organizer-position {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.event .event-sidebar .organizer-info .organizer-details .organizer-content .organizer-contact {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 15px;
  border-radius: 6px;
  margin-top: 15px;
}

.event .event-sidebar .organizer-info .organizer-details .organizer-content .organizer-contact p {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.event .event-sidebar .organizer-info .organizer-details .organizer-content .organizer-contact p:last-child {
  margin-bottom: 0;
}

.event .event-sidebar .organizer-info .organizer-details .organizer-content .organizer-contact p i {
  color: var(--accent-color);
}

.event .event-sidebar .related-events .related-event-item {
  display: flex;
  align-items: start;
  gap: 5px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.event .event-sidebar .related-events .related-event-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.event .event-sidebar .related-events .related-event-item .related-event-date {
display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
 
}

.event .event-sidebar .related-events .related-event-item .related-event-date .day {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.event .event-sidebar .related-events .related-event-item .related-event-date .month {
  font-size: 0.9rem;
}

.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: 1rem;
  margin-bottom: 5px;
  color: var(--contrast-color);
}
.event .event-sidebar .related-events .related-event-item .related-event-info h4:hover a{
       color: var(--default-color) !important;
}
.event .event-sidebar .related-events .related-event-item .related-event-info h4.active a{
       color: var(--default-color);
}
.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;
}

/*--------------------------------------------------------------
# Alumni Section
--------------------------------------------------------------*/
.alumni .alumni-intro h2 {
  margin-bottom: 1.5rem;
}

.alumni .alumni-intro p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.alumni .alumni-intro .alumni-stats {
  gap: 2rem;
}

.alumni .alumni-intro .alumni-stats .stat-item {
  display: flex;
  flex-direction: column;
  margin-right: 2rem;
}

.alumni .alumni-intro .alumni-stats .stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.alumni .alumni-intro .alumni-stats .stat-item .stat-label {
  font-size: 0.95rem;
  color: var(--heading-color);
  margin-top: 0.5rem;
}

.alumni .alumni-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.alumni .alumni-image img {
  transition: transform 0.5s ease;
  width: 100%;
}

.alumni .alumni-image img:hover {
  transform: scale(1.05);
}

.alumni .alumni-card {
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.alumni .alumni-card .alumni-image {
  height: 280px;
  overflow: hidden;
  box-shadow: none;
}

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

.alumni .alumni-card .alumni-content {
  padding: 1.5rem;
}

.alumni .alumni-card .alumni-content h4 {
  margin-bottom: 0.25rem;
  color: var(--heading-color);
}

.alumni .alumni-card .alumni-content .alumni-class {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.alumni .alumni-card .alumni-content .alumni-position {
  font-weight: 500;
  margin-bottom: 1rem;
  font-style: italic;
}

.alumni .alumni-card .alumni-content p {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.alumni .alumni-card .alumni-content .read-more {
  font-weight: 600;
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
}

.alumni .alumni-card .alumni-content .read-more i {
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
}

.alumni .alumni-card .alumni-content .read-more:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.alumni .alumni-card .alumni-content .read-more:hover i {
  transform: translateX(4px);
}

.alumni .alumni-events-section {
  margin-top: 4rem;
}

.alumni .alumni-events-section .event-card {
  display: flex;
  background-color: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  transition: transform 0k 0.3s ease, box-shadow 0.3s ease;
}

.alumni .alumni-events-section .event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

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

.alumni .alumni-events-section .event-card .event-date .event-day {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.alumni .alumni-events-section .event-card .event-date .event-month {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.alumni .alumni-events-section .event-card .event-details {
  padding: 1.5rem;
  flex-grow: 1;
}

.alumni .alumni-events-section .event-card .event-details h4 {
  margin-bottom: 1rem;
}

.alumni .alumni-events-section .event-card .event-details p {
  margin-bottom: 0.75rem;
}

.alumni .alumni-events-section .event-card .event-details p i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.alumni .alumni-events-section .event-card .event-details .btn {
  margin-top: 1rem;
}

.alumni .alumni-events-section .btn-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.alumni .alumni-events-section .btn-link i {
  margin-left: 0.5rem;
}

.alumni .alumni-events-section .btn-link:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.alumni .get-involved-section {
  margin-top: 4rem;
}

.alumni .get-involved-section .involvement-card {
  background-color: var(--surface-color);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alumni .get-involved-section .involvement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.alumni .get-involved-section .involvement-card:hover .involvement-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.alumni .get-involved-section .involvement-card .involvement-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  border-radius: 50%;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.alumni .get-involved-section .involvement-card h4 {
  margin-bottom: 1rem;
}

.alumni .get-involved-section .involvement-card p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.alumni .get-involved-section .donation-banner {
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  border-radius: 8px;
  padding: 2.5rem;
  margin-top: 2rem;
}

.alumni .get-involved-section .donation-banner h3 {
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.alumni .get-involved-section .donation-banner p {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.alumni .get-involved-section .donation-banner .btn-primary {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.alumni .get-involved-section .donation-banner .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.alumni .lead {
  font-size: 1.15rem;
  color: color-mix(in srgb, var(--heading-color), transparent 25%);
  margin-bottom: 2rem;
}

.alumni .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.alumni .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
}

.alumni .btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
  transition: all 0.3s ease;
}

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-main-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.contact .contact-main-wrapper  .section-title{
 
    text-align: left;
    padding-bottom: 10px;
    position: relative;
 
}

.contact .contact-main-wrapper .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
}
.contact .contact-main-wrapper .section-title h2::after{
  margin: initial !important;
}
.contact .contact-main-wrapper .section-title h2::before{
  margin: initial !important;
}
.contact .map-wrapper {
  height: 300px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}



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

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

.contact .contact-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
 box-shadow:0px 0px 10px 1px rgba(19, 16, 34, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .contact-card:hover {
  transform: translateY(-5px);
box-shadow: 0px 0px 10px 1px rgba(94, 4, 255, 0.20);
}

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

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

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

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

.contact .contact-form-container {
  background-color:#fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow:0px 0px 10px 1px rgba(19, 16, 34, 0.15);
}
.contact .contact-form-container:hover{
box-shadow: 0px 0px 10px 1px rgba(94, 4, 255, 0.20);
}
.contact .contact-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  padding-left: 15px;
}

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

.contact .contact-form-container>p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #777;
}
.contact .contact-form-container .php-email-form .form-select,
.contact .contact-form-container .php-email-form .form-control {
  padding: 0.6rem 1rem;
  color: #212529;
  background-color: #fbfbfb;
  font-size: 14px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 6px;
}
.contact .contact-form-container .php-email-form .form-select:focus,
.contact .contact-form-container .php-email-form .form-control:focus {
  box-shadow: none !important;
   border-color: var(--default-color);
}

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

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

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


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

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

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

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

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

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

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

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

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

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}




/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .terms-hero {
  text-align: center;
  margin-bottom: 70px;
  padding: 60px 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 97%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 30px;
}

.terms-of-service .terms-hero .badge {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--surface-color);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.terms-of-service .terms-hero h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.terms-of-service .terms-hero p {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto 30px;
}

.terms-of-service .terms-hero .terms-highlights {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.terms-of-service .terms-hero .terms-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
}

.terms-of-service .terms-hero .terms-highlights .highlight-item i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.terms-of-service .terms-hero .terms-highlights .highlight-item span {
  font-weight: 500;
}

.terms-of-service .terms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 70px;
}




.terms-of-service .terms-grid .terms-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s;
}

.terms-of-service .terms-grid .terms-card:hover {
  transform: translateY(-10px);
}

.terms-of-service .terms-grid .terms-card:hover .header-icon {
  transform: scale(1.1);
  background-color: var(--accent-color);
}

.terms-of-service .terms-grid .terms-card:hover .header-icon i {
  color: var(--contrast-color);
}

.terms-of-service .terms-grid .terms-card .card-header {
  padding: 30px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.terms-of-service .terms-grid .terms-card .card-header .header-icon {
  width: 60px;
  height: 60px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s;
}

.terms-of-service .terms-grid .terms-card .card-header .header-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: color 0.3s;
}

.terms-of-service .terms-grid .terms-card .card-header h3 {
  font-size: 1.4rem;
  margin: 0;
}

.terms-of-service .terms-grid .terms-card .card-content {
  padding: 30px;
}

.terms-of-service .terms-grid .terms-card .card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 20px;
  line-height: 1.6;
}

.terms-of-service .terms-grid .terms-card .card-content .check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .terms-grid .terms-card .card-content .check-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .terms-grid .terms-card .card-content .check-list li:last-child {
  margin-bottom: 0;
}

.terms-of-service .terms-grid .terms-card .card-content .check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

.terms-of-service .terms-grid .terms-card .card-content .restrictions-list {
  display: grid;
  gap: 15px;
}

.terms-of-service .terms-grid .terms-card .card-content .restrictions-list .restriction-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.terms-of-service .terms-grid .terms-card .card-content .restrictions-list .restriction-item i {
  color: #dc3545;
  font-size: 1.1rem;
}

.terms-of-service .terms-grid .terms-card .card-content .restrictions-list .restriction-item span {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .terms-points {
  margin-bottom: 70px;
  text-align: center;
}

.terms-of-service .terms-points h3 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.terms-of-service .terms-points .points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.terms-of-service .terms-points .point-item {
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 30px;
  transition: transform 0.3s;
}

.terms-of-service .terms-points .point-item:hover {
  transform: translateY(-5px);
}

.terms-of-service .terms-points .point-item:hover .point-icon {
  background-color: var(--accent-color);
}

.terms-of-service .terms-points .point-item:hover .point-icon i {
  color: var(--contrast-color);
}

.terms-of-service .terms-points .point-item .point-icon {
  width: 50px;
  height: 50px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s;
}

.terms-of-service .terms-points .point-item .point-icon i {
  font-size: 1.3rem;
  color: var(--accent-color);
  transition: color 0.3s;
}

.terms-of-service .terms-points .point-item .point-content h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.terms-of-service .terms-points .point-item .point-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  margin: 0;
}

.terms-of-service .terms-notices {
  margin-bottom: 70px;
}

.terms-of-service .terms-notices .notice-wrapper {
  background-color: var(--surface-color);
  border-radius: 30px;
  padding: 40px;
}

.terms-of-service .terms-notices .notice-items {
  display: grid;
  gap: 25px;
}

.terms-of-service .terms-notices .notice-items .notice-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--background-color);
  border-radius: 15px;
}

.terms-of-service .terms-notices .notice-items .notice-item .notice-marker {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.terms-of-service .terms-notices .notice-items .notice-item .notice-marker i {
  font-size: 1.2rem;
  color: var(--accent-color);
}

.terms-of-service .terms-notices .notice-items .notice-item .notice-content h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.terms-of-service .terms-notices .notice-items .notice-item .notice-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .terms-contact .contact-wrapper {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 30px;
  padding: 50px;
  text-align: center;
}

.terms-of-service .terms-contact .contact-wrapper .contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.terms-of-service .terms-contact .contact-wrapper .contact-content .contact-text {
  margin-bottom: 30px;
}

.terms-of-service .terms-contact .contact-wrapper .contact-content .contact-text h4 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.terms-of-service .terms-contact .contact-wrapper .contact-content .contact-text p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.terms-of-service .terms-contact .contact-wrapper .contact-content .contact-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.terms-of-service .terms-contact .contact-wrapper .contact-content .contact-actions a {
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.terms-of-service .terms-contact .contact-wrapper .contact-content .contact-actions .btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.terms-of-service .terms-contact .contact-wrapper .contact-content .contact-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.terms-of-service .terms-contact .contact-wrapper .contact-content .contact-actions .btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.terms-of-service .terms-contact .contact-wrapper .contact-content .contact-actions .btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 700;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: #E74E6C;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    background-color: #E74E6C;
    border: none;
    color: #fff;
    border-radius: 50px;
    transition: all 0.3s 
ease;
}
.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}


/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/


.badge-stamp {
      position: absolute;
      bottom: -20px;
      left: -20px;
      width: 100px;
    }

    .image-stack {
      position: relative;
    }

    .image-stack img.top {
      position: absolute;
      top: 60px;
      left: 40px;
      width: 280px;
      border-radius: 1rem;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .icon-box {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 1rem;
    }

    .icon-box i {
      font-size: 24px;
      color: #b90058;
    }

    .btn-learn {
      background-color: #f25e85;
      color: #fff;
      border-radius: 30px;
      padding: 10px 25px;
      font-weight: 600;
    }

    .btn-learn:hover {
      background-color: #e24975;
    }

    .image-wrapper {
      position: relative;
          max-width: 500px;
    margin: auto;
    height: 400px;
    }

    .main-image,
    .top-left-overlay {
      position: absolute;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.2);
      transition: opacity 0.6s ease-in-out;
    }

    .main-image {
      top: -20px;
      left: -20px;
      width: 80%;
      z-index: 1;
    }

    .top-left-overlay {
      width: 80%;
      top: 77px;
      left: 45px;
      z-index: 2;
    }
 .topbar {
  background: #fff;
  font-size: 14px;
  color: #333;
  border-bottom: 1px solid #ddd;
  padding: 5px 0;
}

.topbar .contact-info a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.topbar .contact-info i {
  color: #e31e25; /* red icon color */
}

.topbar .social-links a {
  color: #333;
  transition: 0.3s;
  font-size: 16px;
}

.topbar .social-links a:hover {
  color: #e31e25;
}

.swiper-pagination-bullet-active{
  background-color: #fff !important;
}
.modal-close-btn{
      position: absolute;
    right: 30px;
    border: 0;
    width: 20px;
    height: 20px;
    font-size: 40px;
    line-height: 19px;
    text-align: center;
    top: 20px;
    margin: 0 auto;
    background: transparent;
    color: #777;
}
.zero-padding{
  padding: 0 !important;
}
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

.services .service-item {
  background-color: #fff;
  box-shadow:0px 0px 10px 1px rgba(19, 16, 34, 0.15);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  height: max-content;
  overflow: hidden;
  z-index: 1;
}

.services .service-item:before {
  content: "";
  position: absolute;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  right: -80px;
  top: -80px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: -1;
}

.services .service-item:after {
  content: "";
  position: absolute;
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  right: -140px;
  top: -140px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: -1;
}
.services .service-item:hover{
   box-shadow: 0px 0px 10px 1px rgba(94, 4, 255, 0.20);
}
.services .service-item i {
   background: 
 color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--contrast-color);
  font-size: 24px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.services .service-item h4 {
  font-weight: 600;
  margin: 15px 0 0 0;
  transition: 0.3s;
  font-size: 20px;
}

.services .service-item h4 a {
  color: var(--heading-color);
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin: 10px 0 0 0;
}

.services .service-item:hover:before,
.services .service-item:hover:after {
    content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgb(0 0 0 / 43%), rgb(0 0 0 / 78%)), url(../img/.png); 
  background-size: cover;
  background-position: center;
  border-radius: 0px;
  z-index: -1; 
}

.services .service-item:hover h4 a,
.services .service-item:hover p {
  color: #fff;
}

.services .service-item:hover i {
  background: #fff;
  color: var(--default-color);
}
/*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/
.alt-services{
  padding: 60px 0 60px !important ;
}

.alt-services .img {
  border-radius: 8px;
  overflow: hidden;
}

.alt-services .img img {
  
      transition: 0.6s;
    height: 277px;
    width: 100%;
}

.alt-services .details {
  background: #fff;
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 30px;
  transition: all ease-in-out 0.3s;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(0, 0, 0, 0.1);
}
.alt-services .details a{
  color:#0C1322;
}
.alt-services .details h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
    color:#0C1322;
}

.alt-services .details p {
  color: #777;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.alt-services .service-item1{
  border-radius: 8px;
  box-shadow:0px 0px 10px 1px rgba(19, 16, 34, 0.15);
      height: 265px;
}
.alt-services .service-item1:hover{
   box-shadow: 0px 0px 10px 1px rgba(94, 4, 255, 0.20);
}

.alt-services .service-item1:hover .details h3 {
  color: var(--default-color);
}

.alt-services .service-item1:hover .img img {
  transform: scale(1.2);
}


.alt-services  .cta-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: center;
}

.alt-services  .cta-section .btn-view{
   background: #fff;
    color: #E74E6C;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #E74E6C;
}
.alt-services  .cta-section .btn-view:hover{
background: #E74E6C;
    color: #fff;
        transform: translateY(-10px);
}

.lefttext{
  text-align: left !important;
}
.lefttext h2::after,
.lefttext h2:before{
  right: auto !important;
}
.no-box{
  padding: 0 !important;
  box-shadow: none !important;
}
.no-box:hover{
  box-shadow: none !important;
}
.pad-top-10{
  padding: 10px 0 60px 0;
}
.pad-top-20{
  padding-top: 15px!important;
}
.registration-form{
position: sticky;
height: max-content;
    top: 100px;
   z-index: 99;    
}


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

.features .nav-item {
  width: 100%;
  margin-bottom: 15px;
}

.features .nav-item:last-child {
  margin-bottom: 0;
}

.features .nav-link {
  color: var(--heading-color);
  border: 0;
  padding: 30px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
  cursor: pointer;
}

.features .nav-link i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  width: 48px;
  height: 48px;
  font-size: 22px;
  flex-shrink: 0;
  border-radius: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.features .nav-link h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  transition: 0.3s;
}

.features .nav-link p {
  font-size: 15px;
  margin: 0;
}

.features .nav-link:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.features .nav-link.active {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  color: var(--default-color);
}

.features .tab-pane img {
  border-radius: 15px;
}

.features-details .features-item+.features-item {
  margin-top: 60px;
}

.features-details .features-item .content {
  background-color: #fff;
  color: #777;
  padding: 20px 0;
  border-radius: 10px;
}

.features-details .features-item h3 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 15px;
  text-align: left !important;
}
.features-details .features-item p{
  text-align: left !important;
  color: #0C1322;
  padding-bottom: 0px;
} 
.features-details .features-item p strong{font-weight:700;}
a.more-btn {
    display: inline-flex;
}
.features-details .features-item .more-btn {
      background: var(--default-color);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
     transform: translateY(0px);
     margin:10px 0 0 0;
}

.features-details .features-item .more-btn:hover {
  background: var(--default-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.features ul, 
.features-details .features-item ul {
  list-style: none;
  padding: 0;
}
.features ul li, 
.features-details .features-item ul li {
  padding-bottom: 10px;
  display: flex;
 text-align: left;

}
.features ul li:last-child ,
.features-details .features-item ul li:last-child {
  padding-bottom: 0;
}
.features ul i,
.features-details .features-item ul i {
  font-size: 20px;
  margin-right: 10px;
  color: var(--accent-color);
}

.features-details .features-item img {
  border-radius: 15px;
}


/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .section-title {
  padding-bottom: 20px;
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}




.bannerbox-slider .banner-box {
  width: 100%;
  margin: 0 10px !important;
  position: relative;
}

.bannerbox {
  margin: 0;
  padding: 80px 0 0 0;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: relative;
}

.bannerbox.one-icon,
.bannerbox.two-icon,
.bannerbox.three-icon,
.bannerbox.four-icon,
.bannerbox.five-icon,
.bannerbox.six-icon,
.bannerbox.seven-icon,
.bannerbox.eight-icon,
.bannerbox.nine-icon {
  position: relative;
  margin: 10px 5px 30px 5px;
  text-align: center;
  color: #fff;
  line-height: normal;
  padding: 0;
  font-size: 14px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
}

.bannerbox img {
  max-width: 100%;
  width: 100%;
  border-radius: 16px;
}

.bannerbox span {
  width: 60px;
  height: 60px;
  margin: 0
}

.bannerbox:hover .bannerbox-hover {
  opacity: 1;
  top: 0;
}

.banner-box:hover .bannerbox-hover {
  opacity: 1;
  top: 0;
}

.bannerbox-hover {
  position: absolute;
  margin: 10px 5px 30px 5px;
  text-align: center;
  color: #fff;
  top: 0px;
  line-height: normal;
  padding: 0;
  left: 0;
  font-size: 14px;
  z-index: 99999;
  right: 0;
  border-radius: 16px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
  opacity: 0;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.bannerbox-hover img {
  max-width: 100%;
  width: 100%;
  border-radius: 16px;
}

.bannerbox-hover:after {
  content: "";
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(231, 78, 108, 0.22) 0%, rgba(231, 78, 108, 0.90) 100%);
  position: absolute;
  top: 0;
  border-radius: 16px;
}

.bannerbox-hover .cont-slide {
  z-index: 999;
  background: transparent;
  bottom: 23%;
}

.bannerbox-hover .icon-box {
  background: #E74E6C;
}

.bannerbox-hover .slide-data {
  color: #fff;
}

.cont-slide {
  color: #555;
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  padding: 20px;
  line-height: normal;
  bottom: 0;
  margin: 0;
  background: url(../img/wc-patch.png) no-repeat center bottom;
  position: absolute;
  background-size: 100%;
  width: 100%;
     height: 159px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  border-radius: 16px;
}

.icon-box {
  background: #E74E6C;
  width: 84px;
  height: 84px;
  text-align: center;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: -14px;
  position: absolute;
}
.icon-box img {
   position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
}
.icon-box svg{
  position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.slide-data {
  color: #0C1322;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  width: 90%;
  bottom: 15px;
  display: block;
  font-weight: 700;
  position: absolute;
  line-height: normal;
}

.pt-15{
  padding: 15px 0 0 0 !important;
}



.bannerbox-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--contrast-color) !important;
  transform: scale(1.2);
}

.sub-topic{font-size: 14px;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--heading-color);}
    .m-t-5{
      margin-top:50px;
    }
    .text-left{text-align:left;}
.thankyou-code {
    font-size: 40px;
    font-weight: 700;
    color: color-mix(in srgb, var(--heading-color), transparent 10%);
    font-family: var(--heading-font);
    line-height: 1;
}
.thankyou-title {
    font-size: 18px;
    color: var(--heading-color);
    font-weight: 600;
}


.thank-action .btn-primary, .error-action .btn-primary {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    background-color: #E74E6C;
    border: none;
    color: #fff;
    border-radius: 50px;
    transition: all 0.3s 
ease;
}

.thankyou-icon {
    font-size: 5rem;
    color: 
 color-mix(in srgb, var(--accent-color), transparent 15%);
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.pagination li {
  display: inline-block;
}

.pagination button {
  padding: 10px 16px;
  border: 1px solid #ccc;
  background-color: #f8f8f8;
  cursor: pointer;
  border-radius: 4px;
}

.pagination button.active {
  background-color: #e91e63;
  color: white;
  border: 1px solid #e91e63;
}

.view-more-container {
  text-align: center;
}

.view-more {
  border: 2px solid #e91e63;
  color: #e91e63;
  padding: 10px 20px;
  background: transparent;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
}

.view-more:hover {
  background-color: #e91e63;
  color: white;
}




.testimonials_box {
  background: #fff url(../images/testi-bg.png) no-repeat center center;
  background-size: cover;
}

.testi-slider {
  width: 100%;
  margin: 0px auto 50px;
  padding: 0 0 20px 0
}

.testi-slider .gal-box {
  width: 100%;
  margin: 20px 10px !important
}


.testi {
  position: relative;
  display: block;
  text-align: center;
  padding: 24px;
  background: #FFF;
  border-radius: 16px;
      transition: all 0.4s 
cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid
 color-mix(in srgb, var(--accent-color), transparent 90%);
    box-shadow: 0px 0px 10px 1px rgba(19, 16, 34, 0.15);
    overflow: hidden;
}
.testi:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--contrast-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.testi:hover {
    box-shadow: 0px 0px 4px 1px rgba(94, 4, 255, 0.20);
}
.testi:hover:after {
    transform: scaleX(1);
}
.testi p {
  margin: 15px 0 0;
  width: 100%;
  color: #7E7E7E;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* 188.889% */
  letter-spacing: 0.36px;
  text-align: left;
}

.testi:before {
  position: absolute;
  width: 64px;
  height: 64px;
  background:url(/assets/img/comma1.png) top left;
  content: "";
  right: 24px;
  top: 24px;
  margin: auto
}


.testi-people img {
  box-shadow: 0px 0px 2px 0px rgba(19, 16, 34, 0.10);
}

.test-pic {
  position: relative;
  width: 16%;
}

.test-pic img {
  border-radius: 50px;
  height: 64px;
  width: 64px;
  box-shadow: 0px 0px 2px 1px rgba(19, 16, 34, 0.10);
}

.testi-name {
  width: 70%;
}

.testi-people {
  margin: 0;
  font-weight: 600;
  font-size: 18px;
  text-align: left;
  color: #555;
  display: flex;
  justify-content: start;
  align-items: center;
}

.testi-people strong {
  font-weight: 700;
  color: #2c3039
}

.testi-people span {
  display: block;
  margin: 5px 0 0 0;
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  color: #7e7e7e;
  line-height: normal
}

.bannerbox-slider .slick-dots,
.testi-slider .slick-dots{
  position: absolute;
  bottom: -24px;
  width: 100%;
  right: 0;
  list-style: none;
  transform: rotate(0);
  text-align: center
}

.bannerbox-slider .slick-dots li,
.testi-slider .slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  cursor: pointer
}

.bannerbox-slider .slick-dots li button,
.testi-slider .slick-dots li button{
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  border-radius: 50%;
  border: 0;
  outline: 0
}

.bannerbox-slider .slick-dots li button::before,
.testi-slider .slick-dots li button::before{
  font-size: 18px;
  color: #fff;
  opacity: 1
}

.bannerbox-slider .slick-dots li button:before,
.testi-slider .slick-dots li button:before{
  font-family: 'slick';
  font-size: 10px;
  position: absolute;
  top: -12px;
  left: 0;
  width: 12px;
  line-height: 29px;
  height: 12px;
  background: #f1c5ce;
  border-radius: 50px;
  content: '';
  text-align: center;
  opacity: 1;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.bannerbox-slider .slick-dots li.slick-active button:before,
.testi-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #E74E6C !important;
  background: #E74E6C;
  width: 12px
}

.bannerbox-slider.slick-dotted.slick-slider,
.testi-slider.slick-dotted.slick-slider {
  margin-bottom: 0
}

.video-popup button.close {
    background-color: var(--default-color);
    opacity: 1;
    color: #fff;
    position: absolute;
    right: -13px;
    top: -10px;
    padding: 0px 12px;
    margin: 0;
    border-radius: 100px;
    border: 0px;
    z-index: 9;
    font-weight: 700;
    font-size: 26px;
    text-align: center;
}

.video-popup button.close:hover{
 background-color:var(--contrast-color)
}

.popup-videos iframe {
    height: 500px;
}

.process-box{
    background: #fff;
    padding: 10px;
    border-radius: 15px;
    position: relative;
    box-shadow: 2px 2px 7px 0 #00000057;
}

.process-box h5{padding: 10px 44px;
    font-size: 16px;
    text-align: center;
    font-weight: 700; min-height: 55px;}
.process-left:after{
        content: "";
    border-top: 15px solid #ffffff;
    border-bottom: 15px solid #ffffff;
    border-left: 15px solid #ffffff;
    border-right: 15px solid #ffffff;
    display: inline-grid;
    position: absolute;
    right: -15px;
    top: 42%;
    transform: rotate(45deg);
    box-shadow: 3px -2px 3px 0px #00000036;
    z-index: 1;
}
.process-right:after{
        content: "";
    border-top: 15px solid #ffffff00;
    border-bottom: 15px solid #ffffff;
    border-left: 15px solid #ffffff;
    border-right: 15px solid #ffffff00;
    display: inline-grid;
    position: absolute;
    left: -15px;
    top: 42%;
    transform: rotate(45deg);
    box-shadow: -1px 1px 3px 0px #0000001a;
    z-index: 1;
}
.process-step{
    background: #7D389D;
    text-align: center;
    width: 80%;
    margin: 0 auto;
    color: #fff;
    height: 100%;
    padding-top: 8px;
    position: relative;
    top: -26px;
    border-radius: 0px 0px 10px 10px;
    box-shadow: -6px 8px 0px 0px #00000014;
}
.process-box:hover .process-step{    background: #e74e6c;}
.process-point-right{
    background: #ffffff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 8px solid #00bcd4;
    box-shadow: 0 0 0px 4px #5c5c5c;
    margin: auto 0;
    position: absolute;
    bottom: 40px;
    left: -63px;
}
.process-point-right:before{
    content: "";
    height: 144px;
    width: 11px;
    background: #5c5c5c;
    display: inline-grid;
    transform: rotate(36deg);
    position: relative;
    left: -50px;
    top: -0px;
}
.process-point-left{
    background: #ffffff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 8px solid #00bcd4;
    box-shadow: 0 0 0px 4px #5c5c5c;
    margin: auto 0;
    position: absolute;
    bottom: 40px;
    right: -63px;
}
.process-point-left:before {
    content: "";
    height: 144px;
    width: 11px;
    background: #5c5c5c;
    display: inline-grid;
    transform: rotate(-38deg);
    position: relative;
    left: 50px;
    top: 0px;

}

.process-last:before{
    display: none;
}
.process-box p{
    z-index: 9;
}
.process-step p{
    font-size: 20px;
    color: #fff;
}
.process-step h2{
    font-size: 39px;
    color: #fff;
}
.process-step:after{
    content: "";
    border-top: 8px solid #04889800;
    border-bottom: 8px solid #532468;
    border-left: 8px solid #04889800;
    border-right: 8px solid #532468;
    display: inline-grid;
    position: absolute;
    left: -16px;
    top: 0;
}
.process-step:before{
    content: "";
    border-top: 8px solid #ff000000;
    border-bottom: 8px solid #532468;
    border-left: 8px solid #532468;
    border-right: 8px solid #ff000000;
    display: inline-grid;
    position: absolute;
    right: -16px;
    top: 0;
}

.process-box:hover .process-step:before{   
    content: "";
    border-top: 8px solid #ff000000;
    border-bottom: 8px solid #a52741;
    border-left: 8px solid #a52741;
    border-right: 8px solid #ff000000;
    display: inline-grid;
    position: absolute;
    right: -16px;
    top: 0;
}

.process-box:hover .process-step:after{   
content: "";
    border-top: 8px solid #04889800;
    border-bottom: 8px solid #a52741;
    border-left: 8px solid #04889800;
    border-right: 8px solid #a52741;
    display: inline-grid;
    position: absolute;
    left: -16px;
    top: 0;
}
.process-line-l{
    background: white;
    height: 4px;
    position: absolute;
    width: 136px;
    right: -153px;
    top: 64px;
    z-index: 9;
}
.process-line-r{
    background: white;
    height: 4px;
    position: absolute;
    width: 136px;
    left: -153px;
    top: 63px;
    z-index: 9;
}
.laststep .process-left:after{
display: none;
}
h2.accordion-header{
    margin-bottom: 0px;
    padding-bottom: 0px;
}
h2.accordion-header:before {
    background: transparent;
}
h2.accordion-header:after {
    background: transparent;
}

.accordion-body{text-align: left;}
.accordion-button{font-weight: 600;}
.accordion-button:not(.collapsed){
  background-color: #f1c5ce;
  color: #0C1322;
  font-weight: 600;
}
.accordion-button:focus{
  box-shadow: 0 0 0 0.0rem rgba(13, 110, 253, 0.25);
}

.hidden-value{display: none;}

.p-20{padding-bottom:10px !important;}
.text-right {
    text-align: right !important;
}


.coursehead h3 {
    font-size: 1.4rem;
        margin-top: 2rem;
    margin-bottom: 1rem;
    position: relative;
}
.coursehead h3:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 3px;
    width: 50px;
    background-color: var(--accent-color);
}

/*management */
ul.leader-list {
    margin: 0;
    padding: 0;
}
ul.leader-list li{display: inline-block; width:calc(25% - 10px);}
.team-9 {
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: transform 0.6s;
    transform-style: preserve-3d;
    height: 394px !important;
}

.team-9:hover {
    transform: rotateY(180deg);
}

.team-9 .team-img {
    position: relative;
    font-size: 0;
    text-align: center;
    margin-bottom: 30px;
}

.team-9 .team-img img {
    width: 100%;
    height: auto;
    border-radius: 100%;
}

.team-9 .team-content {
    text-align: center;
}

.team-9 .team-content h2{
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
    color:#E74E6C;
}

.team-9 .team-content h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}
.team-9 .team-overlay h2{    
  font-size: 16px !important;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;   
    color:#E74E6C;}

.team-9 .team-overlay h3{    
  font-size: 14px !important;
    font-weight: 400;
    margin-bottom: 10px;text-align: center;}

.team-9 .team-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: #ffffff;
    border-radius: 5px;
    transform: rotateY(180deg);
}

.team-9 .team-overlay p {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-align: center;
    margin-bottom: 0.5rem;
}

.team-9 .team-social {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
}

.team-9 .team-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 5px;
    padding: 11px 0 10px 0;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    color: #ffffff;
    border-radius: 100%;
    transition: all .3s;
}

.team-9 .team-social a.social-tw {
    background: #00acee;
}

.team-9 .team-social a.social-fb {
    background: #3b5998;
}

.team-9 .team-social a.social-li {
    background: #0e76a8;
}

.team-9 .team-social a.social-in {
    background: #3f729b;
}

.team-9 .team-social a.social-yt {
    background: #c4302b;
}

.team-9 .team-social a:last-child {
    margin-right: 0;
}

.team-9 .team-social a:hover {
    background: #222222;
}

.featured-programs .program-item .item-content .contact-info a:hover{
  color:#dc3545;
}

ul.logo-list{
  margin:0;
  padding: 0;
}
ul.logo-list li{display: inline-block;
    width: calc(33.33% - 23px);
    border-radius: 8px;
    box-shadow: 0px 0px 10px 1px rgba(19, 16, 34, 0.15);
    margin: 10px 10px 10px 10px;
    background: #fff;
    text-align: center;transition: transform 0.3s, box-shadow 0.3s;}

 ul.logo-list li:hover {
    box-shadow: 0px 0px 4px 1px rgba(94, 4, 255, 0.20);
}

.m-t-60 {
    margin-top: 60px !important;
}
.tour-visual {
    text-align: right;
}
.tour-visual img{border-radius: 0px 25px 25px 0px;}
.m-b-30{margin-bottom: 30px;}


/*homeslider*/
.main-slider {
  position: relative;
  overflow: hidden;
  display: block;
}

.main-slider__one {
  width: 100%;
  background-color: var(--rihdb-black);
}

.main-slider__one.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  max-width: 1350px;
  width: 100%;
  position: absolute;
  left: 22px;
  right: 0;
  bottom: 90px;
  padding: 0 15px;
  margin: 0 auto;
  margin-top: 0px;
  height: 0;
  line-height: 0;
  z-index: 3;
}

.main-slider__one.owl-carousel .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  display: inline-block;
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--default-color);
  margin: 0 13px 0 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-slider__one.owl-carousel .owl-dots .owl-dot.active span {
  width: 20px;
  height: 20px;
  border-width: 3px;
  background-color: var(--default-color);
}

.main-slider__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.main-slider__item {
  position: relative;
  padding-top: 100px;
  padding-bottom: 150px;
}

.main-slider__content {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.main-slider__title {
  visibility: hidden;
  opacity: 0;
  text-transform: capitalize;
font-size: 38px;
    font-weight: 700;
    line-height: 58px;
  letter-spacing: -1px;
  margin: 0 0 10px;
  margin: 0 0 10px;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(200px);
  color: #000000;
}

.main-slider__title1 {
  visibility: hidden;
  opacity: 0;
  text-transform: capitalize;
  font-size: 26px;
  font-weight: 600;
  line-height: 46px;
  letter-spacing: -1.4px;
  margin: 0 0 10px;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(200px);
}

.main-slider__title1 span {
  color: var(--default-color);
  font-size: 34px;
}

.main-slider__title span {
  color: var(--default-color);

  display: inline-block;
}

@media (max-width: 767px) {
  .main-slider__title span {
   font-size: 32px;
        line-height: 42px;
    letter-spacing: 0;
  }
}

.main-slider__text {
  visibility: hidden;
  opacity: 0;
  font-size: 20px;
  line-height: 30px;
  color: var(--rihdb-black);
  margin: 0 0 5px;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateY(150px);
}
.main-slider__btn {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(80px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  -webkit-transform-origin: bottom;
  -ms-transform-origin: bottom;
  transform-origin: bottom;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.main-slider .active .main-slider__title1 {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) translateX(0);
  transition-delay: 1100ms;
}

.main-slider .active .main-slider__title {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) translateX(0);
  transition-delay: 1100ms;
}
.main-slider .active ul.home-list {
  visibility: visible;
  opacity: 1;
  transition-delay: 1300ms;
  transform: translateY(0) translateX(0);
}
.main-slider .active .bannerbtn-section {
  visibility: visible;
  opacity: 1;
  transition-delay: 1300ms;
  transform: translateY(0) translateX(0);
}
.main-slider .active .location {
  visibility: visible;
  opacity: 1;
  transition-delay: 1300ms;
  transform: translateY(0) translateX(0);
}
.main-slider .active .main-slider__text {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) translateX(0);
  transition-delay: 1300ms;
}

.main-slider .active .main-slider__btn {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateY(0deg) translateY(0px);
  -ms-transform: perspective(400px) rotateY(0deg) translateY(0px);
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1500ms;
}

.main-slider .active .main-slider__layer svg {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) translateX(0);
  transition-delay: 1500ms;
}

.main-slider .active .main-slider__layer img {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) translateX(0);
  transition-delay: 1900ms;
}

.main-slider .active .main-slider__shape-one {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) translateX(0);
  transition-delay: 2000ms;
}

.main-slider .active .main-slider__shape-two {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) translateX(0);
  transition-delay: 2050ms;
}

.main-slider .active .main-slider__shape-three {
  visibility: visible;
  opacity: 1;
  transition-delay: 2100ms;
  transform: translateY(0) translateX(0);
}

.main-slider .active .main-slider__shape-four {
  visibility: visible;
  opacity: 1;
  transition-delay: 2150ms;
  transform: translateY(0) translateX(0);
}

.main-slider .active .main-slider__shape-five {
  visibility: visible;
  opacity: 1;
  transition-delay: 2200ms;
  transform: translateY(0) translateX(0);
}

.main-slider .active .main-slider__shape-six {
  visibility: visible;
  opacity: 1;
  transition-delay: 2250ms;
  transform: translateY(0) translateX(0);
}

.main-slider .active .main-slider__shape-seven {
  visibility: visible;
  opacity: 1;
  transition-delay: 2300ms;
  transform: translateY(0) translateX(0);
}

.main-slider .active .main-slider__shape-eight {
  visibility: visible;
  opacity: 1;
  transition-delay: 2350ms;
  transform: translateY(0) translateX(0);
}

.main-slider .active .main-slider__shape-nine {
  visibility: visible;
  opacity: 1;
  transition-delay: 2400ms;
  transform: translateY(0) translateX(0);
}



.main-slider__layer {
  position: absolute;
  bottom: 0;
  z-index: 3;
  margin-left: 46px;
}
.main-slider__layer img {
  object-fit: cover;
  width: auto !important;
  transition: transform 1000ms ease, opacity 1000ms ease;
  visibility: hidden;
  opacity: 0;
  max-height: 700px;
  transform: translateX(200px);
}

.main-slider__layer .svgimg {

  position: absolute;
  fill: var(--rihdb-base);

  transition: transform 1000ms ease, opacity 1000ms ease;
  visibility: hidden;
  opacity: 0;
  transform: translateY(100%);
  animation: change-background 8s ease infinite;
  bottom: 0;
  z-index: -1;
  left: -50px;
}


.main-slider__layer svg {

  position: absolute;
  fill: var(--rihdb-base);
  bottom: 0;
  z-index: -1;
  left: -155px;
  transition: transform 1000ms ease, opacity 1000ms ease;
  visibility: hidden;
  opacity: 0;
  transform: translateY(100%);
  animation: change-background 8s ease infinite;
}
.main-slider__shape-one {
  position: absolute;
  top: 320px;
  left: 90px;
  transition: transform 1000ms ease, opacity 1000ms ease;
  visibility: hidden;
  opacity: 0;
  transform: translateY(100px);
}
.main-slider__shape-one img {
  -webkit-animation-name: float-bob-y-2;
  animation-name: float-bob-y-2;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.main-slider__shape-two {
  position: absolute;
  bottom: 270px;
  left: 73px;
  transition: transform 1000ms ease, opacity 1000ms ease;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-100px);
}

.main-slider__shape-two img {
  -webkit-animation: rotated 20s infinite linear;
  animation: rotated 20s infinite linear;
}

.main-slider__shape-three {
  position: absolute;
  bottom: 128px;
  z-index: 3;
  transition: transform 1000ms ease, opacity 1000ms ease;
  margin-left: -100px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(100px);
}
.main-slider__shape-three svg {
  width: 152px;
  height: 152px;
}

.main-slider__shape-three svg circle {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: dash 5s infinite linear;
}

@keyframes dash {
  0% {
    stroke-dashoffset: 1200;
    stroke: var(--default-color);
  }

  50% {
    stroke: var(--rihdb-base);
  }

  100% {
    stroke-dashoffset: 0;
    stroke: var(--default-color);
  }
}

.main-slider__shape-four {
  position: absolute;
  bottom: 388px;
  z-index: 3;
  margin-left: -112px;
  visibility: hidden;
  transition: transform 1000ms ease, opacity 1000ms ease;
  opacity: 0;
  transform: translateY(200px);
}
.main-slider__shape-four svg {
  width: 32px;
  height: 32px;
}

.main-slider__shape-four svg circle {
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: dash4 3s infinite linear;
}

@keyframes dash4 {
  0% {
    stroke-dashoffset: 1200;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

.main-slider__shape-five {
  position: absolute;
  top: 308px;
  z-index: 3;
  margin-left: -112px;
  visibility: hidden;
  transition: transform 1000ms ease, opacity 1000ms ease;
  opacity: 0;
  transform: translateY(-200px);
}

.main-slider__shape-five svg {
  width: 124px;
  height: 101px;
  fill: var(--default-color);
  animation: zump-one 1s infinite alternate;
}

@keyframes zump-one {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-15px);
  }
}

.main-slider__shape-six {
  position: absolute;
  top: 153px;
  z-index: 3;
  margin-left: -99px;

  visibility: hidden;
  transition: transform 1000ms ease, opacity 1000ms ease;
  opacity: 0;
  transform: translateY(-200px);
}

.main-slider__shape-six img {
  -webkit-animation-name: float-bob-y-2;
  animation-name: float-bob-y-2;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.main-slider__shape-seven {
  position: absolute;
  top: 190px;
  margin-left: 500px;
  z-index: 3;
  visibility: hidden;
  transition: transform 1000ms ease, opacity 1000ms ease;
  opacity: 0;
  transform: translateY(-200px);
}
.main-slider__shape-seven img {
  -webkit-animation: rotated 12s infinite linear;
  animation: rotated 12s infinite linear;
}

.main-slider__shape-eight {
  position: absolute;
  /* bottom: 250px;
  margin-left: 660px; */
      bottom: 143px;
    margin-left: -89px;
  width: 132px;
  height: 132px;
  /* background-color: var(--default-color); */
  border-radius: 50%;
  /* border: 9px solid #E7E9F4; */
  font-size: 65px;
  color: var(--rihdb-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  visibility: hidden;
  transition: transform 1000ms ease, opacity 1000ms ease;
  opacity: 0;
  transform: translateY(200px);
}

.main-slider__shape-eight span {
  -webkit-animation: rotated2 6s infinite linear;
  animation: rotated2 6s infinite linear;
  position: relative;
}

.main-slider__shape-nine {
  position: absolute;
  bottom: 78px;
  margin-left: 685px;
  z-index: 3;
  visibility: hidden;
  transition: transform 1000ms ease, opacity 1000ms ease;
  opacity: 0;
  transform: translateY(200px);
}



.main-slider__shape-nine img {
  -webkit-animation-name: float-bob-y-2;
  animation-name: float-bob-y-2;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
/*# sourceMappingURL=eduact.css.map */
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  width: 30px;
  height: 30px;
}

section#home {
    padding: 0;
    height: 564px;
}


.bannerbtn-section {
  display: flex;
  align-items: center;
  gap: 2rem;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(200px);
}

.bannerbtn-section .btn-primary {
    padding: 10px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--default-color);
    color: var(--background-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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


.eduact-btn {
  background: var(--default-color);
  color: var(--background-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.eduact-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.eduact-btn__text {
  position: relative;
  z-index: 2;
}

ul.home-list {
    margin: 10px 0px 0px 0px;
    z-index: 9;
    position: relative;
    padding: 0;
    transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(200px);
 
}
ul.home-list li {
    width: 100%;
    display: block;
    box-shadow: 0px 0px 0px 0px rgba(19, 16, 34, 0.05);
    margin: 0 0px 16px 0px;
    position: relative;
    padding: 0 0 0px 20px;
    color: #2C3039;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: transparent;
}
ul.home-list li:before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #777;
    border-radius: 50%;
    display: block;
    left: 0;
    top: 7px;
    position: absolute;
}
ul.home-list li strong {
    font-weight: 700;
}
.location{margin:10px 0 0 0;    color: #000000; font-weight: 700;  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(200px);}
  .j-content{justify-content: center;}


  .m-b-extra {
    margin-top: 22px;
}
.m-b-extra .item-icon{
      height: 200px !important; 
}
p.lead-text {
    text-align: justify;
}