:root {
    /*--brand: #0b5560;*/
    --brand: #fe3300;
    --brand-dark: #083c3f;
    --brand-light: #0f7a72;
    --accent: #0f7a72;
    --light-bg: #f8fdfc;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: #1f2933;
    overflow-x: hidden;
}

/* Header & Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 15px 0;
    z-index: 1000;
}

.navbar.scrolled {
    box-shadow: 0 5px 20px rgba(11, 85, 96, 0.1);
    padding: 10px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    height: 60px;
    width: 250px;
    transition: all 0.3s ease;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-weight: 700;
    color: var(--brand-dark);
    letter-spacing: 0.5px;
    font-size: 1.3rem;
    margin: 0;
}

.brand-subtitle {
    font-size: 0.8rem;
    color: var(--brand);
    margin: 0;
}

.nav-link {
    color: #223;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 8px 15px !important;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 15px;
    background-color: var(--brand);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: calc(100% - 30px);
}

.nav-link .bi {
    margin-right: 6px;
    vertical-align: -2px;
}

/* Full Screen Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: -90px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 60px;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    max-width: 700px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding-left: 5%;
}

.slide-tagline {
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 1.5;
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: white;
    transform: scale(1.3);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 1.5rem;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* Animated Buttons */
.btn-animated {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-animated {
    background: var(--brand);
    color: white;
    box-shadow: 0 4px 15px rgba(11, 85, 96, 0.3);
}

.btn-primary-animated:hover {
    background: var(--brand-dark);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(11, 85, 96, 0.4);
    color: white;
}

.btn-secondary-animated {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary-animated:hover {
    background: white;
    color: var(--brand);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 255, 255, 0.3);
}

.btn-light-animated {
    background: white;
    color: var(--brand);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-light-animated:hover {
    background: var(--brand-light);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 255, 255, 0.4);
}

/* Section Styling */
.section {
    padding: 100px 0;
}

.section-title {
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: var(--brand-light);
    bottom: -8px;
    left: 0;
    border-radius: 2px;
}

.section-subtitle {
    color: #6c757d;
    margin-bottom: 40px;
    max-width: 700px;
}

/* Stats Section */
.stats-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 12px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(11, 85, 96, 0.1);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--brand-dark);
    font-weight: 600;
}

/* Services Section */
.service-card {
    border-radius: 12px;
    transition: transform .3s ease, box-shadow .3s ease;
    border: 1px solid rgba(11, 85, 96, 0.1);
    overflow: hidden;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(11, 85, 96, 0.12);
}

.circle-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(11, 85, 96, 0.08);
    color: var(--brand);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.service-card:hover .circle-icon {
    background: var(--brand);
    color: white;
    transform: scale(1.1);
}

/* Parallax Section */
.parallax-section {
    position: relative;
    height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 85, 96, 0.7);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 5s ease-in-out infinite;
}

/* Footer */
footer {
    background: var(--brand-dark);
    color: #fff;
    padding: 60px 0 30px;
}

footer a {
    color: #f1f7f7;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
    text-decoration: underline;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-slider {
        height: 80vh;
    }
    
    .slide-content {
        padding-left: 0;
        text-align: center;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .slider-arrow {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .slider-arrow.prev {
        left: 15px;
    }
    
    .slider-arrow.next {
        right: 15px;
    }
    
    .brand-text {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
    }
    
    .slide {
        padding: 0 30px;
    }
    
    .section {
        padding: 70px 0;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        /*height: 60vh;*/
        /*margin-top: -70px;*/
                margin-top: 0px;

    }
    
    .slide-content h1 {
        font-size: 1.8rem;
    }
    
    .slide-tagline {
        font-size: 1rem;
    }
    
    .btn-animated {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .logo-img {
        height: 50px;
    }
}



/* about us */
 /* Page Header */
 .page-header {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 76px;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Section Styling */
.section {
    padding: 100px 0;
}

.section-light {
    background-color: var(--light-bg);
}

.section-title {
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: var(--brand-light);
    bottom: -8px;
    left: 0;
    border-radius: 2px;
}

.section-title.center::after {
    left: 20%;
    width: 60%;
}

.section-subtitle {
    color: #6c757d;
    margin-bottom: 40px;
    max-width: 700px;
}

/* Profile Header */
.profile-header {
    background: linear-gradient(135deg, rgba(11, 85, 96, 0.05) 0%, rgba(15, 122, 114, 0.05) 100%);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid rgba(11, 85, 96, 0.1);
}

.profile-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--brand-dark);
    letter-spacing: 8px;
    margin-bottom: 20px;
}

.profile-subtitle {
    font-size: 1.5rem;
    color: var(--brand);
    font-weight: 600;
    margin-bottom: 30px;
}

/* Mission & Vision Cards */
.mission-vision-card {
    border-radius: 12px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(11, 85, 96, 0.1);
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(11, 85, 96, 0.08);
    color: var(--brand);
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.mission-vision-card:hover .card-icon {
    background: var(--brand);
    color: white;
    transform: scale(1.1);
}

/* Vertical Cards */
.vertical-card {
    border-radius: 12px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(11, 85, 96, 0.1);
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.vertical-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.vertical-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--brand);
    transition: all 0.3s ease;
}

.vertical-card:hover::before {
    width: 8px;
    background: var(--brand-light);
}

.vertical-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(11, 85, 96, 0.08);
    color: var(--brand);
    font-size: 1.8rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.vertical-card:hover .vertical-icon {
    background: var(--brand);
    color: white;
    transform: scale(1.1);
}

/* Credentials Section */
.credentials-section {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: white;
}

.credential-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.credential-label {
    font-weight: 600;
    margin-bottom: 8px;
    opacity: 0.9;
}

.credential-value {
    font-size: 1.1rem;
    font-weight: 700;
}

/* Impact Stats */
.impact-stat {
    text-align: center;
    padding: 30px 20px;
}



.stat-label {
    font-size: 1.1rem;
    color: var(--brand-dark);
    font-weight: 600;
}

/* Associates Section */
.associates-section {
    background: linear-gradient(135deg, rgba(11, 85, 96, 0.03) 0%, rgba(15, 122, 114, 0.03) 100%);
}

.associate-card {
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(11, 85, 96, 0.1);
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.associate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.associate-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.associate-card:hover .associate-avatar {
    transform: scale(1.1);
}

.associate-name {
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

/* Animated Buttons */
.btn-animated {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-animated {
    background: var(--brand);
    color: white;
    box-shadow: 0 4px 15px rgba(11, 85, 96, 0.3);
}

.btn-primary-animated:hover {
    background: var(--brand-dark);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(11, 85, 96, 0.4);
    color: white;
}

.btn-light-animated {
    background: white;
    color: var(--brand);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-light-animated:hover {
    background: var(--brand-light);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 255, 255, 0.4);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Footer */
footer {
    background: var(--brand-dark);
    color: #fff;
    padding: 60px 0 30px;
}

footer a {
    color: #f1f7f7;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
    text-decoration: underline;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .profile-title {
        font-size: 3rem;
        letter-spacing: 5px;
    }
    
    .brand-text {
        display: none;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .profile-title {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .profile-subtitle {
        font-size: 1.2rem;
    }
    
    .mission-vision-card, .vertical-card {
        padding: 30px 25px;
    }
    
    .associate-card {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .btn-animated {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .profile-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .card-icon, .vertical-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .associate-avatar {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}


/* services */
 /* Services Layout */
 .services-container {
    display: flex;
    min-height: calc(100vh - 300px);
    position: relative;
}

/* Services Sidebar */
.services-sidebar {
    width: 320px;
    background: var(--light-bg);
    padding: 30px 20px;
    border-right: 1px solid rgba(11, 85, 96, 0.1);
    transition: all 0.3s ease;
}

.services-sidebar h3 {
    color: var(--brand-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--brand-light);
}

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

.service-nav-item {
    margin-bottom: 8px;
}

.service-nav-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--brand-dark);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.service-nav-link:hover, .service-nav-link.active {
    background: var(--brand);
    color: white;
}

.service-nav-link .bi {
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Services Content */
.services-content {
    flex: 1;
    padding: 40px;
    background: white;
}

.service-section {
    display: none;
    animation: fadeIn 0.5s ease;
}

.service-section.active {
    display: block;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(11, 85, 96, 0.08);
    color: var(--brand);
    font-size: 2rem;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-section:hover .service-icon {
    background: var(--brand);
    color: white;
    transform: scale(1.05);
}

.service-title {
    color: var(--brand-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-description {
    color: #6c757d;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
}

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

.feature-list .bi {
    color: var(--brand-light);
    margin-right: 10px;
    margin-top: 5px;
    flex-shrink: 0;
}

/* Mobile Sidebar Toggle - FIXED POSITIONING */
.sidebar-toggle {
    display: none;
    background: var(--brand);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 12px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 100px;
    left: 20px;
    z-index: 1001;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sidebar-toggle:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
}

.sidebar-toggle .bi {
    margin-right: 8px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* Animated Buttons */
.btn-animated {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: none;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-animated {
    background: var(--brand);
    color: white;
    box-shadow: 0 4px 15px rgba(11, 85, 96, 0.3);
}

.btn-primary-animated:hover {
    background: var(--brand-dark);
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(11, 85, 96, 0.4);
    color: white;
}

.btn-light-animated {
    background: white;
    color: var(--brand);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-light-animated:hover {
    background: var(--brand-light);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 255, 255, 0.4);
}

/* Footer */
footer {
    background: var(--brand-dark);
    color: #fff;
    padding: 60px 0 30px;
}

footer a {
    color: #f1f7f7;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
    text-decoration: underline;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 15px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .brand-text {
        display: none;
    }
    
    .services-sidebar {
        width: 280px;
    }
}

@media (max-width: 768px) {
    .services-container {
        flex-direction: column;
    }
    
    .services-sidebar {
        width: 100%;
        padding: 20px;
        border-right: none;
        border-bottom: 1px solid rgba(11, 85, 96, 0.1);
        /* FIXED: Remove display: none and use max-height for animation */
        max-height: 0;
        overflow: hidden;
        padding-top: 0;
        padding-bottom: 0;
        transition: max-height 0.5s ease, padding 0.3s ease;
        position: relative;
        z-index: 999;
    }
    
    .services-sidebar.active {
        /* FIXED: When active, set appropriate height and padding */
        max-height: 500px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    .sidebar-toggle {
        display: flex;
    }
    
    .services-content {
        padding: 30px 20px;
    }
    
    .page-header {
        padding: 100px 0 60px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    /* Adjust toggle button position for mobile */
    .sidebar-toggle {
        top: 90px;
        left: 15px;
        right: auto;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2rem;
    }
    
    .btn-animated {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .logo-img {
        height: 50px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    /* Further adjust for very small screens */
    .sidebar-toggle {
        top: 300px;
        left: 10px;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .services-content {
        padding: 25px 15px;
    }
}


/* associates */

.leadership-avatar {
    width: 120px;
    height: 120px;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.associate-card {
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(11, 85, 96, 0.1);
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.associate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.associate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.associate-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.associate-card:hover .associate-avatar {
    transform: scale(1.1);
}

.associate-name {
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.associate-role {
    color: var(--brand);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.associate-bio {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.9rem;
}

.associate-expertise {
    margin-bottom: 15px;
}

.associate-expertise .badge {
    margin-right: 5px;
    margin-bottom: 5px;
    font-size: 0.7rem;
    padding: 4px 8px;
    background-color: var(--brand) !important;
}



.associate-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(11, 85, 96, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 1.5rem;
    color: var(--brand);
    font-weight: 700;
}

.stat-item span {
    font-size: 0.8rem;
    color: #6c757d;
    display: block;
}

.associate-contact {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(11, 85, 96, 0.1);
}

/* Expertise Cards */
.expertise-card {
    padding: 30px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(11, 85, 96, 0.1);
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

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

.expertise-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(11, 85, 96, 0.08);
    color: var(--brand);
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon {
    background: var(--brand);
    color: white;
    transform: scale(1.1);
}

/* Impact Stats */
.impact-stat {
    text-align: center;
    padding: 30px 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
}


/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section Styling */
.section {
    padding: 100px 0;
}

.section-light {
    background-color: var(--light-bg);
}

.section-title {
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: var(--brand-light);
    bottom: -8px;
    left: 0;
    border-radius: 2px;
}

.section-title.center::after {
    left: 20%;
    width: 60%;
}

.section-subtitle {
    color: #6c757d;
    margin-bottom: 40px;
    max-width: 700px;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 76px;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Credentials Section */
.credentials-section {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .leadership-avatar {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
    
    .associate-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .stat-item strong {
        font-size: 1.2rem;
        margin-right: 10px;
    }

    .stat-item span {
        display: inline;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .associate-card {
        padding: 25px 20px;
    }
    
    .expertise-card {
        padding: 25px 15px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
}
