:root {  
  --light:#f8f9fa;
  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-family-alt: 'Arial', sans-serif;
}


/* ===== LIGHT MODE THEMES ===== */
[data-theme="spring"] {
  --Primary: #1E3A5F; /*(Navy Blue, keeps consistency)*/
  --Secondary: #3FA796; /*(Fresh Green-Teal)*/
  --Accent: #F7C948; /*(Warm Yellow)*/
  --Background: #FDFCF6; /*(Off-White, slightly warm)*/
  --Text: #2E2E2E; /*(Charcoal)*/
  
  --top-nav: var(--Primary); 
  --top-nav-text: #ffffff;
  --buttons: var(--Secondary); 
  --headings: var(--Secondary);
  --subheadings: var(--Secondary); 
  --links: var(--Secondary);
  --hover: var(--Accent);
  --footer: var(--Primary);
  --footer-text: #ffffff;
  --footer-link-hover: var(--Secondary);
  --background: var(--Background); 
  --bg-light: #FDFCF6;
}

[data-theme="summer"] {
  --Primary: #1E3A5F; /*(Navy Blue)*/
  --Secondary: #0077B6; /*(Ocean Blue)*/
  --Accent: #FF7E5F; /*(Coral-Orange)*/
  --Background: #FAFAFA; /*(Neutral Light)*/
  --Text: #2E2E2E; /*(Charcoal)*/
  
  --top-nav: var(--Primary); 
  --top-nav-text: #ffffff;
  --buttons: var(--Secondary); 
  --headings: var(--Secondary);
  --subheadings: var(--Secondary); 
  --links: var(--Secondary);
  --hover: var(--Accent);
  --footer: var(--Primary);
  --footer-text: #ffffff;
  --footer-link-hover: var(--Secondary);
  --background: var(--Background);   
  --bg-light: #FAFAFA;
  
}

[data-theme="fall"] {
  --Primary: #1E3A5F; /*(Navy Blue)*/
  --Secondary: #9A3412; /*(Rust Orange-Brown)*/
  --Accent: #CFAF5E; /*(Warm Gold)*/
  --Background: #F9F6F1; /*(Cream)*/
  --Text: #2E2E2E; /*(Charcoal)*/

  --top-nav: var(--Primary); 
  --top-nav-text: #ffffff;
  --buttons: var(--Secondary); /* Highlight buttons with rust */
  --headings: var(--Primary); /* Ensure accessibility with navy */
  --subheadings: var(--Primary); /* Consistency with main headings */
  --links: var(--Secondary); /* Keep links distinct and warm */
  --hover: var(--Accent); /* Use warm gold for hover effects */
  --footer: var(--Primary);
  --footer-text: #ffffff;
  --footer-link-hover: var(--Accent); /* Use warm gold for footer link hover */
  --background: var(--Background);
  --bg-light: #fbfaf9;
  --bg-light2:  rgba(224, 224, 224, 0.3);
  --bg-light3: #fff;
  --ptext: var(--Text);
}

[data-theme="winter"] {
  --Primary: #1E3A5F; /*(Navy Blue)*/
  --Secondary: #64748B; /*(Slate Gray)*/
  --Accent: #60A5FA; /*(Frosty Blue)*/
  --Background: #F4F6F8; /*(Cool Gray)*/
  --Text: #2E2E2E; /*(on light sections)*/

  --top-nav: var(--Primary); 
  --top-nav-text: #ffffff;
  --buttons: var(--Secondary); 
  --headings: var(--Secondary);
  --subheadings: var(--Secondary); 
  --links: var(--Secondary);
  --hover: var(--Accent);
  --footer: var(--Primary);
  --footer-text: #ffffff;
  --footer-link-hover: var(--Secondary);
  --background: var(--Background); 
  --bg-light: #F4F6F8;
}

/* ===== DARK MODE THEMES ===== */
[data-theme="spring-dark"] {
  --Primary: #1E3A5F; /* Navy Blue */
  --Secondary: #3FA796; /* Fresh Green-Teal */
  --Accent: #F7C948; /* Warm Yellow */
  --Background: #1A1C1E; /* Dark Charcoal */
  --Text: #F5F5F5; /* Soft White */

  --top-nav: var(--Primary);
  --top-nav-text: #ffffff;
  --buttons: var(--Secondary);
  --headings: var(--Accent);
  --subheadings: var(--Secondary);
  --links: var(--Accent);
  --hover: #FFD75E; /* Brighter yellow for visibility */
  --footer: var(--Primary);
  --footer-text: #ffffff;
  --footer-link-hover: var(--Accent);
  --background: var(--Background);
  --ptext: var(--light);  
  --bg-light: #2d2d2c;
}

[data-theme="summer-dark"] {
  --Primary: #1E3A5F; /* Navy Blue */
  --Secondary: #0077B6; /* Ocean Blue */
  --Accent: #FF7E5F; /* Coral-Orange */
  --Background: #121212; /* True Dark */
  --Text: #F5F5F5;

  --top-nav: var(--Primary);
  --top-nav-text: #ffffff;
  --buttons: var(--Secondary);
  --headings: var(--Accent);
  --subheadings: var(--Secondary);
  --links: var(--Accent);
  --hover: #FF9B80; /* Brighter coral for hover */
  --footer: var(--Primary);
  --footer-text: #ffffff;
  --footer-link-hover: var(--Accent);
  --background: var(--Background);
  
  --bg-light: #2b2a2a;
}

[data-theme="fall-dark"] {
  --Primary: #1a57a7; /* Navy Blue */
  --Secondary: #9A3412; /* Rust Orange-Brown */
  --Accent: #CFAF5E; /* Warm Gold */
  --Background: #181818; /* Deep Dark Gray */
  --Text: #F5F5F5;

  --top-nav: var(--Primary);
  --top-nav-text: #ffffff;
  --buttons: var(--Accent);
  --headings: var(--Accent);
  --subheadings: var(--Secondary);
  --links: var(--Accent);
  --hover: #E2C97D; /* Brighter gold hover */
  --footer: var(--Primary);
  --footer-text: #ffffff;
  --footer-link-hover: var(--Accent);
  --background: var(--Background);  
  --bg-light: #272727;
  --bg-light2:  rgba(2, 2, 2, 0.819);
  --bg-light3: rgba(2, 2, 2, 0.819);
  --ptext: var(--light);
}

[data-theme="winter-dark"] {
  --Primary: #1E3A5F; /* Navy Blue */
  --Secondary: #64748B; /* Slate Gray */
  --Accent: #60A5FA; /* Frosty Blue */
  --Background: #0F1114; /* Icy Deep Gray */
  --Text: #F5F5F5;

  --top-nav: var(--Primary);
  --top-nav-text: #ffffff;
  --buttons: var(--Secondary);
  --headings: var(--Accent);
  --subheadings: var(--Secondary);
  --links: var(--Accent);
  --hover: #8BC6FF; /* Brighter Frosty Hover */
  --footer: var(--Primary);
  --footer-text: #ffffff;
  --footer-link-hover: var(--Accent);
  --background: var(--Background);
}


/* ===== WEATHER EFFECTS ===== */
.weather-effect {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 999;
}

/* ❄️ Snowflakes (Winter) */
.snowflake {
  position: absolute;
  top: -10px;
  color: var(--light);
  opacity: 0.9;
  font-size: 1.2em;
  animation: snow-fall 10s linear forwards;
}
/* @keyframes snow-fall {
  0%   { transform: translateY(-10px) translateX(0); opacity: 1; }
  100% { transform: translateY(100vh) translateX(20px); opacity: 0.8; }
} */
@keyframes snow-fall {
  0%   { transform: translateY(-10px) translateX(0); opacity: 1; }
  100% { transform: translateY(100vh) translateX(var(--drift, 0px)); opacity: 0.8; }
}

/* 🍂 Leaves (Fall) */
.leaf {
  position: absolute;
  top: -20px;
  color: #CC5500;
  opacity: 0.9;
  font-size: 3.5em;
  animation: leaf-fall 8s linear forwards;
}
/* @keyframes leaf-fall {
  0%   { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
} */
@keyframes leaf-fall {
  0%   { transform: translateY(-20px) rotate(0deg) translateX(0); opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg) translateX(var(--drift, 0px)); opacity: 0; }
}

/* ✿ Petals (Spring) */
.petal {
  position: absolute;
  top: -20px;
  color: pink;
  opacity: 0.85;
  font-size: 1em;
  animation: petal-fall 12s linear forwards;
}
@keyframes petal-fall {
  0%   { transform: translateY(-20px) translateX(0) rotate(0deg); opacity: 1; }
  100% { transform: translateY(100vh) translateX(var(--drift, 0px)) rotate(180deg); opacity: 0; }
}

/* 🌧️ Raindrops (Summer) */
.raindrop {
  position: absolute;
  top: -20px;
  width: 2px;
  height: 15px;
  background: var(--light);
  border-radius: 50%;
  opacity: 0.6;
  animation: rain-fall 1.5s linear forwards;
}
@keyframes rain-fall {
  0%   { transform: translateY(-20px); opacity: 0.8; }
  100% { transform: translateY(100vh); opacity: 0; }
}
/* End of weather effects */

.fw-bold {
    font-weight: 700;
}

.text-custom-fccs-heading-color {
    color: var(--headings) !important;
}
.text-custom-fccs-subheading-color {
    color: var(--subheadings) !important;
}

body {
  font-family: var(--font-family);
}
.custom-p{
    color: var(--ptext) !important;
}
.custom-bg-light {
  background-color: var(--bg-light) !important;
}
.custom-bg-light1 {
  background-color: var(--bg-light2) !important;
}
.custom-card-bg {
  background-color: var(--bg-light3) !important;
}
/* ===== Navbar Styles ===== */
.top-bar {
    background-color: var(--top-nav); 
    color: var(--light) !important;
}

.top-bar-text {
    color: var(--top-nav-text) !important;
}

/* Default state - dark logo visible, light logo hidden */
.navbar-logo-dark {
  display: block;
  height: 60px;
  transition: all 0.3s ease;
}
.navbar-logo-light {
  display: none;
  height: 60px;
  transition: all 0.3s ease;
}

/* Scrolled state - light logo visible, dark logo hidden */
#mainNavbar.scrolled .navbar-logo-dark {
  display: none;
}
#mainNavbar.scrolled .navbar-logo-light {
  display: block;
}

/* ===== Navbar Colors & Transitions ===== */
#mainNavbar {
  background-color: var(--light) !important; /* Start transparent */
  transition: all 0.3s ease;
}
#mainNavbar.scrolled {
    background-color: var(--light) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ===== Nav Links ===== */
/* Default state */
.navbar-light .navbar-nav .nav-link {
    color: var(--links) !important;
    font-weight: bold;
    transition: color 0.3s ease;
}
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--hover) !important;
}

/* Scrolled state */
#mainNavbar.scrolled.navbar-light .navbar-nav .nav-link {
    color: #56565a !important;
}
#mainNavbar.scrolled.navbar-light .navbar-nav .nav-link:hover,
#mainNavbar.scrolled.navbar-light .navbar-nav .nav-link:focus,
#mainNavbar.scrolled.navbar-light .navbar-nav .nav-link.active {
    color: var(--hover) !important;
}
/* ===== Dropdown Menu Styling ===== */
.navbar-light .dropdown-menu {
  border: none;
  border-radius: 0 0 8px 8px;
  transition: background-color 0.3s ease;
}

.navbar-light .dropdown-item {
  color: var(--links) !important;

  font-weight: 500;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.navbar-light .dropdown-item:hover,
.navbar-light .dropdown-item:focus {
  color: var(--hover) !important;
  background-color: rgba(255, 255, 255, 0.1);
}

/* ===== When Navbar is Scrolled ===== */
#mainNavbar.scrolled .dropdown-menu {
  background-color: var(--light); /* match scrolled navbar */
}

#mainNavbar.scrolled .dropdown-item {
  color: #56565a !important;
}

#mainNavbar.scrolled .dropdown-item:hover,
#mainNavbar.scrolled .dropdown-item:focus {
  color: var(--hover) !important;
  background-color: rgba(0, 0, 0, 0.05);
}
/* Kill Bootstrap's blue background */
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active,
.dropdown-menu .dropdown-item:focus {
    background-color: transparent !important; /* or transparent */
    color: var(--hover) !important;
}

/* Screen loading overlay styles */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-spinner {
    text-align: center;
}

/* Optional: Add animation to the spinner */
.spinner-border {
    width: 3rem;
    height: 3rem;
    animation-duration: 0.75s;
}
/* Hero Section with YouTube Background */
.hero-section {
  position: relative;
  height: 100vh;
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}


.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}


.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2));
  z-index: -1;
}

/* Force GTranslate text to white */
.gtranslate_wrapper * {
    color: var(--light) !important;  
}

/* Optional: remove underline on hover */
.gtranslate_wrapper a {
    text-decoration: none !important;
}

/* Optional: subtle hover effect */
.gtranslate_wrapper a:hover {
    color: var(--background) !important; /* Bootstrap warning/yellow */
}
.service-image-container {
height: 60%; /* bigger images */
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
padding: 2px;
/* border: 1px solid red; */
}

.service-image {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  opacity: 0;
  transform: scale(0.2);
  border-radius: 15px;
  object-fit: cover;
}

/* WOW.js will add this class on scroll */
.animate__fadeInScale {
  animation: fadeInScale 1s ease-out forwards;
}

.service-card .card-body {
  padding: 1.5rem 1rem; /*reduce side space inside*/
  
}
/* animation keyframes */
@keyframes fadeInScale {
  to {
    opacity: 1;
    transform: scale(1);
  }
}


  .service-card {
    transition: transform 0.3s;
    background-color: var(--bg-light2);
    height: 100%;
  }

  .service-card:hover {
    transform: translateY(-10px);
  }

  
  .testimonial-card {
    background-color: var(--light);
    border-radius: 10px;
    padding: 25px;
  }

  .footer {
    background-color: var(--footer);
    color: var(--light);
    padding: 60px 0 30px;
  }


  /* Section background */
.get-started-section {
  background-color: var(--background);
  /* color: red; */
}

/* Card styling */
.custom-card {
  border-radius: 20px;
  border: 0;
  box-shadow: #fd0d0d33 10px 4px 12px;
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
}

/* Button styling */
.custom-btn {
  background-color: var(--buttons);
  color: var(--light);
  border-radius: 30px;
  padding: 10px 40px 10px 20px;
  position: relative;
  display: inline-block;
  font-weight: 500;
}

.custom-btn:hover {
  background-color: var(--hover);
  color: white;
}

/* Button icon */
.btn-icon {
  background: white;
  color: #555;
  border-radius: 50%;
  padding: 6px 10px;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

/* Hover effect: arrow pops out */
.custom-btn:hover .btn-icon {
  transform: translateY(-50%) scale(1.1);
}

/*- Swiper Styles */

/* Arrow buttons */
.swiper-button-next,
.swiper-button-prev {
  width: 30px;
  height: 30px;
  font-size: 18px;
  color: #000;
  background: transparent;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

/* Position arrows outside */
.swiper-button-prev {
  left: -40px;
}

.swiper-button-next {
  right: -40px;
}

/* Hover effect */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: var(--buttons); /* Bootstrap primary */
}

/* Adjust arrow icon size */
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;
}

/* Allow arrows outside */
.swiper-wrapper-container {
  position: relative;
  overflow: visible;
}

.testimonial-swiper {
  overflow: hidden; /* keep slides inside */
  position: relative;
}

/* Primary Button Style */
.btn-fccs {
    background-color: var(--headings); 
    color: white;              /* Text color */
    border: 1px solid var(--headings); /* Border to match the background */
    padding: 10px 20px;        /* Button padding */
    font-size: 16px;           /* Font size */
    font-weight: 600;          /* Bold font */
    border-radius: 5px;       /* Rounded corners */
    text-align: center;       /* Center the text */
    text-decoration: none;    /* Remove underline */
    display: inline-block;    /* Align properly */
    cursor: pointer;         /* Show pointer on hover */
    transition: background-color 0.3s, border-color 0.3s; /* Smooth transition */
}

/* Hover effect */
.btn-fccs:hover {
    background-color: var(--hover); 
    border-color: var(--hover);     
}

/* Active (clicked) state */
.btn-fccs:active {
    background-color: var(--hover);
    border-color: var(--hover);
}

/* Focus (keyboard navigation) state */
.btn-fccs:focus {
    outline: none; /* Remove default outline */
    box-shadow: 0 0 0 0.2rem var(--hover); /* Light blue shadow */
}

.btn-outline-fccs {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: var(--buttons); 
    background-color: transparent;
    border: 1px solid var(--buttons);
    border-radius: 0.375rem;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.btn-outline-fccs:hover,
.btn-outline-fccs:focus {
    color: var(--light);
    background-color: var(--hover);
    border-color: var(--hover);
    text-decoration: none;
}

.btn-outline-fccs:active {
    background-color: var(--buttons);
    border-color: var(--buttons);
}

.btn-outline-fccs:disabled {
    color: var(--buttons);;
    background-color: transparent;
    border-color: var(--buttons);
    opacity: 0.65;
    pointer-events: none;
}

/* Dark/Light Mode Toggle Button */
.toggle-dark-light-mode {
  position: fixed;   /* Keeps the button fixed on the screen */
  bottom: 100px;      /* Position it 20px from the bottom */
  right: 30px;       /* Position it 20px from the right side */
  background-color: var(--buttons); /* Primary button color */
  color: var(--light);       /* White icon color */
  border: none;      /* Remove border */
  border-radius: 50%; /* Make it circular */
  width: 50px;        /* Size of the button */
  height: 50px;       /* Same as width for a circular button */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 10px var(--buttons); /* Add subtle shadow */
  cursor: pointer;   /* Change the cursor to pointer */
  z-index: 1000;      /* Ensure it appears on top of other elements */
  transition: all 0.3s ease-in-out; /* Smooth transitions */
}

.toggle-dark-light-mode:hover {
  background-color: var(--hover); /* Change background color on hover */
  transform: scale(1.1); /* Slightly enlarge on hover */
}

.toggle-dark-light-mode i {
  font-size: 20px; /* Adjust icon size */
}

/* back to top button */
#btn-back-to-top {
  position: fixed;
  bottom: 25px;
  right: 30px;
  background-color: var(--buttons); /* Primary button color */
  color: var(--light);       /* White icon color */
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: none; /* Hidden by default */
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 10px var(--buttons);
  cursor: pointer;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}
#btn-back-to-top:hover {
  background-color: var(--hover);
  transform: scale(1.1);
}
#btn-back-to-top i {
  font-size: 20px;
}

/* About Page Hero Section */
.about-hero {
    position: relative;
    height: 30vh;
    color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.about-hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6); /* Darken the image for better text contrast */
}
.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--top-nav-text);
}
.about-hero-subtitle {
    font-size: 1.5rem;
    color: var(--light);
}

#aboutCarousel {
    max-width: 500px;
    margin: auto;
    width: 100%;
}

#aboutCarousel .carousel-item img {
    height: 500px;
    object-fit: cover;
    width: 100%;
    border-radius: 8px;
}

/* Responsive adjustments for mobile */
@media (max-width: 576px) {
    #aboutCarousel .carousel-item img {
        height: 350px; /* reduce height on small screens */
    }
}

.play-btn {
  position: absolute;
  bottom: 30px;
  left: 50px;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-btn svg {
  position: absolute;
  width: 100px;
  height: 100px;
  transform: rotate(0deg);
  animation: spin 10s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.play-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /* background: rgba(255, 255, 255, 0.95); */
  background: var(--buttons);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  border: 2px solid var(--buttons);
  position: relative;
}
.play-circle:hover {
  background: var(--hover); /* Bootstrap primary */
  cursor: pointer;
  border-color: var(--hover);
}

.play-circle i {
  color: var(--background);
  font-size: 30px;
}
.play-text {
  font-size: 10px;
  fill: var(--links);
  font-weight: bold;
  letter-spacing: 2px;
}
.play-text:hover {
  fill: var(--buttons); /* Bootstrap primary */
  cursor: pointer;
}
/* Working Hours Section */
.working-hours-section {
  background: #f8f9fa;
  padding: 50px 0;
}

/* clinical services page */
.clinical-service-hero {
    position: relative;
    height: 25vh;
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.clinical-service-hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.3); /* Darken the image for better text contrast */
}
.clinical-service-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--top-nav-text);
}
.clinical-service-hero-subtitle {
    font-size: 1.5rem;
    color: var(--light);
}
.clinical-service-card {
    transition: transform 0.3s;
    height: 100%;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

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

.icon-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(78, 115, 223, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.icon-container i {
    font-size: 2rem;
    color: var(--subheadings);
}

.section-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--subheadings);
}

.section-title.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

.strategy-badge {
    background-color: rgba(78, 115, 223, 0.1);
    color: var(--subheadings);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    margin: 0.25rem;
    font-size: 0.9rem;
}
.service-list {
    list-style-type: none;
    padding: 0;
}

.service-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list i {
    color: var(--subheadings);
    margin-right: 0.5rem;
}

.program-highlight {
    background-color: rgba(78, 115, 223, 0.05);
    border-left: 4px solid var(--buttons);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 1.5rem 0;
}
.bg-light-custom {
    background-color: var(--background);
}

/*disability services page*/
.location-card {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
}
.activity-badge {
    background-color: rgba(78, 115, 223, 0.1);
    color: var(--buttons);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    margin: 0.25rem;
    font-size: 0.9rem;
}
/*out reach page*/
.program-card {
    transition: transform 0.3s;
    height: 100%;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.contact-box {
    background-color: white;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/*recreations page */
.activity-card {
    transition: transform 0.3s;
    height: 100%;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
/*job vacancies page*/
.job-card {
    transition: transform 0.3s;
    height: 100%;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.benefit-item {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    text-align: center;
}
.application-box {
    background-color: white;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.position-badge {
    background-color: rgba(78, 115, 223, 0.1);
    color: var(--buttons);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    margin: 0.25rem;
    font-size: 0.9rem;
}

/* excel center page */
.approach-item {
    background-color: var(--bg-light3);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    text-align: center;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Virtual Tour Styles */
.virtual-tour-container {
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-bottom: 2rem;
}

.scene-selector {
    background-color: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.scene-button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    border: none;
    border-radius: 5px;
    background-color: #f8f9fc;
    transition: all 0.3s;
}

.scene-button:hover, .scene-button.active {
    background-color: var(--buttons);
    color: white;
}

.tour-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Hotspot customization */
.pnlm-hotspot {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: var(--buttons);
    opacity: 0.8;
    transition: all 0.3s;
    border: 2px solid white;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.pnlm-hotspot:hover {
    opacity: 1;
    transform: scale(1.2);
}

.pnlm-hotspot:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border: 2px solid var(--buttons);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    transform: translate(-50%, -50%);
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    70% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
}

/* Fullscreen mode adjustments */
.pnlm-container.pnlm-fullscreen-toggle-supported {
    border-radius: 0;
}

.expansion-announcement {
    background: linear-gradient(135deg, #4e73df 0%, #224abe 100%);
    color: white;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}
/* LOL page */
.lol-hero {
    position: relative;
    height: 50vh;
    min-height: 300px; /* Ensure it has a decent height on small screens */
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0 20px; /* Add padding for mobile side spacing */
}

.lol-hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6); /* Darken the image for better text contrast */
}

.lol-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--top-nav-text);
}

.lol-hero-subtitle {
    font-size: 1.5rem;
    color: var(--light);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .lol-hero {
        height: auto;
        padding: 60px 20px; /* More vertical spacing on small screens */
    }

    .lol-hero-title {
        font-size: 2rem;
    }

    .lol-hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .lol-hero-title {
        font-size: 1.6rem;
    }

    .lol-hero-subtitle {
        font-size: 1rem;
    }
}

.feature-card {
    transition: transform 0.3s;
    height: 100%;
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.feature-card:hover {
    transform: translateY(-10px);
}
.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--Accent);
}
.schedule-box {
    border-radius: 15px;
    padding: 2rem;
}
.btn-enroll {
    background-color: #FFC107;
    border: none;
    padding: 12px 30px;
    font-weight: bold;
}
.btn-enroll:hover {
    background-color: #e0a800;
}

/*for the lol list program schedule*/
/* Base container style */
.custom-list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem;
}

/* Individual item styles */
.custom-list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--bg-light);
  color: var(--Text);
  text-decoration: none;
}

/* Optional hover effect */
/* .custom-list-group-item:hover {
  background-color: #f8f9fa;
} */

/* Remove bottom border for all but the last item */
.custom-list-group-item:not(:last-child) {
  border-bottom: none;
}

/* Rounded corners for first and last items */
.custom-list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.custom-list-group-item:last-child {
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
/* Flush style - removes outer borders and spacing */
.custom-list-group-flush .custom-list-group-item {
  border-width: 0 0 1px;
  border-radius: 0;
}

/* Remove last border in a flush list */
.custom-list-group-flush .custom-list-group-item:last-child {
  border-bottom-width: 0;
}

/* center-locations page */
.center-locations-hero {
    position: relative;
    height: 50vh;
    min-height: 300px; /* Ensure it has a decent height on small screens */
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0 20px; /* Add padding for mobile side spacing */
}

.center-locations-hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6); /* Darken the image for better text contrast */
}

.center-locations-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--top-nav-text);
}

.center-locations-hero-subtitle {
    font-size: 1.5rem;
    color: var(--light);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .center-locations-hero {
        height: auto;
        padding: 60px 20px; /* More vertical spacing on small screens */
    }

    .center-locations-hero-title {
        font-size: 2rem;
    }

    .center-locations-hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .center-locations-hero-title {
        font-size: 1.6rem;
    }

    .center-locations-hero-subtitle {
        font-size: 1rem;
    }
}


.values-section {
    background-color: var(--light);
    padding: 5rem 0;
}

.program-list {
    list-style-type: none;
    padding-left: 0;
}

.program-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.program-list li:before {
    content: '✓';
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.application-box {
    /* background: white; */
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    padding: 30px;
}
.form-step {
    display: none;
}
.form-step-active {
    display: block;
}
.progress {
    height: 10px;
    margin-bottom: 30px;
}
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.step {
    text-align: center;
    flex: 1;
    position: relative;
}
.step-number {
    width: 30px;
    height: 30px;
    background-color: #dee2e6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}
.step.active .step-number {
    background-color: var(--headings);
}
.step.completed .step-number {
    background-color: var(--hover);
}
.step-label {
    font-size: 0.85rem;
    color: var(--buttons);
}
.step.active .step-label {
    color: var(--headings);
    font-weight: 500;
}
/* Container for the progress bar */
.progress {
  width: 100%;
  background-color: #e9ecef;  /* Light gray background */
  border-radius: 0.25rem;
  overflow: hidden;
  height: 1.5rem;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

/* The progress indicator */
.progress-bar {
  height: 100%;
  background-color: var(--headings);  /* Primary blue color */
  width: 0;  /* Default width (0%) */
  transition: width 0.4s ease;
}


/* Change the color of inactive tabs */
.nav-tabs .nav-link {
  background-color: var(--background); /* Light grey */
  color: var(--ptext); /* Darker text color */
  border: 1px solid var(--background); /* Light border */
}

/* Change the color of active tabs */
.nav-tabs .nav-link.active {
  background-color: var(--headings); /* Blue background */
  color: white; /* White text */
  border-color: var(--headings); /* Border color matches the background */
}

/* Optionally, you can add hover effects */
.nav-tabs .nav-link:hover {
  background-color: var(--hover); /* Light hover color */
  color: var(--light); /* Darker text color on hover */
}

/* Style the tab content */
.tab-content {
  padding: 15px;
  /* border-top: 1px solid red; */
}

.referral-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 3rem;
}
        
.form-container {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
        
.info-container {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 1.5rem;
}
        
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    /* color: ; */
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--background);
    border-radius: 5px;
    font-size: 1rem;
    /* background-color: var(--bg-light); */
}

.form-control:focus {
    outline: none;
    border-color: var(--bg-light);
}

.btn-submit {
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    /* transition: background 0.3s; */
    width: 100%;
}

.btn-submit:hover {
    background: var(--hover);
}

.info-box {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.info-box h3 {
    /* color: #3a7ca5; */
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--headings);
}
.benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 1rem;
}

.benefit-card {
    flex: 1;
    min-width: 200px;
    background: var(--Background);
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
}

.benefit-card i {
    font-size: 2rem;
    color: var(--headings);
    margin-bottom: 0.5rem;
}


.confirmation {
    display: none;
    background: #4CAF50;
    color: white;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    text-align: center;
}

@media (max-width: 768px) {
    .referral-container {
        flex-direction: column;
    }
    
}

