/* SA Associates Brand Theme */
        .sa-gradient-bg {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
        }

        .sa-gradient-text {
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Improved Navigation */
        .smart-nav {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(229, 231, 235, 0.5);
        }

        .nav-link {
            position: relative;
            padding: 0.5rem 1.25rem;
            font-weight: 500;
            color: #4b5563;
            transition: all 0.3s ease;
            border-radius: 8px;
        }

        .nav-link:hover {
            color: #1e3a8a;
            background: rgba(30, 58, 138, 0.05);
        }

        .nav-link.active {
            color: #1e3a8a;
            background: rgba(30, 58, 138, 0.1);
            font-weight: 600;
        }

        /* Full Width Hero Slider */
        .hero-slider {
            height: 600px;
            width: 100%;
            position: relative;
            margin-top: 80px;
        }

        /* Add these styles to ensure hero slider works */
        .hero-slide {
            height: 100%;
            position: relative;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-color: #1e3a8a; /* Fallback color if image doesn't load */
        }

        /* Fallback gradient if images fail to load */
        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, rgba(30, 58, 138, 0.2), rgba(59, 130, 246, 0.3));
            z-index: 1;
        }

        .hero-slide::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: inherit;
            z-index: 0;
        }

        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            text-align: center;
            width: 90%;
            max-width: 1200px;
        }

        /* Ensure Swiper container has proper height */
        .hero-swiper {
            height: 100%;
        }

        /* Enhanced Map Section Layout */
        .map-section-container {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 2rem;
            height: 600px;
        }

        @media (max-width: 1024px) {
            .map-section-container {
                grid-template-columns: 1fr;
                height: auto;
            }
        }

        .map-wrapper {
            height: 100%;
            border-radius: 24px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        #global-map {
            width: 100%;
            height: 100%;
        }

        .map-overlay {
            position: absolute;
            top: 24px;
            left: 24px;
            right: 24px;
            z-index: 10;
        }

        .filter-chip {
            padding: 0.5rem 1rem;
            border-radius: 50px;
            background: white;
            color: #6b7280;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            display: inline-block;
            margin-right: 0.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .filter-chip:hover, .filter-chip.active {
            background: #1e3a8a;
            color: white;
            transform: translateY(-2px);
        }

        /* Custom Map Controls - Fixed for OpenLayers v8 */
        .ol-zoom {
            top: 1.5rem !important;
            left: auto !important;
            right: 1.5rem !important;
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(10px);
            border-radius: 0.75rem !important;
            padding: 0.5rem !important;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
            border: 1px solid rgba(229, 231, 235, 0.8) !important;
        }

        .ol-zoom button {
            background: white !important;
            border-radius: 0.5rem !important;
            border: 1px solid #e5e7eb !important;
            color: #374151 !important;
            font-size: 1.25rem !important;
            width: 2.5rem !important;
            height: 2.5rem !important;
            margin: 0.25rem !important;
            transition: all 0.2s ease !important;
        }

        .ol-zoom button:hover {
            background: #f9fafb !important;
            color: #111827 !important;
            transform: scale(1.05) !important;
        }

		.swiper-wrapper{
          padding : 10px 0px 18px !important;
        }

        /* Enhanced Image Gallery Section */
        .image-gallery-section {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 1.5rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(229, 231, 235, 0.8);
            height: 100%;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        /* Remove gallery header completely */
        .gallery-header {
            display: none;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            flex: 1;
            overflow-y: auto;
            padding-right: 0.5rem;
            /* Add these to fix overlapping */
            grid-auto-rows: min-content;
            align-content: start;
        }

        .gallery-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 1;
            cursor: pointer;
            transition: all 0.3s ease;
            /* Ensure proper sizing */
            min-height: 0;
            min-width: 0;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
            /* Prevent image overflow */
            display: block;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .no-images {
            grid-column: 1 / -1;
            text-align: center;
            padding: 3rem 1rem;
            color: #6b7280;
        }

        /* Custom scrollbar for gallery */
        .gallery-grid::-webkit-scrollbar {
            width: 6px;
        }

        .gallery-grid::-webkit-scrollbar-track {
            background: rgba(0, 0, 0, 0.05);
            border-radius: 10px;
        }

        .gallery-grid::-webkit-scrollbar-thumb {
            background: rgba(0, 0, 0, 0.2);
            border-radius: 10px;
        }

        .gallery-grid::-webkit-scrollbar-thumb:hover {
            background: rgba(0, 0, 0, 0.3);
        }

        /* Image Preview Modal */
        .image-preview-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.9);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }

        .image-preview-container {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }

        .image-preview-container img {
            max-width: 100%;
            max-height: 80vh;
            border-radius: 12px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        .close-preview {
            position: absolute;
            top: -40px;
            right: 0;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: none;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .close-preview:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        /* Custom Markers */
        .custom-marker {
            position: relative;
            width: 70px;
            height: 70px;
            cursor: pointer;
            transition: all 0.3s ease;
            filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
        }

        .custom-marker:hover {
            transform: scale(1.4);
            filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.4));
        }

        .marker-outer-ring {
            position: absolute;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            opacity: 0.2;
            animation: pulse-ring 2s ease-in-out infinite;
        }

        .marker-inner-circle {
            position: absolute;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            top: 13px;
            left: 13px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            border: 3px solid white;
        }

        .marker-icon {
            color: white;
            font-size: 16px;
        }

        @keyframes pulse-ring {
            0% {
                transform: scale(1);
                opacity: 0.2;
            }
            70% {
                transform: scale(1.4);
                opacity: 0;
            }
            100% {
                transform: scale(1);
                opacity: 0.2;
            }
        }

        /* Insights Panel */
        .insights-panel {
            position: absolute;
            right: 24px;
            bottom: 24px;
            width: 320px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 1.5rem;
            padding: 1.5rem;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(229, 231, 235, 0.8);
            z-index: 10;
        }

        /* AI Assistant */
        .ai-assistant {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 1000;
        }

        .ai-button {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 8px 32px rgba(30, 58, 138, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .ai-button:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 40px rgba(30, 58, 138, 0.4);
        }

        /* Section Spacing */
        .section-padding {
            padding: 100px 0;
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 60px 0;
            }
            .hero-slider {
                height: 500px;
                margin-top: 70px;
            }
            .slide-content h1 {
                font-size: 2.5rem !important;
            }
            .slide-content p {
                font-size: 1rem !important;
            }
        }

        /* Success Stories Carousel */
        .story-card {
            background: white;
            border-radius: 1.5rem;
            padding: 2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
            height: 100%;
        }

        .story-card:hover {
            border-color: #1e3a8a;
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(30, 58, 138, 0.15);
        }

        /* Carousel Styles */
        .carousel-container {
            position: relative;
            padding: 0 60px;
        }

        .swiper-button-next-custom,
        .swiper-button-prev-custom {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            background: white;
            border-radius: 50%;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .swiper-button-next-custom:hover,
        .swiper-button-prev-custom:hover {
            background: #1e3a8a;
            color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .swiper-button-prev-custom {
            left: 0;
        }

        .swiper-button-next-custom {
            right: 0;
        }

        /* Button Styles */
        .btn-primary {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 0.75rem;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
        }

        /* Loading overlay for map */
        .map-loading {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(15, 23, 42, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            border-radius: 24px;
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(255, 255, 255, 0.1);
            border-top: 3px solid #3b82f6;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Team Member Images */
        .team-member-img {
            width: 96px;
            height: 96px;
            object-fit: cover;
            border-radius: 50%;
            border: 4px solid white;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }

        /* Testimonial Images */
        .testimonial-img {
            width: 56px;
            height: 56px;
            object-fit: cover;
            border-radius: 50%;
            border: 2px solid white;
        }

        /* Success Story Images */
        .success-story-img {
            width: 64px;
            height: 64px;
            object-fit: cover;
            border-radius: 50%;
            border: 3px solid white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }









/* ===== ANIMATED STATS BANNER - SIDE BY SIDE LAYOUT ===== */
.animated-stats-banner {
    position: relative;
    background: linear-gradient(135deg, 
        #1e3a8a 0%,     /* Dark blue */
        #1e40af 33%,    /* Medium dark */
        #2563eb 66%,    /* Medium */
        #3b82f6 100%    /* Slightly lighter */
    );
    background-size: 300% 300%;
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating Shapes - Smaller and Subtler */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent 80%);
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: -60px;
    left: -30px;
    animation: float 25s linear infinite;
}

.shape-2 {
    width: 90px;
    height: 90px;
    bottom: -45px;
    right: 10%;
    animation: float 30s linear infinite reverse;
}

.shape-3 {
    width: 70px;
    height: 70px;
    top: 40%;
    left: 15%;
    animation: float 35s linear infinite;
}

.shape-4 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    right: -30px;
    animation: float 40s linear infinite reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, 30px) rotate(90deg);
    }
    50% {
        transform: translate(0, 60px) rotate(180deg);
    }
    75% {
        transform: translate(-30px, 30px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Side Layout Stat Card */
.stat-card-side {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 18px;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    min-height: 110px;
    display: flex;
    align-items: center;
}

.stat-card-side:hover {
    transform: translateY(-6px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 12px 25px rgba(0, 0, 0, 0.25),
        0 0 35px rgba(59, 130, 246, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.stat-card-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.08), 
        transparent);
    transition: left 0.6s ease;
}

.stat-card-side:hover::before {
    left: 100%;
}

/* Icon on the Left */
.stat-icon-left {
    flex-shrink: 0;
    margin-right: 1rem;
}

.stat-icon-circle-side {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-icon-side 4s ease-in-out infinite;
}

@keyframes pulse-icon-side {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    50% { 
        transform: scale(1.08);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    }
}

.stat-icon-circle-side i {
    font-size: 1.5rem;
    color: #dbeafe;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}

/* Content on the Right */
.stat-content-side {
    flex: 1;
    min-width: 0; /* Prevent text overflow */
}

.stat-number-side {
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(to bottom, #ffffff, #dbeafe);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.stat-symbol-side {
    color: #93c5fd;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.stat-label-side {
    color: #dbeafe;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.25rem;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.stat-glow-side {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 18px;
    background: radial-gradient(circle at center, 
        rgba(59, 130, 246, 0.15) 0%, 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.stat-card-side:hover .stat-glow-side {
    opacity: 1;
}

/* Responsive Design for Side Layout */
@media (max-width: 1024px) {
    .stat-card-side {
        min-height: 100px;
        padding: 1rem;
    }
    
    .stat-icon-circle-side {
        width: 54px;
        height: 54px;
    }
    
    .stat-icon-circle-side i {
        font-size: 1.3rem;
    }
    
    .stat-number-side {
        font-size: 2rem;
    }
    
    .stat-label-side {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .animated-stats-banner {
        padding: 2rem 0;
    }
    
    .stat-card-side {
        min-height: 95px;
        padding: 0.875rem;
        border-radius: 16px;
    }
    
    .stat-icon-circle-side {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }
    
    .stat-icon-circle-side i {
        font-size: 1.2rem;
    }
    
    .stat-number-side {
        font-size: 1.75rem;
    }
    
    .stat-symbol-side {
        font-size: 1.1rem;
    }
    
    .stat-label-side {
        font-size: 0.8rem;
    }
    
    .stat-icon-left {
        margin-right: 0.75rem;
    }
    
    .shape-1 {
        width: 80px;
        height: 80px;
        top: -40px;
    }
    
    .shape-2 {
        width: 60px;
        height: 60px;
        bottom: -30px;
    }
}

@media (max-width: 640px) {
    .animated-stats-banner .grid {
        gap: 0.5rem;
    }
    
    .stat-card-side {
        min-height: 90px;
        padding: 0.75rem;
    }
    
    .stat-icon-circle-side {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }
    
    .stat-icon-circle-side i {
        font-size: 1.1rem;
    }
    
    .stat-number-side {
        font-size: 1.6rem;
    }
    
    .stat-symbol-side {
        font-size: 1rem;
    }
    
    .stat-label-side {
        font-size: 0.75rem;
        margin-top: 0.2rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .animated-stats-banner {
        padding: 1.75rem 0;
    }
    
    .stat-card-side {
        min-height: 85px;
        padding: 0.625rem;
        border-radius: 14px;
    }
    
    .stat-icon-circle-side {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    
    .stat-icon-circle-side i {
        font-size: 1rem;
    }
    
    .stat-number-side {
        font-size: 1.5rem;
    }
    
    .stat-symbol-side {
        font-size: 0.9rem;
    }
    
    .stat-label-side {
        font-size: 0.7rem;
    }
    
    .stat-icon-left {
        margin-right: 0.5rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 380px) {
    .stat-card-side {
        min-height: 80px;
        padding: 0.5rem;
    }
    
    .stat-icon-circle-side {
        width: 36px;
        height: 36px;
    }
    
    .stat-icon-circle-side i {
        font-size: 0.9rem;
    }
    
    .stat-number-side {
        font-size: 1.4rem;
    }
    
    .stat-label-side {
        font-size: 0.65rem;
    }
}

/* CountUp Animation JS Helper (Keep the same from previous version) */
.countup {
    display: inline-block;
}





/* ===== CEO MESSAGE SECTION ===== */
.ceo-message-highlight {
    position: relative;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(59, 130, 246, 0.05));
    border-left: 4px solid #1e3a8a;
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
}

.ceo-message-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3));
    border-radius: 0 12px 12px 0;
    z-index: 0;
}

/* CEO Image Hover Effect */
.ceo-photo-container {
    position: relative;
    transition: transform 0.3s ease;
}

.ceo-photo-container:hover {
    transform: scale(1.02);
}

.ceo-photo-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 70%, rgba(0, 0, 0, 0.3));
    border-radius: 50%;
    z-index: 1;
}

/* Trust Indicator Animation */
.trust-indicator {
    transition: all 0.3s ease;
}

.trust-indicator:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Signature Styling */
.ceo-signature {
    font-family: 'Dancing Script', cursive;
    color: #1e3a8a;
    font-size: 2.5rem;
    line-height: 1;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .ceo-signature {
        font-size: 2rem;
    }
}

/* Gradient Underline for Section Title */
.section-title-underline {
    height: 4px;
    width: 100px;
    background: linear-gradient(to right, #1e3a8a, #3b82f6);
    margin: 1rem auto;
    border-radius: 2px;
    position: relative;
}

.section-title-underline::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #3b82f6;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #3b82f6;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .ceo-message-grid {
        grid-template-columns: 1fr;
    }
    
    .ceo-photo-column {
        padding: 2rem;
    }
    
    .ceo-message-column {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .ceo-photo-container {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }
    
    .ceo-stats {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .trust-indicators-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .trust-indicators-grid {
        grid-template-columns: 1fr;
    }
    
    .ceo-photo-container {
        width: 180px;
        height: 180px;
    }
}

/* Animation for section entry */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ceo-section-animate {
    animation: fadeInUp 0.8s ease-out;
}







/* ===== CEO MESSAGE ENHANCEMENTS ===== */

/* CEO Image Frame with Proper Display */
.ceo-image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(30, 58, 138, 0.4);
    border: 4px solid rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    padding: 4px;
}

.ceo-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1.25rem;
    object-fit: cover;
    aspect-ratio: 1/1;
    filter: brightness(1.05) contrast(1.1);
    transition: all 0.5s ease;
}

.ceo-image-frame:hover img {
    transform: scale(1.03);
    filter: brightness(1.1) contrast(1.15);
}

/* CEO Section Background */
.ceo-left-bg {
    background: linear-gradient(135deg, 
        #1e3a8a 0%,
        #1e40af 30%,
        #2563eb 70%,
        #3b82f6 100%);
    position: relative;
    overflow: hidden;
}

.ceo-left-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
    z-index: 1;
}

/* Message Section Styling */
.ceo-message-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.ceo-message-content p:last-child {
    margin-bottom: 0;
}

/* Signature Styling */
.ceo-signature-container {
    position: relative;
    padding-top: 2rem;
}

.ceo-signature-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #3b82f6, transparent);
    border-radius: 3px;
}

@media (min-width: 1024px) {
    /* Ensure proper height alignment */
    .ceo-left-bg {
        min-height: 100%;
    }
    
    /* Fix image aspect ratio on desktop */
    .ceo-image-frame {
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 1024px) {
    .ceo-image-frame {
        max-width: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .ceo-image-frame {
        max-width: 240px;
    }
    
    .ceo-left-bg {
        padding: 2rem 1.5rem;
    }
}

/* Animation for image entrance */
@keyframes imageReveal {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ceo-image-frame {
    animation: imageReveal 0.8s ease-out 0.3s both;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .ceo-image-frame {
        max-width: 200px;
    }
    
    .ceo-left-bg {
        padding: 1.5rem;
    }
}