

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        

        /* Service Header */
        .service-header {
            background: linear-gradient(135deg, #667eea 0%, #1d4ed8 100%);
            color: white;
            text-align: center;
            padding: 150px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .service-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.unsplash.com/photo-1534972195531-d756b9bfa9f2?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
            opacity: 0.5;
            z-index: 0;
        }

        .service-header .container {
            position: relative;
            z-index: 1;
        }

        .service-header h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .service-header p {
            font-size: 1.3rem;
            opacity: 0.9;
        }

        /* Service Content */
        .service-content {
            padding: 80px 0;
        }

        .service-overview {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 3rem;
            align-items: center;
            margin-bottom: 80px;
            background: white;
            padding: 60px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .service-icon-lg {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #667eea, #1d4ed8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
        }

        .service-overview h2 {
            font-size: 2.5rem;
            color: #1e293b;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .service-overview p {
            font-size: 1.1rem;
            color: #64748b;
            line-height: 1.8;
        }

        /* Service Details */
        .service-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        .detail-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            border-left: 4px solid #667eea;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .detail-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .detail-card h3 {
            font-size: 1.4rem;
            color: #1e293b;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .detail-card p {
            color: #64748b;
            line-height: 1.7;
        }

        /* Case Study */
        .case-study {
            background: white;
            padding: 60px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .case-study h2 {
            font-size: 2.2rem;
            color: #1e293b;
            margin-bottom: 2rem;
            text-align: center;
        }

        .case-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .case-content img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .case-content h3 {
            font-size: 1.8rem;
            color: #1e293b;
            margin-bottom: 1rem;
        }

        .case-content p {
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #667eea, #1d4ed8);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
        }

        
        /* Responsive */
        @media (max-width: 768px) {
            .service-header h1 {
                font-size: 2.5rem;
            }

            .service-overview {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 40px 30px;
            }

            .case-content {
                grid-template-columns: 1fr;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .navbar ul {
                display: none;
            }
        }
@media (max-width: 768px) {
    @media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .navbar ul {
        display: none;
        position: fixed;
        top: 80px;
        right: 100%;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }

    .navbar ul.active {
        display: flex;
        right: 0;
    }
}

    

    


    /* General responsive content styles */
    .service-header {
        padding: 80px 0 60px;
        margin-top: 60px; /* Adjust for potentially smaller mobile header if needed */
    }
    .service-header h1 {
        font-size: 2.5rem;
    }

    .service-overview {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 30px;
    }
    .service-icon-lg {
        margin: 0 auto;
    }

    .case-content {
        grid-template-columns: 1fr;
    }

    /* You would also add responsive styles for contact and footer here */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}