﻿  /* Header */
        header {
            background: linear-gradient(135deg, #0a1f2e 0%, #1a3a4a 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo img {
            height: 60px;
            width: auto;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .logo-name {
            font-size: 1.8rem;
            font-weight: bold;
            letter-spacing: 2px;
            color: #00ffcc;
        }

        .logo-tagline {
            font-size: 0.8rem;
            color: #66d9ff;
            letter-spacing: 3px;
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, #0a1f2e 0%, #1a3a4a 100%);
            color: white;
            padding: 5rem 2rem 4rem;
            text-align: center;
        }

        .page-header h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #00ffcc;
        }

        .page-header p {
            font-size: 1.3rem;
            color: #66d9ff;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Service Section */
        .service-section {
            padding: 5rem 2rem;
            background: white;
        }

        .service-section:nth-child(even) {
            background: #f8f9fa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .service-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .service-title {
            font-size: 2.5rem;
            color: #0a1f2e;
            margin-bottom: 1rem;
        }

        .service-title::after {
            content: '';
            display: block;
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #00ffcc, #66d9ff);
            margin: 1rem auto 0;
        }

        .service-overview {
            font-size: 1.2rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 3rem;
            text-align: center;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .service-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-top: 3rem;
        }

        .service-card {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }

        .service-section:nth-child(even) .service-card {
            background: white;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 255, 204, 0.2);
        }

        .card-title {
            font-size: 1.8rem;
            color: #0a1f2e;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .card-icon {
            font-size: 2rem;
            color: #00ffcc;
        }

        .features-list, .benefits-list {
            list-style: none;
            padding: 0;
        }

        .features-list li, .benefits-list li {
            padding: 0.8rem 0;
            color: #555;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .features-list li::before {
            content: "✓";
            color: #00ffcc;
            font-weight: bold;
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        .benefits-list li::before {
            content: "→";
            color: #66d9ff;
            font-weight: bold;
            font-size: 1.3rem;
            flex-shrink: 0;
        }

        /* CTA Button */
        .service-cta {
            text-align: center;
            margin-top: 3rem;
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: linear-gradient(135deg, #00ffcc 0%, #66d9ff 100%);
            color: #0a1f2e;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 255, 204, 0.4);
        }

        /* Final CTA Section */
        .final-cta {
            background: linear-gradient(135deg, #0a1f2e 0%, #1a3a4a 100%);
            color: white;
            padding: 5rem 2rem;
            text-align: center;
        }

        .final-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #00ffcc;
        }

        .final-cta p {
            font-size: 1.2rem;
            color: #66d9ff;
            margin-bottom: 2rem;
        }
        @media screen and (max-width:991px){
            .service-content {
                display: flex;
                gap: 1rem;
            }
            .service-card {
                width: 50%;
                padding: 10px 15px;
            }
        }