/* About page specific styles */
        /* Enhanced expertise card styling */
        .expertise-section {
            padding: 5rem 4rem;
        }

        .expertise-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }

        .expertise-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;        background: linear-gradient(90deg, transparent, rgba(50, 123, 140, 0.1), transparent);
            transition: left 0.8s ease;
        }

        .expertise-card .text-primary {
            color: #327b8c !important;
        }

        .expertise-card h3 {
            color: #2c3e50;
            font-weight: 600;
        }/* Partners section styles */
        .partners-section {
            padding: 5rem 4rem;
        }

        .partner-logo-wrapper {
            padding: 1.5rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .partner-logo-wrapper:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .partner-logo {
            max-width: 100%;
            max-height: 70px;
            width: auto;
            height: auto;
            object-fit: contain;
            filter: grayscale(20%);
            transition: all 0.3s ease;
        }

        .partner-logo:hover {
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        .about-section {
            padding: 0 0 4rem 0;
        }

        /* About image styles */        .about-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            max-width: 100%;
            height: auto;
            object-fit: cover;
            width: 100%;
        }

        /* Team member styles */
        .team-member {
            text-align: center;
            margin-bottom: 2rem;
        }

        .team-member img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            margin-bottom: 1rem;
            object-fit: cover;
            border: 4px solid #327b8c;
        }        /* Enhanced section styling */
        .expertise-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border: 1px solid rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }

        .expertise-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #327b8c, #4a9eaf, #327b8c);
            background-size: 200% 100%;
            animation: shimmer 3s ease-in-out infinite;
        }

        .expertise-section .section-title {
            color: #2c3e50;
            font-weight: 700;
            text-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }

        /* Core Values enhanced styling */
        .values-card {
            background: white;
            border-radius: 15px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .values-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;        height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.6s ease;
        }

        .value-icon {
            font-size: 3rem;
            color: #327b8c;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .values-card h3 {
            color: #2c3e50;
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        .values-card p {
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 0;
        }

        /* Partners section enhancements */
        .partners-section {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #e9ecef 100%);
            border: 1px solid rgba(0,0,0,0.05);
            position: relative;
        }

        .partners-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #327b8c, #4a9eaf, #327b8c);
            background-size: 200% 100%;
            animation: shimmer 3s ease-in-out infinite reverse;
        }

        /* Enhanced partner logo wrapper */
        .partner-logo-wrapper {
            background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
            border: 2px solid rgba(50, 123, 140, 0.1);
            position: relative;
            overflow: hidden;
        }

        .partner-logo-wrapper::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #327b8c, #4a9eaf, #327b8c, #4a9eaf);
            background-size: 200% 200%;
            border-radius: 12px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
            animation: gradientShift 4s ease infinite;
        }

        .partner-logo-wrapper:hover::before {
            opacity: 1;
        }

        .partner-logo-wrapper:hover {
            background: white;
            border-color: transparent;
        }

        /* Keyframe animations */
        @keyframes shimmer {
            0%, 100% { background-position: 0% 0%; }
            50% { background-position: 100% 0%; }
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        /* Section spacing and background improvements */
        .about-section .row.mb-5:nth-child(2),
        .about-section .row.mb-5:nth-child(3),
        .about-section .row.mb-5:nth-child(4) {
            margin-bottom: 4rem !important;
        }

        .about-section .row.mb-5:nth-child(2) .expertise-section,
        .about-section .row.mb-5:nth-child(4) .partners-section {
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            margin: 1rem 0;
        }

        /* Core Values section background */
        .about-section .row.mb-5:nth-child(3) {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
            border-radius: 20px;
            padding: 3rem 2rem;
            margin: 2rem 0 4rem 0 !important;
            box-shadow: 0 6px 25px rgba(0,0,0,0.08);
            border: 1px solid rgba(0,0,0,0.05);
        }

        .about-section .row.mb-5:nth-child(3) h2 {
            color: #2c3e50;
            font-weight: 700;
            text-shadow: 0 1px 2px rgba(0,0,0,0.1);
            margin-bottom: 3rem !important;
        }

        /* Timeline styles - keeping original for compatibility */
        .timeline {
            position: relative;
            padding: 2rem 0;
        }

        .timeline-item {
            padding: 2rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
        }

        /* Desktop layout adjustments */
        @media (min-width: 992px) {
            
            .about-section .col-lg-6 {
                display: flex;
                flex-direction: column;
                min-height: 350px;
            }
            
            .about-section .col-lg-6:first-child {
                justify-content: center;
            }
            
            .content-wrapper, .image-wrapper {
                height: 100%;
                display: flex;
                flex-direction: column;
            }
              .content-wrapper {
                justify-content: center;
                height: 100%;
            }
            
            .image-wrapper {
                height: 100%;
                display: flex;
                align-items: center;
            }
            
            .about-section .col-lg-6 img.about-image {
                height: auto;
                max-height: 100%;
                object-position: center;
            }
        }        @media (max-width: 768px) {
            /* Mobile responsive styles for partners section */
            .partners-section {
                padding: 3rem 1rem !important;
            }

            .partners-section .lead {
                font-size: 1.1rem;
                margin-bottom: 2.5rem !important;
            }

            .partner-logo-wrapper {
                height: 100px;
                padding: 1rem;
                margin-bottom: 1rem;
            }

            .partner-logo {
                max-height: 60px;
            }
        }

        @media (max-width: 576px) {
            .partners-section {
                padding: 2rem 0.5rem !important;
            }

            .partner-logo-wrapper {
                height: 90px;
                padding: 0.8rem;
            }

            .partner-logo {
                max-height: 50px;
            }
        }
