/* About Page Specific Styles */
:root {
    --primary-blue: #1a5276;
    --secondary-blue: #3498db;
    --accent-red: #e74c3c;
    --accent-orange: #e67e22;
    --light-bg: #f8f9fa;
    --dark-text: #2c3e50;
    --medium-text: #555;
    --light-text: #777;
}

/* Hero Section */
.about-hero {
    background: linear-gradient(rgba(26, 82, 118, 0.85), rgba(52, 152, 219, 0.9)), 
                url('../images/about-hero.jpg') center/cover no-repeat;
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 150px;
}

.stat-box h3 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Main Container */
.about-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.section-card {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.section-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.section-header h2 {
    font-size: 2.3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.section-header h2 i {
    color: var(--accent-red);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--secondary-blue));
    margin: 0 auto;
    border-radius: 2px;
}

.section-description {
    max-width: 800px;
    margin: 1.5rem auto 0;
    color: var(--medium-text);
    font-size: 1.1rem;
}

/* Legacy Section */
.legacy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.legacy-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.legacy-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.legacy-image:hover img {
    transform: scale(1.03);
}

.image-caption {
    background: var(--primary-blue);
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 2rem;
    font-weight: 500;
}

.legacy-text p {
    margin-bottom: 1.5rem;
    color: var(--medium-text);
    font-size: 1.05rem;
    line-height: 1.7;
}

.legacy-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.highlight-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--light-bg);
    border-radius: 8px;
    transition: transform 0.3s;
}

.highlight-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.highlight-item i {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.highlight-item h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.highlight-item p {
    color: var(--light-text);
    font-size: 0.9rem;
    margin: 0;
}

/* Clients Section */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.client-category {
    background: var(--light-bg);
    border-radius: 10px;
    padding: 2rem;
    border-left: 4px solid var(--primary-blue);
}

.client-category h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.client-category h3 i {
    color: var(--accent-orange);
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.client-logo {
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    color: var(--primary-blue);
    transition: all 0.3s;
}




.clients-note {
    text-align: center;
    font-style: italic;
    color: var(--light-text);
    margin-top: 2rem;
    font-size: 1.1rem;
}

/* Timeline Section */
.timeline-section {
    margin: 5rem 0;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-blue), var(--secondary-blue));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 120px;
    background: var(--primary-blue);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 1;
    margin: 0 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-left: 4px solid var(--accent-red);
}

.timeline-content h3 {
    color: var(--primary-blue);
    margin-bottom: 0.8rem;
}

.timeline-content p {
    color: var(--medium-text);
    line-height: 1.6;
}

/* Location Section */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--medium-text);
}

.location-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.feature i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.feature h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.feature p {
    color: var(--light-text);
    font-size: 0.9rem;
    margin: 0;
}

.location-map {
    background: var(--light-bg);
    border-radius: 10px;
    padding: 2rem;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px dashed #ccc;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.map-placeholder p {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.map-placeholder small {
    color: var(--light-text);
}

/* Team & Vision Section */
.team-vision-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 4rem 0;
}

.team-card, .vision-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.team-card {
    border-top: 5px solid var(--primary-blue);
}

.vision-card {
    border-top: 5px solid var(--accent-orange);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.vision-card .card-icon {
    color: var(--accent-orange);
}

.team-card h3, .vision-card h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.team-list {
    list-style: none;
    margin-top: 1.5rem;
}

.team-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.team-list i {
    color: #27ae60;
    margin-right: 10px;
}

.vision-goals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.goal {
    background: var(--light-bg);
    padding: 1.2rem;
    border-radius: 8px;
    text-align: center;
}

.goal h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.goal p {
    color: var(--light-text);
    font-size: 0.9rem;
    margin: 0;
}

/* CTA Section */
.about-cta {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    padding: 4rem 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 4rem 0;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 200px;
}

.cta-btn.primary {
    background: var(--accent-red);
    color: white;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.primary:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-btn.secondary:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .legacy-content,
    .location-content,
    .team-vision-section {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: row;
    }
    
    .timeline-year {
        flex: 0 0 100px;
        margin: 0 1rem 0 0;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .stat-box {
        width: 200px;
    }
    
    .legacy-highlights {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-card {
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .vision-goals {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 3rem 1rem;
    }
    
    .about-container {
        padding: 0 1rem;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
    }
}

.slogan {
    font-size: 1.8rem !important;
    color: #e74c3c;
    font-style: italic;
    margin: 2rem 0;
    font-weight: 600;
}


        /* Hero Section - GUARANTEED FIX FOR 20K+ */
        .about-hero {
            position: relative;
            width: 100%;
            height: 70vh;
            background: linear-gradient(rgba(26, 82, 118, 0.8), rgba(26, 82, 118, 0.9)), url('images/hero-bg.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }

        .hero-content {
            max-width: 900px;
            padding: 0 20px;
            z-index: 2;
        }

        .hero-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .stat-box {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 25px;
            min-width: 150px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .stat-box:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
        }

        /* GUARANTEED FIX FOR 20K+ - Explicit HTML spans */
        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: white;
            font-family: 'Montserrat', sans-serif;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            line-height: 1.2;
            display: inline-block;
        }

        .stat-number .k-symbol {
            font-size: 2.8rem;
            display: inline-block;
            font-weight: 700;
        }

        .stat-box p {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* ALTERNATIVE - Different approach */
        .twenty-k-plus {
            font-size: 2.8rem;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            display: block;
        }

        /* Trusted by Industry Leaders - IMPROVED CAROUSEL */
        .trusted-carousel-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .trusted-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .trusted-header h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a5276;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .trusted-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #1a5276, #e74c3c);
            border-radius: 2px;
        }

        .trusted-header p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* Improved Carousel Container */
        .carousel-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 60px;
        }

        .carousel-wrapper {
            overflow: hidden;
            position: relative;
            border-radius: 15px;
            background: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            padding: 30px 0;
        }

        .carousel-track {
            display: flex;
            gap: 20px;
            padding: 0 20px;
        }

        .client-logo {
            flex: 0 0 200px;
            height: 140px;
            background: white;
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .client-logo::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #1a5276, #e74c3c);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }


        .logo-name {
            font-weight: 600;
            color: #333;
            font-size: 1rem;
            text-align: center;
            margin-bottom: 5px;
        }

        .logo-industry {
            font-size: 0.85rem;
            color: #666;
            text-align: center;
        }

        /* Continuous Smooth Scroll Animation - PURE CSS */
        @keyframes smoothScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-220px * 8));
            }
        }

        .carousel-track {
            animation: smoothScroll 80s linear infinite;
            will-change: transform;
        }

        .carousel-track:hover {
            animation-play-state: paused;
        }

        /* Carousel Navigation - Hidden */
        .carousel-nav {
            display: none !important;
        }

        /* Timeline Section */
        /* .timeline-section {
            padding: 4rem 0;
            background: white;
        } */

        .timeline-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .timeline-header h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a5276;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .timeline-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #1a5276, #e74c3c);
            border-radius: 2px;
        }

        .timeline-header p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .timeline-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* OUR VISION SECTION - SIMPLE REFERENCE STYLE */
        .our-vision-section {
            padding: 4rem 0;
            background: white;
        }
        
        .vision-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .vision-header {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .vision-header h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.8rem;
            font-weight: 700;
            color: #1a5276;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .vision-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #1a5276, #e74c3c);
            border-radius: 2px;
        }
        
        .vision-subtitle {
            color: #666;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .vision-content {
            background: white;
            border-radius: 15px;
            padding: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid #e0e0e0;
        }
        
        .vision-statement-box {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 12px;
            margin-bottom: 50px;
            border-left: 5px solid #1a5276;
            text-align: center;
        }
        
        .vision-statement-box h3 {
            color: #1a5276;
            font-size: 1.8rem;
            margin-bottom: 20px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .vision-statement-box p {
            color: #333;
            font-size: 1.2rem;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .vision-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .vision-highlight-item {
            padding: 30px;
            background: #f8f9fa;
            border-radius: 12px;
            border-top: 4px solid #1a5276;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .vision-highlight-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            background: white;
        }
        
        .vision-highlight-title {
            font-size: 1.4rem;
            color: #1a5276;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .vision-highlight-text {
            color: #555;
            font-size: 1rem;
            line-height: 1.7;
        }

        /* OUR BRANDS SECTION - EXACT REFERENCE STYLE */
        .our-brands-section {
            padding: 4rem 0;
            background: #f5f7fa;
        }
        
        .brands-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .brands-header {
            background: linear-gradient(to right, #0d2d5c, #1a4786);
            color: white;
            padding: 30px;
            border-radius: 15px 15px 0 0;
        }
        
        .brands-header h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .brands-header p {
            opacity: 0.9;
            font-size: 1.1rem;
        }
        
        .brands-content {
            background: white;
            padding: 40px;
            border-radius: 0 0 15px 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .brand-card {
            border: 1px solid #eaeaea;
            border-radius: 10px;
            padding: 30px;
            transition: all 0.3s ease;
            background: white;
        }
        
        .brand-card:hover {
            border-color: #1a5276;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }
        
        .brand-name {
            font-size: 1.8rem;
            color: #0d2d5c;
            margin-bottom: 15px;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
        }
        
        .brand-id {
            background-color: #f8f9fa;
            padding: 12px 20px;
            border-radius: 6px;
            font-family: 'Courier New', monospace;
            color: #2c5aa9;
            font-size: 1rem;
            border: 1px solid #eaeaea;
            margin-top: 20px;
            display: inline-block;
        }
        
        .recognition-footer {
            text-align: center;
            padding: 25px;
            color: #666;
            font-size: 1.1rem;
            border-top: 2px solid #eaeaea;
            background-color: #f9f9f9;
            margin-top: 30px;
            font-weight: 600;
        }

        /* TEAM SECTION - SIMPLIFIED */
        .team-section-simple {
            /* padding: 4rem 0; */
            background: white;
        }

        .team-header-simple {
            text-align: center;
            margin-bottom: 3rem;
        }

        .team-header-simple h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.8rem;
            font-weight: 700;
            color: #1a5276;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .team-header-simple h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #1a5276, #e74c3c);
            border-radius: 2px;
        }

        .team-header-simple p {
            color: #666;
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .team-grid-simple {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-card-simple {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 1px solid #e0e0e0;
            text-align: center;
            padding-bottom: 25px;
        }

        .team-card-simple:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .team-image-simple {
            height: 280px;
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .team-image-simple img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .team-card-simple:hover .team-image-simple img {
            transform: scale(1.05);
        }

        .team-info-simple {
            padding: 25px 20px 0;
        }

        .team-info-simple h3 {
            color: #1a5276;
            margin-bottom: 8px;
            font-size: 1.4rem;
            font-weight: 600;
            font-family: 'Montserrat', sans-serif;
        }

        .team-designation {
            color: #e74c3c;
            font-weight: 600;
            margin-bottom: 12px;
            font-size: 1rem;
        }

        .team-bio {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-top: 10px;
            padding: 0 10px;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .carousel-container {
                padding: 0 40px;
            }
            
            .client-logo {
                flex: 0 0 180px;
                height: 130px;
            }
            
            .vision-highlights {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .brands-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .vision-header h2,
            .team-header-simple h2,
            .timeline-header h2 {
                font-size: 2.4rem;
            }
            
            .trusted-header h2 {
                font-size: 2.2rem;
            }
            
            .hero-title {
                font-size: 3rem;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .trusted-header h2,
            .team-header-simple h2,
            .timeline-header h2,
            .vision-header h2 {
                font-size: 2rem;
            }
            
            .carousel-container {
                padding: 0 20px;
            }
            
            .client-logo {
                flex: 0 0 150px;
                height: 120px;
            }
            
            .vision-content {
                padding: 30px 20px;
            }
            
            .vision-highlights {
                grid-template-columns: 1fr;
            }
            
            .brands-content {
                padding: 25px;
            }
            
            .brands-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .team-grid-simple {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 20px;
            }
            
            .team-image-simple {
                height: 220px;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .hero-stats {
                gap: 20px;
            }
            
            .stat-box {
                padding: 20px;
                min-width: 120px;
            }
            
            .stat-number {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 480px) {
            .trusted-header h2,
            .team-header-simple h2,
            .timeline-header h2,
            .vision-header h2 {
                font-size: 1.8rem;
            }
            
            .carousel-container {
                padding: 0 10px;
            }
            
            .client-logo {
                flex: 0 0 130px;
                height: 110px;
                padding: 15px;
            }
            
            .vision-content {
                padding: 20px 15px;
            }
            
            .brands-header {
                padding: 20px;
            }
            
            .brands-header h2 {
                font-size: 1.6rem;
            }
            
            .team-grid-simple {
                grid-template-columns: 1fr;
                max-width: 300px;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .hero-stats {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            
            .stat-box {
                width: 80%;
                max-width: 200px;
            }
            
            .stat-number {
                font-size: 2.5rem; /* Larger on mobile for visibility */
            }
        }
   