/* 
 * K-FIT EVOLUTION - Main Stylesheet
 * Organized and optimized for better performance
 */

/* ===== VARIABLES ===== */
:root {
    --primary-color: #2e2e2e; /* Dark gray - main logo color */
    --secondary-color: #546e7a; /* Blue-gray - line under logo */
    --accent-color: #ff5722; /* Darker blue-gray for contrast */
    --accent-hover-color: #e64a19; /* Hover state for accent color */
    --text-color: #333;
    --light-gray: #f5f5f5; /* Very light gray */
    --medium-gray: #9e9e9e; /* Medium gray */
    --dark-gray: #424242; /* Darker gray */
    --silver: #e0e0e0; /* Silver gray */
    --white: #ffffff;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Montserrat', sans-serif;
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Add padding to main content to prevent it from being hidden behind fixed header */
main {
    padding-top: 65px;
    margin-top: 0;
}

section {
    padding: 80px 0;
}

section.no-padding {
    padding: 0;
}

section.small-padding {
    padding: 40px 0;
}

section.large-padding {
    padding: 120px 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
}

h1, h2 {
    text-transform: uppercase;
    letter-spacing: 3px;
}

h3 {
    letter-spacing: 2px;
}

/* Import Montserrat 800 weight for extra bold headers */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--accent-hover-color);
    border-color: var(--accent-hover-color);
    color: var(--white);
    opacity: 0.9;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
    padding: 12px 30px;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    opacity: 0.9;
    color: var(--white);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    padding: 12px 30px;
}

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

.btn-link {
    background-color: transparent;
    color: var(--primary-color);
    padding: 0;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    position: relative;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.btn-link:hover::after {
    width: 100%;
}

.btn-link:hover {
    color: var(--primary-color);
}

.btn-primary::before, 
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before, 
.btn-secondary:hover::before {
    left: 0;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    padding: 0;
}

.navbar {
    background-color: transparent;
    padding: 0;
    transition: var(--transition);
    width: 100%;
    margin: 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.navbar-brand {
    display: block;
    padding: 10px 0;
}

.navbar-brand img {
    height: 45px;
    transition: var(--transition);
    display: block;
}

.navbar-nav {
    display: flex;
    align-items: center;
    margin-left: auto;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    font-size: 14px; /* Reduced font size for better fit */
}

.nav-item {
    margin: 0 8px;
    display: inline-block;
}

.navbar-nav .nav-link {
    display: inline-block;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 0 10px; /* Reduced padding for better spacing */
    position: relative;
    transition: color 0.3s ease;
    letter-spacing: 0.5px; /* Slight letter spacing adjustment */
}

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

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px; /* Increased gap between text and line */
    left: 10px; /* Align with text padding */
    right: 10px; /* Align with text padding */
    width: auto; /* Width matches text */
    height: 2px;
    background-color: var(--secondary-color);
    opacity: 0; /* Hide by default */
    transform: scaleX(0); /* Start with 0 width */
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    opacity: 1; /* Show on hover/active */
    transform: scaleX(1); /* Expand to full width */
}

.navbar-nav .nav-link.btn {
    color: var(--white);
    padding: 8px 20px;
    margin-left: 5px;
}

.navbar-nav .nav-link.btn:hover::after,
.navbar-nav .nav-link.btn.active::after {
    width: 0; /* Remove underline for button-style links */
}

.navbar-nav .nav-link.btn-primary {
    padding: 8px 20px;
    margin-left: 15px;
    border-radius: 4px;
    background-color: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.navbar-nav .nav-link.btn-primary:hover {
    background-color: var(--accent-hover-color);
    color: var(--white);
    border-color: var(--accent-hover-color);
    opacity: 0.9;
}

/* Add styles for active navigation links */
.navbar-nav .nav-link.active {
    color: var(--secondary-color);
}

.navbar-nav .nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
    background-color: var(--accent-color);
}

.mobile-menu ul li a.active {
    color: var(--secondary-color);
}

/* Make sure the active state doesn't affect button styling */
.navbar-nav .nav-link.btn.active {
    color: var(--white);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--primary-color);
    transition: var(--transition);
    margin-left: 15px;
    padding: 5px;
}

.mobile-menu-toggle:hover {
    color: var(--secondary-color);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 1001; /* Higher than header */
    padding: 50px 20px;
    transition: var(--transition);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    margin-bottom: 15px;
}

.mobile-menu ul li a {
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.mobile-menu ul li a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    color: var(--secondary-color);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu ul li a.btn {
    display: inline-block;
    margin-top: 5px;
    border-bottom: none;
    text-align: center;
}

.mobile-menu ul li a.btn-primary {
    margin: 15px 20px;
    text-align: center;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 4px;
    padding: 10px 20px;
    border-color: var(--accent-color);
}

.mobile-menu ul li a.btn-primary:hover {
    background-color: var(--accent-hover-color);
    color: var(--white);
    border-color: var(--accent-hover-color);
    opacity: 0.9;
}

/* ===== SECTION TITLES ===== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--primary-color);
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.section-title p {
    max-width: 700px;
    margin: 20px auto 0;
    color: var(--medium-gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ===== HERO SECTION ===== */
.hero {
    color: var(--white);
    padding: 150px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(46, 46, 46, 0.5) 0%,
        rgba(46, 46, 46, 0.6) 50%,
        rgba(46, 46, 46, 0.7) 100%) !important;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--white);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-buttons .btn {
    min-width: 180px;
}

/* ===== PAGE HEADER ===== */
.page-header {
    position: relative;
    color: var(--white);
    padding: 100px 0 120px;
    margin-bottom: 80px;
    text-align: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Base style for all page headers - using !important to ensure precedence */
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(46, 46, 46, 0.5) 0%,
        rgba(46, 46, 46, 0.6) 50%,
        rgba(46, 46, 46, 0.7) 100%) !important;
    z-index: 0;
}

/* Individual page headers - using even higher specificity with multiple classes */
.page-header.schools-header::before,
.page-header.professionals-header::before, 
.page-header.businesses-header::before,
.page-header.seniors-header::before {
    background: linear-gradient(90deg, 
        rgba(46, 46, 46, 0.5) 0%,
        rgba(46, 46, 46, 0.6) 50%,
        rgba(46, 46, 46, 0.7) 100%) !important;
}

/* Ensure other styles don't override this */
.schools-header::before,
.professionals-header::before,
.businesses-header::before,
.seniors-header::before {
    background: linear-gradient(90deg, 
        rgba(46, 46, 46, 0.5) 0%,
        rgba(46, 46, 46, 0.6) 50%,
        rgba(46, 46, 46, 0.7) 100%) !important;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom right, transparent 49%, var(--white) 50%);
    z-index: 1;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ===== GRID SYSTEM ===== */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-md-3, .col-md-4, .col-md-6, .col-md-8, .col-md-9, .col-md-12 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 768px) {
    .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
    
    .col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    
    .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .col-md-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
    
    .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }
    
    .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 80px 0;
    position: relative;
    background-color: var(--light-gray);
    overflow: hidden;
    z-index: 1;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    background-attachment: fixed;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 46, 46, 0.7) 0%, rgba(46, 46, 46, 0.7) 100%);
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials .section-title {
    position: relative;
    z-index: 2;
}

.testimonials .section-title h2,
.testimonials .section-title p {
    color: var(--white);
}

.testimonial-item {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

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

.testimonial-content {
    position: relative;
    padding-left: 30px;
}

.testimonial-content::before {
    content: '"';
    font-family: 'Georgia', serif;
    font-size: 60px;
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: -20px;
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    border: 3px solid var(--secondary-color);
}

.author-info h4 {
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
}

.author-info p {
    margin: 5px 0 0;
    color: var(--secondary-color);
    font-size: 14px;
}

/* ===== CTA SECTION ===== */
.cta {
    background-color: var(--light-gray);
    color: var(--dark);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cta::before {
    display: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--dark);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 180px;
    padding: 12px 30px;
    margin: 5px;
}

.cta .btn-primary, 
.cta-section .btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.cta .btn-secondary,
.cta-section .btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.cta .btn-secondary:hover,
.cta-section .btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    opacity: 0.9;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 46, 46, 0.95) 0%, rgba(84, 110, 122, 0.95) 100%);
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

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

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 18px;
}

.footer-social {
    margin-top: 30px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
    animation: slideInUp 1s ease forwards;
}

.animate-slide-left {
    animation: slideInLeft 1s ease forwards;
}

.animate-slide-right {
    animation: slideInRight 1s ease forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.fade-in {
    opacity: 0;
}

.animate-on-scroll.slide-up {
    transform: translateY(50px);
    opacity: 0;
}

.animate-on-scroll.slide-left {
    transform: translateX(-50px);
    opacity: 0;
}

.animate-on-scroll.slide-right {
    transform: translateX(50px);
    opacity: 0;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .feature-card, .service-card {
        flex: 0 0 calc(33.333% - 30px);
    }
    
    .statistic {
        flex: 0 0 calc(25% - 30px);
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .navbar-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer h4 {
        font-size: 1.2rem;
    }
    
    /* Ensure page header background is consistent in different screen sizes */
    .page-header {
        padding: 80px 0 100px;
    }
    
    .page-header::before {
        background: linear-gradient(90deg, 
            rgba(46, 46, 46, 0.5) 0%,
            rgba(46, 46, 46, 0.6) 50%,
            rgba(46, 46, 46, 0.7) 100%) !important;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .feature-card, .service-card {
        flex: 0 0 calc(50% - 30px);
    }
    
    .statistic {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .hero-bg, .page-header-bg {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    
    /* Ensure page header background is consistent in smaller screens */
    .page-header {
        padding: 60px 0 80px;
    }
    
    .page-header::before {
        background: linear-gradient(90deg, 
            rgba(46, 46, 46, 0.5) 0%,
            rgba(46, 46, 46, 0.6) 50%,
            rgba(46, 46, 46, 0.7) 100%) !important;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .testimonial-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .navbar .container {
        padding: 10px 20px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .footer-social a {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
    
    /* Ensure page header background is consistent in mobile */
    .page-header {
        padding: 50px 0 70px;
    }
    
    .page-header::before {
        background: linear-gradient(90deg, 
            rgba(46, 46, 46, 0.5) 0%,
            rgba(46, 46, 46, 0.6) 50%,
            rgba(46, 46, 46, 0.7) 100%) !important;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
}

/* ===== FEATURE CARDS ===== */
.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
}

.feature-card {
    flex: 0 0 calc(33.333% - 30px);
    margin: 15px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--accent-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--accent-color);
    color: var(--white);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.feature-card p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.feature-card .btn {
    margin-top: 10px;
}

/* ===== SERVICE CARDS ===== */
.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
}

.service-card {
    flex: 0 0 calc(33.333% - 30px);
    margin: 15px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.service-content p {
    margin-bottom: 20px;
    color: var(--text-color);
}

/* ===== STATISTICS SECTION ===== */
.statistics {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.statistics-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
}

.statistic {
    flex: 0 0 calc(25% - 30px);
    margin: 15px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.statistic:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.statistic h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* ===== TESTIMONIAL SLIDER ===== */
.testimonial-slider {
    position: relative;
    padding: 30px 0;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    margin: 20px 0;
    position: relative;
    transition: var(--transition);
    opacity: 0;
    transform: translateX(50px);
    display: none;
}

.testimonial:first-child {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    position: relative;
    padding-left: 30px;
}

.testimonial-content::before {
    content: '"';
    font-family: 'Georgia', serif;
    font-size: 60px;
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: -20px;
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    border: 3px solid var(--secondary-color);
}

.author-info h4 {
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
}

.author-info p {
    margin: 5px 0 0;
    color: var(--secondary-color);
    font-size: 14px;
}

/* ===== CTA SECTION ===== */
.cta {
    background-color: var(--light-gray);
    color: var(--dark);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cta::before {
    display: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--dark);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 180px;
    padding: 12px 30px;
    margin: 5px;
}

.cta .btn-primary, 
.cta-section .btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.cta .btn-secondary,
.cta-section .btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.cta .btn-secondary:hover,
.cta-section .btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    opacity: 0.9;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 46, 46, 0.95) 0%, rgba(84, 110, 122, 0.95) 100%);
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

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

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 18px;
}

.footer-social {
    margin-top: 30px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
    animation: slideInUp 1s ease forwards;
}

.animate-slide-left {
    animation: slideInLeft 1s ease forwards;
}

.animate-slide-right {
    animation: slideInRight 1s ease forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.fade-in {
    opacity: 0;
}

.animate-on-scroll.slide-up {
    transform: translateY(50px);
    opacity: 0;
}

.animate-on-scroll.slide-left {
    transform: translateX(-50px);
    opacity: 0;
}

.animate-on-scroll.slide-right {
    transform: translateX(50px);
    opacity: 0;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .feature-card, .service-card {
        flex: 0 0 calc(33.333% - 30px);
    }
    
    .statistic {
        flex: 0 0 calc(25% - 30px);
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .navbar-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer h4 {
        font-size: 1.2rem;
    }
    
    /* Ensure page header background is consistent in different screen sizes */
    .page-header {
        padding: 80px 0 100px;
    }
    
    .page-header::before {
        background: linear-gradient(90deg, 
            rgba(46, 46, 46, 0.5) 0%,
            rgba(46, 46, 46, 0.6) 50%,
            rgba(46, 46, 46, 0.7) 100%) !important;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .feature-card, .service-card {
        flex: 0 0 calc(50% - 30px);
    }
    
    .statistic {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .hero-bg, .page-header-bg {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    
    /* Ensure page header background is consistent in smaller screens */
    .page-header {
        padding: 60px 0 80px;
    }
    
    .page-header::before {
        background: linear-gradient(90deg, 
            rgba(46, 46, 46, 0.5) 0%,
            rgba(46, 46, 46, 0.6) 50%,
            rgba(46, 46, 46, 0.7) 100%) !important;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .testimonial-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .navbar .container {
        padding: 10px 20px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .footer-social a {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
    
    /* Ensure page header background is consistent in mobile */
    .page-header {
        padding: 50px 0 70px;
    }
    
    .page-header::before {
        background: linear-gradient(90deg, 
            rgba(46, 46, 46, 0.5) 0%,
            rgba(46, 46, 46, 0.6) 50%,
            rgba(46, 46, 46, 0.7) 100%) !important;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
}

/* ===== FEATURE CARDS ===== */
.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
}

.feature-card {
    flex: 0 0 calc(33.333% - 30px);
    margin: 15px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--accent-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--accent-color);
    color: var(--white);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.feature-card p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.feature-card .btn {
    margin-top: 10px;
}

/* ===== SERVICE CARDS ===== */
.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
}

.service-card {
    flex: 0 0 calc(33.333% - 30px);
    margin: 15px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.service-content p {
    margin-bottom: 20px;
    color: var(--text-color);
}

/* ===== STATISTICS SECTION ===== */
.statistics {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.statistics-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
}

.statistic {
    flex: 0 0 calc(25% - 30px);
    margin: 15px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.statistic:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.statistic h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* ===== TESTIMONIAL SLIDER ===== */
.testimonial-slider {
    position: relative;
    padding: 30px 0;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    margin: 20px 0;
    position: relative;
    transition: var(--transition);
    opacity: 0;
    transform: translateX(50px);
    display: none;
}

.testimonial:first-child {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    position: relative;
    padding-left: 30px;
}

.testimonial-content::before {
    content: '"';
    font-family: 'Georgia', serif;
    font-size: 60px;
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: -20px;
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    border: 3px solid var(--secondary-color);
}

.author-info h4 {
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
}

.author-info p {
    margin: 5px 0 0;
    color: var(--secondary-color);
    font-size: 14px;
}

/* ===== CTA SECTION ===== */
.cta {
    background-color: var(--light-gray);
    color: var(--dark);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cta::before {
    display: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--dark);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 180px;
    padding: 12px 30px;
    margin: 5px;
}

.cta .btn-primary, 
.cta-section .btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.cta .btn-secondary,
.cta-section .btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.cta .btn-secondary:hover,
.cta-section .btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    opacity: 0.9;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 46, 46, 0.95) 0%, rgba(84, 110, 122, 0.95) 100%);
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 15px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

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

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 18px;
}

.footer-social {
    margin-top: 30px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
    animation: slideInUp 1s ease forwards;
}

.animate-slide-left {
    animation: slideInLeft 1s ease forwards;
}

.animate-slide-right {
    animation: slideInRight 1s ease forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.fade-in {
    opacity: 0;
}

.animate-on-scroll.slide-up {
    transform: translateY(50px);
    opacity: 0;
}

.animate-on-scroll.slide-left {
    transform: translateX(-50px);
    opacity: 0;
}

.animate-on-scroll.slide-right {
    transform: translateX(50px);
    opacity: 0;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .feature-card, .service-card {
        flex: 0 0 calc(33.333% - 30px);
    }
    
    .statistic {
        flex: 0 0 calc(25% - 30px);
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .navbar-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer h4 {
        font-size: 1.2rem;
    }
    
    /* Ensure page header background is consistent in different screen sizes */
    .page-header {
        padding: 80px 0 100px;
    }
    
    .page-header::before {
        background: linear-gradient(90deg, 
            rgba(46, 46, 46, 0.5) 0%,
            rgba(46, 46, 46, 0.6) 50%,
            rgba(46, 46, 46, 0.7) 100%) !important;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .feature-card, .service-card {
        flex: 0 0 calc(50% - 30px);
    }
    
    .statistic {
        flex: 0 0 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .hero-bg, .page-header-bg {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    
    /* Ensure page header background is consistent in smaller screens */
    .page-header {
        padding: 60px 0 80px;
    }
    
    .page-header::before {
        background: linear-gradient(90deg, 
            rgba(46, 46, 46, 0.5) 0%,
            rgba(46, 46, 46, 0.6) 50%,
            rgba(46, 46, 46, 0.7) 100%) !important;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .testimonial-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .navbar .container {
        padding: 10px 20px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .footer-social a {
        width: 35px;
        height: 35px;
        line-height: 35px;
    }
    
    /* Ensure page header background is consistent in mobile */
    .page-header {
        padding: 50px 0 70px;
    }
    
    .page-header::before {
        background: linear-gradient(90deg, 
            rgba(46, 46, 46, 0.5) 0%,
            rgba(46, 46, 46, 0.6) 50%,
            rgba(46, 46, 46, 0.7) 100%) !important;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
}

/* ===== FEATURE CARDS ===== */
.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
}

.feature-card {
    flex: 0 0 calc(33.333% - 30px);
    margin: 15px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--accent-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--accent-color);
    color: var(--white);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.feature-card p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.feature-card .btn {
    margin-top: 10px;
}

/* ===== SERVICE CARDS ===== */
.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
}

.service-card {
    flex: 0 0 calc(33.333% - 30px);
    margin: 15px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.service-content p {
    margin-bottom: 20px;
    color: var(--text-color);
}

/* ===== STATISTICS SECTION ===== */
.statistics {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.statistics-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 -15px;
}

.statistic {
    flex: 0 0 calc(25% - 30px);
    margin: 15px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.statistic:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.statistic h3 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* ===== TESTIMONIAL SLIDER ===== */
.testimonial-slider {
    position: relative;
    padding: 30px 0;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    margin: 20px 0;
    position: relative;
    transition: var(--transition);
    opacity: 0;
    transform: translateX(50px);
    display: none;
}

.testimonial:first-child {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    position: relative;
    padding-left: 30px;
}

.testimonial-content::before {
    content: '"';
    font-family: 'Georgia', serif;
    font-size: 60px;
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: -20px;
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    border: 3px solid var(--secondary-color);
}

.author-info h4 {
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
}

.author-info p {
    margin: 5px 0 0;
    color: var(--secondary-color);
    font-size: 14px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--medium-gray);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-color);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 16px;
    transition: var(--transition);
    z-index: 1;
}

.slider-nav.prev {
    left: -20px;
}

.slider-nav.next {
    right: -20px;
}

.slider-nav:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ===== ABOUT PAGE STYLES ===== */
.about-intro {
    padding: 80px 0;
    background-color: var(--white);
}

.about-intro .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -15px;
}

.about-intro .col-image {
    flex: 0 0 45%;
    max-width: 45%;
    padding: 0 15px;
}

.about-intro .col-content {
    flex: 0 0 55%;
    max-width: 55%;
    padding: 0 15px 0 30px;
}

.about-intro img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
    display: block;
}

.about-intro img:hover {
    transform: scale(1.02);
}

.about-intro h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-intro h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.about-intro p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-intro ul {
    margin-bottom: 30px;
    padding-left: 0;
}

.about-intro ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    list-style-type: none;
}

.about-intro ul li::before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 18px;
}

/* Our Team Section */
.our-team {
    padding: 80px 0;
    background-color: var(--light-gray);
    position: relative;
}

.our-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 46, 46, 0.05) 0%, rgba(84, 110, 122, 0.1) 100%);
    z-index: 0;
}

.our-team .section-title {
    position: relative;
    z-index: 1;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.team-member {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 48%;
    display: flex;
    flex-direction: column;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.member-image {
    width: 100%;
    max-width: 300px;
    height: 300px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.member-image:hover img {
    transform: scale(1.05);
}

.member-info {
    padding: 25px;
}

.member-info h3 {
    margin-bottom: 5px;
    color: var(--primary-color);
    font-weight: 600;
}

.member-title {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-info p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.member-social {
    display: flex;
    gap: 10px;
}

.member-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--light-gray);
    color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
}

.member-social a:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Our Journey Section */
.our-journey {
    padding: 80px 0;
    background-color: var(--white);
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 50px auto 0;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: var(--secondary-color);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
    display: flex;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-date {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 1;
}

.timeline-content {
    width: 45%;
    padding: 25px;
    background-color: var(--light-gray);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -15px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 15px solid var(--light-gray);
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: '';
    position: absolute;
    top: 20px;
    left: -15px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid var(--light-gray);
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.timeline-content p {
    margin-bottom: 0;
    line-height: 1.6;
}

/* Our Values Section */
.our-values {
    padding: 80px 0;
    background-color: var(--light-gray);
    position: relative;
}

.our-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 46, 46, 0.05) 0%, rgba(84, 110, 122, 0.1) 100%);
    z-index: 0;
}

.our-values .section-title {
    position: relative;
    z-index: 1;
}

.values-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.value-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 30%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-color);
    font-size: 28px;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background-color: var(--accent-color);
    color: var(--white);
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 1px;
}

.value-card p {
    margin-bottom: 0;
    line-height: 1.6;
}

/* Responsive Adjustments for About Page */
@media (max-width: 992px) {
    .about-intro {
        padding: 60px 0;
    }
    
    .about-intro .col-image,
    .about-intro .col-content {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .about-intro .col-image {
        margin-bottom: 30px;
    }
    
    .team-member {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .value-card {
        max-width: 45%;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        justify-content: flex-start !important;
    }
    
    .timeline-date {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-intro {
        padding: 50px 0;
    }
    
    .about-intro h2 {
        font-size: 1.6rem;
    }
    
    .value-card {
        max-width: 100%;
    }
    
    .member-image {
        height: 250px;
    }
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 80px 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===== CTA SECTION ===== */
.cta {
    background-color: var(--light-gray);
    color: var(--dark);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cta::before {
    display: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--dark);
}

.cta-content .btn {
    margin: 0 10px;
}

/* ===== FORMS & INPUTS ===== */
.form-group {
    margin-bottom: 20px;
}

.form-control {
    display: block;
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-color);
    background-color: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--secondary-color);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(84, 110, 122, 0.25);
}

.form-control.is-invalid {
    border-color: #dc3545;
}

textarea.form-control {
    resize: vertical;
}

select.form-control {
    height: 48px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 35px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

.error {
    display: block;
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ===== AUTH PAGES (LOGIN/REGISTER) ===== */
.auth-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.auth-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.auth-links {
    text-align: center;
    margin-top: 20px;
}

.auth-links a {
    color: var(--secondary-color);
    font-weight: 500;
}

.auth-links a:hover {
    text-decoration: underline;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 80px 0;
}

.contact-section .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.contact-section .col-content {
    flex: 0 0 60%;
    max-width: 60%;
    padding: 0 15px;
}

.contact-section .col-image {
    flex: 0 0 40%;
    max-width: 40%;
    padding: 0 15px;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.contact-form h3 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-info {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px;
    border-radius: 8px;
    height: 100%;
}

.contact-info h3 {
    margin-bottom: 30px;
    color: var(--white);
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 15px;
    color: var(--secondary-color);
    width: 20px;
    text-align: center;
}

.socials {
    margin-top: 30px;
    display: flex;
}

.socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.socials a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--silver);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.faq-toggle {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

/* Responsive styles for forms and contact */
@media (max-width: 992px) {
    .contact-section .col-content,
    .contact-section .col-image {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .contact-section .col-image {
        margin-top: 30px;
    }
    
    .contact-form,
    .contact-info {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .auth-container {
        padding: 30px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .auth-container,
    .contact-form,
    .contact-info {
        padding: 20px;
    }
}

/* ===== PRICING SECTION STYLES ===== */
.pricing-section, 
.pricing-container,
.pricing-card,
.pricing-header,
.pricing-features,
.pricing-footer,
.pricing-note {
    /* These styles are being removed */
    display: none;
}

/* ===== TESTIMONIALS SECTION STYLES ===== */
.testimonials-section {
    padding: 80px 0;
    background-color: #fff;
}

.testimonials-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.testimonial-item:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    position: relative;
    padding-left: 25px;
    margin-bottom: 20px;
}

.testimonial-content:before {
    content: "\201C";
    font-size: 60px;
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: -20px;
    opacity: 0.3;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.author-info p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}

/* Responsive Adjustments for Testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-item {
        padding: 20px;
    }
    
    .testimonial-content:before {
        font-size: 40px;
    }
}

/* ===== SCHOOLS PAGE STYLES ===== */
.schools-intro {
    padding: 80px 0;
    background-color: var(--white);
}

.schools-intro .row {
    align-items: center;
}

.schools-intro img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
    display: block;
}

.schools-intro img:hover {
    transform: scale(1.02);
}

.schools-intro h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.schools-intro h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.schools-intro p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.schools-intro ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.schools-intro ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    list-style-type: none;
}

.schools-intro ul li::before {
    content: "✓";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.schools-intro .btn {
    margin-top: 10px;
}

.school-programs {
    padding: 80px 0;
    background-color: var(--light-gray);
    position: relative;
}

.school-programs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 46, 46, 0.05) 0%, rgba(84, 110, 122, 0.1) 100%);
    z-index: 0;
}

.school-programs .section-title {
    position: relative;
    z-index: 1;
}

.programs-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.programs-container.two-column {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 1200px) {
    .programs-container {
        gap: 20px;
    }
    
    .program-card {
        padding: 25px;
    }
}

@media (max-width: 992px) {
    .programs-container,
    .programs-container.two-column {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .program-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .programs-container,
    .programs-container.two-column {
        grid-template-columns: 1fr;
    }
    
    .program-card {
        margin-bottom: 30px;
    }
}

/* ===== PROFESSIONALS PAGE STYLES ===== */
.professionals-intro {
    padding: 80px 0;
    background-color: var(--white);
}

.professionals-intro .row {
    align-items: center;
}

.professionals-intro img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
    display: block;
}

.professionals-intro img:hover {
    transform: scale(1.02);
}

.professionals-intro h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.professionals-intro h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.professionals-intro p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.professionals-intro ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.professionals-intro ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    list-style-type: none;
}

.professionals-intro ul li::before {
    content: "✓";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.professionals-intro .btn {
    margin-top: 10px;
}

/* ===== BUSINESS PAGE STYLES ===== */
.business-intro {
    padding: 80px 0;
    background-color: var(--white);
}

.business-intro .row {
    align-items: center;
}

.business-intro img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
        display: block;
    }
    
.business-intro img:hover {
    transform: scale(1.02);
}

.business-intro h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.business-intro h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.business-intro p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.business-intro ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.business-intro ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    list-style-type: none;
}

.business-intro ul li::before {
    content: "✓";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.business-intro .btn {
    margin-top: 10px;
}

/* Business Programs Section - Similar to School Programs */
.business-programs {
    padding: 80px 0;
    background-color: var(--light-gray);
    position: relative;
}

.business-programs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 46, 46, 0.05) 0%, rgba(84, 110, 122, 0.1) 100%);
    z-index: 0;
}

.business-programs .section-title {
    position: relative;
    z-index: 1;
}

/* Professional Programs Section - Similar to School Programs */
.professional-programs {
    padding: 80px 0;
    background-color: var(--light-gray);
    position: relative;
}

.professional-programs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(46, 46, 46, 0.05) 0%, rgba(84, 110, 122, 0.1) 100%);
    z-index: 0;
}

.professional-programs .section-title {
    position: relative;
    z-index: 1;
}

/* Responsive Adjustments for Professionals Page */
@media (max-width: 992px) {
    .professionals-intro {
        padding: 60px 0;
    }
    
    .professional-programs {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .professionals-intro {
        padding: 50px 0;
    }
    
    .professionals-intro .row {
        flex-direction: column;
    }
    
    .professionals-intro img {
        margin-bottom: 30px;
    }
    
    .professionals-intro h2 {
        font-size: 1.8rem;
    }
}

/* Responsive Adjustments for Business Page */
@media (max-width: 992px) {
    .business-intro {
        padding: 60px 0;
    }
    
    .business-programs {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .business-intro {
        padding: 50px 0;
    }
    
    .business-intro .row {
        flex-direction: column;
    }
    
    .business-intro img {
        margin-bottom: 30px;
    }
    
    .business-intro h2 {
        font-size: 1.8rem;
    }
}

/* ===== CALENDAR STYLES ===== */
.calendar-section {
    padding: 80px 0;
    background-color: var(--white);
}

.calendar-section h2 {
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

.calendar-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.calendar {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.calendar-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px;
    text-align: center;
    position: relative;
}

.calendar-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.calendar-nav button {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 16px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background-color: var(--light-gray);
}

.calendar-day {
    background-color: var(--white);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.calendar-day:hover:not(.day-name):not(.empty):not(.disabled) {
    background-color: var(--light-gray);
}

.calendar-day.day-name {
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    cursor: default;
}

.calendar-day.empty, .calendar-day.disabled {
    background-color: var(--light-gray);
    cursor: default;
}

.calendar-day.selected {
    background-color: var(--secondary-color);
    color: var(--white);
}

.booking-form {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin: 20px 0;
}

.time-slot {
    padding: 10px;
    text-align: center;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.time-slot:hover:not(.unavailable) {
    background-color: var(--light-gray);
}

.time-slot.selected {
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.time-slot.unavailable {
    background-color: var(--light-gray);
    color: var(--medium-gray);
    cursor: not-allowed;
}

.my-bookings {
    margin-top: 50px;
}

.bookings-table-container {
    overflow-x: auto;
}

.bookings-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.bookings-table th, .bookings-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.bookings-table th {
    background-color: var(--secondary-color);
    color: var(--white);
}

.bookings-table tr:hover {
    background-color: var(--light-gray);
}

.btn-cancel {
    display: inline-block;
    padding: 5px 10px;
    background-color: #f44336;
    color: var(--white);
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-cancel:hover {
    background-color: #d32f2f;
}

.no-bookings {
    text-align: center;
    color: var(--medium-gray);
    padding: 20px 0;
}

/* ===== FOOTER UPDATES ===== */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--white);
    transition: var(--transition);
}

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

.legal-links {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 15px;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    border-radius: 4px;
    position: relative;
    z-index: 2;
}

.legal-links a {
    color: var(--silver);
    margin: 0 15px;
    font-size: 14px;
    transition: var(--transition);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    position: relative;
    z-index: 3;
}

.legal-links a:hover {
    color: var(--white);
    text-decoration: underline;
}

.copyright {
    text-align: center;
    padding: 15px 0 25px;
    color: var(--silver);
    font-size: 14px;
}

/* ===== PRIVACY POLICY & TERMS OF USE STYLES ===== */
.privacy-policy,
.terms-of-use {
        padding: 60px 0;
    background-color: var(--white);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-content h2 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 10px;
}

.policy-content h3 {
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.policy-content p {
    margin-bottom: 20px;
}

.policy-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-content ul li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .privacy-policy,
    .terms-of-use {
        padding: 40px 0;
    }
    
    .policy-content h2 {
        font-size: 1.5rem;
    }
    
    .policy-content h3 {
        font-size: 1.2rem;
    }
}

.contact-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Booking Page Styles */
.booking-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.booking-form-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.booking-form-container h2 {
    margin-bottom: 30px;
    color: #333;
    font-weight: 600;
    text-align: center;
}

.booking-sidebar {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
}

.booking-info h3 {
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.booking-info h4 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: #555;
    font-weight: 500;
}

.business-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-hours li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.business-hours li:last-child {
    border-bottom: none;
}

.business-hours li span {
    font-weight: 600;
    margin-right: 10px;
}

.page-header {
    position: relative;
    padding: 80px 0;
    text-align: center;
    color: #fff;
    overflow: hidden;
    margin-bottom: 0;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 18px;
    position: relative;
    z-index: 2;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    z-index: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}
.alert {
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

/* Responsive styles for booking page */
@media (max-width: 768px) {
    .booking-sidebar {
        margin-top: 30px;
    }
    
    .page-header {
        padding: 60px 0;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-header p {
        font-size: 16px;
    }
}

/* Admin Calendar Styles */
.calendar-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-title {
    font-size: 24px;
    font-weight: 600;
}

.calendar-nav {
    display: flex;
    gap: 10px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    padding: 10px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.calendar-day {
    min-height: 100px;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 10px;
    position: relative;
}

.calendar-day.empty {
    background-color: #f9f9f9;
}

.calendar-day.today {
    background-color: #fff8e1;
}

.calendar-day-number {
    font-weight: 600;
    margin-bottom: 5px;
}

.calendar-event {
    background-color: #e3f2fd;
    border-left: 3px solid #2196f3;
    padding: 5px;
    margin-bottom: 5px;
    border-radius: 2px;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.calendar-event.confirmed {
    background-color: #e8f5e9;
    border-left-color: #4caf50;
}

.calendar-event.pending {
    background-color: #fff8e1;
    border-left-color: #ffc107;
}

.calendar-event.cancelled {
    background-color: #ffebee;
    border-left-color: #f44336;
    text-decoration: line-through;
}

.calendar-event.blocked {
    background-color: #f5f5f5;
    border-left-color: #9e9e9e;
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
}

.booking-details {
    margin-top: 15px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.booking-details h5 {
    margin-bottom: 10px;
    font-weight: 600;
}

.booking-meta {
    font-size: 12px;
    color: #777;
    margin-top: 10px;
}

/* Todo List Styles */
.todo-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
}

.todo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.todo-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.todo-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.todo-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.todo-item:hover {
    background-color: #f9f9f9;
}

.todo-item:last-child {
    border-bottom: none;
}

.todo-checkbox {
    margin-right: 15px;
}

.todo-content {
    flex-grow: 1;
}

.todo-title {
    font-weight: 500;
    margin-bottom: 5px;
}

.todo-description {
    font-size: 14px;
    color: #777;
}

.todo-actions {
    display: flex;
    gap: 10px;
}

.todo-date {
    font-size: 12px;
    color: #777;
    margin-left: 15px;
}

.todo-item.completed .todo-title {
    text-decoration: line-through;
    color: #999;
}

.todo-form {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Admin Dashboard Styles */
.admin-dashboard {
    padding: 30px 0;
}

.dashboard-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.dashboard-card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.dashboard-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.dashboard-card-description {
    color: #777;
    margin-bottom: 20px;
}

.dashboard-card-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.dashboard-card-link:hover {
    background-color: var(--accent-hover-color);
    color: #fff;
}

/* Admin Header Styles */
.admin-header {
    background-color: #333;
    color: #fff;
    padding: 15px 0;
}

.admin-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.admin-logo:hover {
    color: var(--accent-color);
}

.admin-nav {
    display: flex;
    gap: 20px;
}

.admin-nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.admin-user-menu {
    position: relative;
}

.admin-user-button {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.admin-user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 150px;
    z-index: 1000;
    display: none;
}

.admin-user-dropdown.show {
    display: block;
}

.admin-user-dropdown a {
    display: block;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.admin-user-dropdown a:hover {
    background-color: #f5f5f5;
}

/* Admin Footer Styles */
.admin-footer {
    background-color: #f5f5f5;
    padding: 20px 0;
    text-align: center;
    color: #777;
    font-size: 14px;
    margin-top: 50px;
}

/* Responsive styles for admin pages */
@media (max-width: 768px) {
    .admin-header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .admin-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .calendar-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .calendar-day-header {
        display: none;
    }
    
    .calendar-day {
        min-height: auto;
        padding: 15px;
    }
    
    .calendar-day-number:before {
        content: attr(data-day) " ";
        font-weight: normal;
    }
}

/* User Management Styles */
.user-table {
    width: 100%;
    border-collapse: collapse;
}

.user-table th,
.user-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.user-table th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.user-table tr:hover {
    background-color: #f9f9f9;
}

.user-actions {
    display: flex;
    gap: 10px;
}

.user-search {
    margin-bottom: 20px;
}

.user-pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.user-pagination .page-link {
    padding: 8px 12px;
    margin: 0 5px;
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.user-pagination .page-link:hover {
    background-color: #f5f5f5;
}

.user-pagination .page-link.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}

/* Settings Page Styles */
.settings-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.settings-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.settings-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.settings-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.settings-description {
    color: #777;
    margin-bottom: 20px;
}

.settings-form-group {
    margin-bottom: 20px;
}

.settings-form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.settings-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.settings-tab {
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.settings-tab.active {
    border-bottom-color: var(--accent-color);
    color: var(--accent-color);
    font-weight: 600;
}

.settings-tab:hover {
    color: var(--accent-color);
}

.settings-content {
    display: none;
}

.settings-content.active {
    display: block;
}

/* Inclusive Programs Section Styling */
.inclusive-programs {
    padding: 80px 0;
    position: relative;
    background-color: #f9f9f9;
}

.inclusive-programs .section-title {
    margin-bottom: 50px;
}

.inclusive-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.inclusive-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.inclusive-icon {
    font-size: 50px;
    color: #ff5722;
    margin-bottom: 25px;
    display: inline-block;
    background: rgba(255, 87, 34, 0.1);
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.inclusive-card:hover .inclusive-icon {
    transform: rotateY(180deg);
    background: #ff5722;
    color: #fff;
}

.inclusive-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.inclusive-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.inclusive-card ul {
    padding-left: 0;
    margin-bottom: 25px;
    list-style: none;
}

.inclusive-card ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 28px;
    color: #555;
}

.inclusive-card ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #ff5722;
    font-size: 16px;
}

.inclusive-programs .text-center {
    margin-top: 40px;
}

.inclusive-programs .btn-primary {
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    background-color: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.inclusive-programs .btn-primary:hover {
    background-color: var(--accent-hover-color);
    color: var(--white);
    border-color: var(--accent-hover-color);
    opacity: 0.9;
}

/* Inclusive Page Styling */
.inclusive-intro {
    padding: 80px 0;
    position: relative;
}

.inclusive-intro .row {
    align-items: center;
}

.inclusive-intro img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.inclusive-intro img:hover {
    transform: scale(1.03);
}

.inclusive-intro h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    position: relative;
}

.inclusive-intro h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 60px;
    height: 4px;
    background: #ff5722;
}

.inclusive-intro p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.inclusive-intro ul {
    padding-left: 0;
    margin-bottom: 30px;
}

.inclusive-intro ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    list-style: none;
}

.inclusive-intro ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5722;
}

.disability-programs,
.aboriginal-programs {
    padding: 80px 0;
    position: relative;
}

.disability-programs {
    background-color: #f9f9f9;
}

.disability-programs .section-title,
.aboriginal-programs .section-title {
    margin-bottom: 50px;
}

.inclusive-feature {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.inclusive-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.inclusive-feature h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.inclusive-feature p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .inclusive-intro,
    .disability-programs,
    .aboriginal-programs,
    .inclusive-programs {
        padding: 60px 0;
    }
    
    .inclusive-intro h2,
    .disability-programs h2,
    .aboriginal-programs h2 {
        font-size: 28px;
    }
    
    .inclusive-card,
    .inclusive-feature {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .inclusive-intro .row {
        flex-direction: column-reverse;
    }
    
    .inclusive-intro img {
        margin-bottom: 40px;
    }
    
    .inclusive-intro h2,
    .disability-programs h2,
    .aboriginal-programs h2 {
        font-size: 26px;
    }
    
    .inclusive-programs,
    .disability-programs,
    .aboriginal-programs {
        padding: 50px 0;
    }
}

/* Shared Intro Section Styling */
.inclusive-intro,
.schools-intro,
.business-intro,
.professionals-intro,
.seniors-intro {
    padding: 80px 0;
    position: relative;
}

.inclusive-intro .row,
.schools-intro .row,
.business-intro .row,
.professionals-intro .row,
.seniors-intro .row {
    align-items: center;
}

.inclusive-intro img,
.schools-intro img,
.business-intro img,
.professionals-intro img,
.seniors-intro img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.inclusive-intro img:hover,
.schools-intro img:hover,
.business-intro img:hover,
.professionals-intro img:hover,
.seniors-intro img:hover {
    transform: scale(1.03);
}

.inclusive-intro h2,
.schools-intro h2,
.business-intro h2,
.professionals-intro h2,
.seniors-intro h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    position: relative;
}

.inclusive-intro h2::after,
.schools-intro h2::after,
.business-intro h2::after,
.professionals-intro h2::after,
.seniors-intro h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 60px;
    height: 4px;
    background: #ff5722;
}

.inclusive-intro p,
.schools-intro p,
.business-intro p,
.professionals-intro p,
.seniors-intro p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.inclusive-intro ul,
.schools-intro ul,
.business-intro ul,
.professionals-intro ul,
.seniors-intro ul {
    padding-left: 0;
    margin-bottom: 30px;
    list-style: none;
}

.inclusive-intro ul li,
.schools-intro ul li,
.business-intro ul li,
.professionals-intro ul li,
.seniors-intro ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 28px;
    list-style: none;
    color: #555;
}

.inclusive-intro ul li::before,
.schools-intro ul li::before,
.business-intro ul li::before,
.professionals-intro ul li::before,
.seniors-intro ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #ff5722;
    font-size: 16px;
}

.inclusive-intro .btn-primary,
.schools-intro .btn-primary,
.business-intro .btn-primary,
.professionals-intro .btn-primary,
.seniors-intro .btn-primary {
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .inclusive-intro,
    .schools-intro,
    .business-intro,
    .professionals-intro,
    .seniors-intro {
        padding: 60px 0;
    }

    .inclusive-intro h2,
    .schools-intro h2,
    .business-intro h2,
    .professionals-intro h2,
    .seniors-intro h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .inclusive-intro .row,
    .schools-intro .row,
    .business-intro .row,
    .professionals-intro .row,
    .seniors-intro .row {
        flex-direction: column-reverse;
    }

    .inclusive-intro img,
    .schools-intro img,
    .business-intro img,
    .professionals-intro img,
    .seniors-intro img {
        margin-bottom: 40px;
    }

    .inclusive-intro h2,
    .schools-intro h2,
    .business-intro h2,
    .professionals-intro h2,
    .seniors-intro h2 {
        font-size: 26px;
    }
}

/* Program Sections Styling */
.school-programs,
.business-programs,
.professional-programs,
.senior-programs,
.disability-programs,
.aboriginal-programs {
    padding: 80px 0;
    position: relative;
    background-color: #f9f9f9;
}

.school-programs::before,
.business-programs::before,
.professional-programs::before,
.senior-programs::before,
.disability-programs::before,
.aboriginal-programs::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95));
    z-index: 1;
}

.school-programs .container,
.business-programs .container,
.professional-programs .container,
.senior-programs .container,
.disability-programs .container,
.aboriginal-programs .container {
    position: relative;
    z-index: 2;
}

.school-programs .section-title,
.business-programs .section-title,
.professional-programs .section-title,
.senior-programs .section-title,
.disability-programs .section-title,
.aboriginal-programs .section-title {
    margin-bottom: 50px;
    text-align: center;
}

.school-programs .section-title h2,
.business-programs .section-title h2,
.professional-programs .section-title h2,
.senior-programs .section-title h2,
.disability-programs .section-title h2,
.aboriginal-programs .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.school-programs .section-title h2::after,
.business-programs .section-title h2::after,
.professional-programs .section-title h2::after,
.senior-programs .section-title h2::after,
.disability-programs .section-title h2::after,
.aboriginal-programs .section-title h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -15px;
    width: 60px;
    height: 4px;
    background: #ff5722;
    transform: translateX(-50%);
}

.school-programs .section-title p,
.business-programs .section-title p,
.professional-programs .section-title p,
.senior-programs .section-title p,
.disability-programs .section-title p,
.aboriginal-programs .section-title p {
    color: #666;
    margin-top: 20px;
    font-size: 18px;
}

@media (max-width: 992px) {
    .school-programs,
    .business-programs,
    .professional-programs,
    .senior-programs,
    .disability-programs,
    .aboriginal-programs {
        padding: 60px 0;
    }
    
    .school-programs .section-title h2,
    .business-programs .section-title h2,
    .professional-programs .section-title h2,
    .senior-programs .section-title h2,
    .disability-programs .section-title h2,
    .aboriginal-programs .section-title h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .school-programs,
    .business-programs,
    .professional-programs,
    .senior-programs,
    .disability-programs,
    .aboriginal-programs {
        padding: 50px 0;
    }
    
    .school-programs .section-title h2,
    .business-programs .section-title h2,
    .professional-programs .section-title h2,
    .senior-programs .section-title h2,
    .disability-programs .section-title h2,
    .aboriginal-programs .section-title h2 {
        font-size: 26px;
    }
}

.inclusive-intro .btn-primary,
.schools-intro .btn-primary,
.business-intro .btn-primary,
.professionals-intro .btn-primary,
.seniors-intro .btn-primary {
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 10px;
    background-color: var(--accent-color);
    color: var(--white);
    border-color: var(--accent-color);
}

.inclusive-intro .btn-primary:hover,
.schools-intro .btn-primary:hover,
.business-intro .btn-primary:hover,
.professionals-intro .btn-primary:hover,
.seniors-intro .btn-primary:hover {
    background-color: var(--accent-hover-color);
    color: var(--white);
    border-color: var(--accent-hover-color);
    opacity: 0.9;
}

.programs-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.programs-container.two-column {
    grid-template-columns: repeat(2, 1fr);
}

.program-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.program-icon {
    font-size: 40px;
    color: #ff5722;
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(255, 87, 34, 0.1);
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.program-card:hover .program-icon {
    transform: rotateY(180deg);
    background: #ff5722;
    color: #fff;
}

.program-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.program-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.program-card ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.program-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 28px;
    color: #555;
}

.program-card ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #ff5722;
    font-size: 16px;
}

.program-card ul li:last-child {
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .programs-container {
        gap: 20px;
    }
    
    .program-card {
        padding: 25px;
    }
}

@media (max-width: 992px) {
    .programs-container,
    .programs-container.two-column {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .program-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .programs-container,
    .programs-container.two-column {
        grid-template-columns: 1fr;
    }
    
    .program-card {
        margin-bottom: 30px;
    }
}
  