.section-header {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    margin-top: -20px;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #061e55, #061e55);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: titleSlide 1s ease-out;
}

.title-decorator {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #06B6D4);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    animation: decoratorGrow 1.5s ease-out;
}

.title-decorator::before,
.title-decorator::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #3B82F6;
    border-radius: 50%;
    top: -4px;
    animation: decoratorPulse 2s ease-in-out infinite;
}

.title-decorator::before { left: -20px; }
.title-decorator::after { right: -20px; animation-delay: 1s; }


@media (max-width: 768px) {
    .main-title { font-size: 2.5rem; }
}

@media (max-width: 480px) {
    .main-title { font-size: 2rem; padding-top: 16px;}
}


        
        /* Corporate Services - Main Container Styles */
        .corporate-services-section {
            background-color: white;
          position: relative;
            overflow: hidden;
        }

        /* Corporate Services - Background Decorative Elements */
        .corporate-services-bg-decoration-1 {
            position: absolute;
            top: 0;
            left: 0;
            width: 384px;
            height: 384px;
            background-color: rgba(59, 130, 246, 0.1);
            border-radius: 50%;
            transform: translate(-192px, -192px);
        }

        .corporate-services-bg-decoration-2 {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 320px;
            height: 320px;
            background-color: rgba(16, 185, 129, 0.1);
            border-radius: 50%;
            transform: translate(160px, 160px);
        }

        .corporate-services-floating-dot-1 {
            position: absolute;
            top: 50%;
            left: 25%;
            width: 16px;
            height: 16px;
            background-color: #60A5FA;
            border-radius: 50%;
            animation: corporate-services-pulse 2s infinite;
        }

        .corporate-services-floating-dot-2 {
            position: absolute;
            top: 33%;
            right: 25%;
            width: 12px;
            height: 12px;
            background-color: #34D399;
            border-radius: 50%;
            animation: corporate-services-bounce 2s infinite;
        }

        /* Corporate Services - Container */
        .corporate-services-container {
            max-width: 1280px;
            margin: 0 auto;
            position: relative;
        }

        /* Corporate Services - Header Section */
        .corporate-services-header {
            text-align: center;
            margin-bottom: 64px;
            position: relative;
        }

        .corporate-services-main-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #3B82F6, #2563EB);
            border-radius: 50%;
            margin-bottom: 24px;
            animation: corporate-services-bounce 3s infinite;
        }

        .corporate-services-main-icon i {
            font-size: 40px;
            color: white;
        }

        .corporate-services-title {
            font-size: 36px;
            font-weight: bold;
            color: #1E293B;
            margin-bottom: 24px;
            position: relative;
        }

        .corporate-services-title-underline {
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 96px;
            height: 4px;
            background: linear-gradient(90deg, #3B82F6, #10B981);
            border-radius: 2px;
        }

        .corporate-services-description {
            max-width: 800px;
            margin: 0 auto;
            font-size: 18px;
            color: #475569;
            line-height: 1.7;
            margin-bottom: 16px;
        }

        /* Corporate Services - Central Hub */
        .corporate-services-central-hub {
            display: flex;
            justify-content: center;
            margin-bottom: 48px;
        }

        .corporate-services-hub-circle {
            position: relative;
        }

        .corporate-services-hub-outer {
            width: 128px;
            height: 128px;
            background: linear-gradient(135deg, #3B82F6, #2563EB, #10B981);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: corporate-services-pulse 4s infinite;
        }

        .corporate-services-hub-inner {
            width: 96px;
            height: 96px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .corporate-services-hub-inner i {
            font-size: 48px;
            color: #2563EB;
        }

        .corporate-services-hub-label {
            position: absolute;
            bottom: -32px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
        }

        .corporate-services-hub-text {
            font-size: 14px;
            font-weight: 600;
            color: #475569;
            background-color: white;
            padding: 4px 12px;
            border-radius: 20px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        /* Corporate Services - Services Grid */
        .corporate-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-bottom: 48px;
        }

        .corporate-services-item {
            position: relative;
            opacity: 0;
            transform: translateY(20px);
            animation: corporate-services-fade-in-up 0.6s ease-out forwards;
        }

        .corporate-services-item:nth-child(1) { animation-delay: 0.1s; }
        .corporate-services-item:nth-child(2) { animation-delay: 0.2s; }
        .corporate-services-item:nth-child(3) { animation-delay: 0.3s; }
        .corporate-services-item:nth-child(4) { animation-delay: 0.4s; }
        .corporate-services-item:nth-child(5) { animation-delay: 0.5s; }
        .corporate-services-item:nth-child(6) { animation-delay: 0.6s; }
        .corporate-services-item:nth-child(7) { animation-delay: 0.7s; }

        .corporate-services-service-card {
            background-color: white;
            border: 2px solid transparent;
            border-radius: 16px;
            padding: 24px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .corporate-services-service-card:hover {
            border-color: rgba(59, 130, 246, 0.3);
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .corporate-services-card-bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(16, 185, 129, 0.05));
            opacity: 1;
            transition: opacity 0.3s ease;
            border-radius: 16px;
        }

        .corporate-services-service-card:hover .corporate-services-card-bg {
            opacity: 1;
        }

        .corporate-services-service-icon {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
            border-radius: 50%;
            margin-bottom: 16px;
            transition: transform 0.3s ease;
        }

        .corporate-services-service-card:hover .corporate-services-service-icon {
            transform: scale(1.1);
        }

        .corporate-services-service-icon i {
            font-size: 32px;
            color: #2563EB;
            transition: color 0.3s ease;
        }

        .corporate-services-service-card:hover .corporate-services-service-icon i {
            color: #059669;
        }

        .corporate-services-service-text {
            color: #1E293B;
            font-weight: 500;
            font-size: 14px;
            line-height: 1.5;
            position: relative;
        }

        .corporate-services-service-dot {
            width: 8px;
            height: 8px;
            background-color: #60A5FA;
            border-radius: 50%;
            margin: 12px auto 0;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .corporate-services-service-card:hover .corporate-services-service-dot {
            opacity: 1;
        }

        /* Corporate Services - Bottom Commitment Section */
        .corporate-services-commitment {
            text-align: center;
            position: relative;
        }

        .corporate-services-commitment-container {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(90deg, rgba(59, 130, 246, 0.05), rgba(16, 185, 129, 0.05));
            border-radius: 40px;
            padding: 16px 32px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .corporate-services-commitment-icon {
            font-size: 24px;
            color: #2563EB;
            animation: corporate-services-pulse 3s infinite;
        }

        .corporate-services-commitment-text {
            color: #475569;
            font-weight: 500;
            margin: 0;
        }

        .corporate-services-commitment-arrow {
            font-size: 20px;
            color: #059669;
            animation: corporate-services-bounce 2s infinite;
        }

        /* Corporate Services - Animations */
        @keyframes corporate-services-fade-in-up {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes corporate-services-pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        @keyframes corporate-services-bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }

        /* Corporate Services - Responsive Design */
        @media (max-width: 768px) {
            .corporate-services-title {
                font-size: 28px;
            }

            .corporate-services-description {
                font-size: 16px;
            }

            .corporate-services-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .corporate-services-commitment-container {
                flex-direction: column;
                gap: 8px;
                padding: 16px;
            }
        }
    