
        :root {
            --primary-color: #005a82;
            --primary-dark: #004463;
            --primary-light: #0077aa;
            --gradient-start: #005a82;
            --gradient-end: #003d5c;
        }
        /* Service Cards */
        .services-section {
            padding: 100px 0;
            background: #fff;
            position: relative;
        }

        .section-badge {
            display: inline-block;
            padding: 8px 24px;
            background: rgba(0, 90, 130, 0.1);
            color: var(--primary-color);
            border-radius: 50px;
            font-weight: 600;
            letter-spacing: 1px;
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

        .service-card {
            background: #fff;
            border-radius: 20px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
            height: 100%;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 90, 130, 0.2);
        }

        .service-card > * {
            position: relative;
            z-index: 2;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: rgba(0, 90, 130, 0.1);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            background: rgba(255, 255, 255, 0.15);
        }

        .service-icon i {
            font-size: 2.5rem;
            color: var(--primary-color);
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon i {
            color: #fff;
            transform: scale(1.1);
        }

        .service-number {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            width: 50px;
            height: 50px;
            background: rgba(0, 90, 130, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.125rem;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-number {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
            transform: rotate(360deg);
        }

        .service-card h4 {
            font-weight: 600;
            margin-bottom: 1rem;
            color: #222;
            transition: color 0.4s ease;
        }

        .service-card:hover h4 {
            color: #fff;
        }

        .service-card p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            transition: color 0.4s ease;
        }

        .service-card:hover p {
            color: rgba(255, 255, 255, 0.9);
        }

        .read-more {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .service-card:hover .read-more {
            color: #fff;
            gap: 1rem;
        }

        /* Service Details */
        .service-details {
            padding: 100px 0;
            background:#fff;
        }

        .service-detail-section {
            margin-bottom: 120px;
            scroll-margin-top: 100px;
            
        }

        .service-detail-section:last-child {
            margin-bottom: 0;
        }

        .service-image {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            position: relative;
            height: 500px;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .service-image:hover img {
            transform: scale(1.05);
        }

        .service-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 50%;
            background: linear-gradient(to top, rgba(0, 90, 130, 0.8), transparent);
        }

        .icon-badge {
            position: absolute;
            top: 2rem;
            left: 2rem;
            width: 80px;
            height: 80px;
            background: #fff;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }

        .icon-badge i {
            font-size: 2.5rem;
            color: var(--primary-color);
        }

        .detail-badge {
            display: inline-block;
            padding: 6px 20px;
            background: rgba(0, 90, 130, 0.1);
            color: var(--primary-color);
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

        .feature-box {
            background: #fff;
            padding: 1.5rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 1rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: start;
            gap: 1rem;
        }

        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background: rgba(0, 90, 130, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon i {
            color: var(--primary-color);
            font-size: 1.125rem;
        }

        .benefits-box {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            padding: 2rem;
            border-radius: 16px;
            color: #fff;
            margin-top: 2rem;
        }

        .benefits-box h5 {
            font-weight: 600;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #fff;
        }

        .benefits-box ul {
            list-style: none;
            padding: 0;
        }

        .benefits-box li {
            padding: 0.75rem 0;
            display: flex;
            align-items: start;
            gap: 0.75rem;
        }

        .benefits-box li i {
            color: #fff;
            margin-top: 0.25rem;
            flex-shrink: 0;
        }

        .btn-primary-custom {
            background: var(--primary-color);
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            color: #fff;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 90, 130, 0.3);
        }

        .btn-primary-custom:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(0, 90, 130, 0.4);
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -50%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .btn-light-custom {
            background: #fff;
            color: var(--primary-color);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .btn-light-custom:hover {
            background: #f8f9fa;
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        /* Expertise Section */
        .expertise-section {
            padding: 100px 0;
            background: #f8f9fa;
        }

        .expertise-card {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            position: relative;
            height: 450px;
        }

        .expertise-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }

        .expertise-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .expertise-card:hover img {
            transform: scale(1.1);
        }

        .expertise-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            color: #fff;
        }

        .expertise-badge {
            display: inline-block;
            padding: 6px 16px;
            background: var(--primary-color);
            border-radius: 50px;
            font-size: 0.875rem;
            margin-bottom: 0.75rem;
        }

        .expertise-card h4 {
            color: #fff;
            margin-bottom: 1rem;
        }


        /* Scroll to Top */
        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: #fff;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 90, 130, 0.3);
        }

        .scroll-top:hover {
            background: var(--primary-dark);
            transform: translateY(-5px);
        }

        .scroll-top.show {
            display: flex;
        }

        /* Decorative Elements */
        .decorative-box {
            position: absolute;
            width: 200px;
            height: 200px;
            background: rgba(0, 90, 130, 0.05);
            border-radius: 24px;
            z-index: -1;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-section {
                padding: 120px 0 60px;
            }

            .services-section,
            .service-details,
            .cta-section,
            .expertise-section {
                padding: 60px 0;
            }

            .service-card {
                padding: 2rem;
            }

            .service-image {
                height: 350px;
                margin-bottom: 2rem;
            }

            .service-detail-section {
                margin-bottom: 80px;
            }
        }
        
        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }
