
     

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: -200px;
            right: -200px;
            animation: float 6s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            bottom: -150px;
            left: -150px;
            animation: float 8s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        .hero-content {
            text-align: center;
            color: white;
            z-index: 2;
            padding: 40px 20px;
            max-width: 900px;
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .badges {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 30px;
            animation: fadeIn 1.2s ease;
        }

        .badge {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .badge:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-3px);
        }

        h1 {
            font-size: 3.5em;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
        }

        .hero-content p {
            font-size: 1.2em;
            margin-bottom: 40px;
            opacity: 0.95;
            line-height: 1.6;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 18px 40px;
            font-size: 1.1em;
            font-weight: 700;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: white;
            color: #667eea;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: #667eea;
            transform: translateY(-5px);
        }

        .section {
            padding: 100px 20px;
            background: white;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.8em;
            font-weight: 800;
            margin-bottom: 60px;
            color: #2d3748;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 2px;
        }

        .features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .feature-list {
            list-style: none;
        }

        .feature-item {
            padding: 20px;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            border-radius: 15px;
            font-size: 1.1em;
            font-weight: 600;
            color: #2d3748;
            transition: all 0.3s ease;
            border-left: 4px solid #667eea;
            opacity: 0;
            animation: slideInLeft 0.6s ease forwards;
        }

        .feature-item:nth-child(1) { animation-delay: 0.1s; }
        .feature-item:nth-child(2) { animation-delay: 0.2s; }
        .feature-item:nth-child(3) { animation-delay: 0.3s; }
        .feature-item:nth-child(4) { animation-delay: 0.4s; }
        .feature-item:nth-child(5) { animation-delay: 0.5s; }
        .feature-item:nth-child(6) { animation-delay: 0.6s; }
        .feature-item:nth-child(7) { animation-delay: 0.7s; }
        .feature-item:nth-child(8) { animation-delay: 0.8s; }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .feature-item:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
        }

       .feature-image {
    width: 100%;
    height: 500px;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    /* border-radius: 20px; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
    position: relative;
    overflow: hidden;
}

/* Image styling */
.feature-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 12px;
    z-index: 2;
}
@media (max-width: 768px) {
    .feature-image {
        display: none;
    }
}

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .benefits {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .card:hover::before {
            transform: scaleX(1);
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
        }

        .card-icon {
            font-size: 3em;
            margin-bottom: 20px;
            display: inline-block;
            transition: transform 0.4s ease;
        }

        .card:hover .card-icon {
            transform: scale(1.2) rotate(5deg);
        }

        .card h3 {
            font-size: 1.5em;
            margin-bottom: 15px;
            color: #2d3748;
        }

        .card p {
            color: #718096;
            line-height: 1.6;
        }

        .service-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: -10px;
        }

        .service-section:nth-child(even) .service-content {
            order: 2;
        }

        .service-section:nth-child(even) .service-image {
            order: 1;
        }

        .service-content h3 {
            font-size: 2em;
            margin-bottom: 20px;
            color: #2d3748;
        }

        .service-content p {
            font-size: 1.1em;
            color: #718096;
            line-height: 1.8;
        }

        .service-image {
    height: 350px;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    /* border-radius: 20px; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2); */
    transition: transform 0.3s ease;
    overflow: hidden;
}

/* Image styling */
.service-image img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

/* Hover effect */
.service-image:hover {
    transform: scale(1.05);
}


        .compliance-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .compliance-points {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .compliance-point {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .compliance-point:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }

        .compliance-point::before {
            content: '✓';
            font-size: 2em;
            font-weight: bold;
            margin-right: 10px;
            color: #4ade80;
        }

        .process-section {
            background: white;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }

        .step {
            text-align: center;
            position: relative;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2em;
            font-weight: bold;
            margin: 0 auto 20px;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
            transition: transform 0.3s ease;
        }

        .step:hover .step-number {
            transform: scale(1.1) rotate(360deg);
        }

        .step h4 {
            font-size: 1.3em;
            margin-bottom: 10px;
            color: #2d3748;
        }

        .step p {
            color: #718096;
        }

        .faq-section {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }

        .faq-container {
            max-width: 800px;
            margin: 60px auto 0;
        }

        .faq-item {
            background: white;
            margin-bottom: 20px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            padding: 25px;
            font-size: 1.2em;
            font-weight: 600;
            color: #2d3748;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
        }

        .faq-question::after {
            content: '+';
            font-size: 1.5em;
            font-weight: bold;
            color: #667eea;
            transition: transform 0.3s ease;
        }

        .faq-question.active::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 25px;
            color: #718096;
            line-height: 1.8;
        }

        .faq-answer.active {
            max-height: 500px;
            padding: 0 25px 25px;
        }

        .final-cta {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
            padding: 100px 20px;
        }

        .final-cta h2 {
            font-size: 3em;
            margin-bottom: 20px;
        }

        .final-cta p {
            font-size: 1.3em;
            margin-bottom: 40px;
            opacity: 0.95;
        }

        @media (max-width: 768px) {
            h1 { font-size: 2.2em; }
            .section-title { font-size: 2em; }
            .features, .service-section {
                grid-template-columns: 1fr;
            }
            .service-section:nth-child(even) .service-content,
            .service-section:nth-child(even) .service-image {
                order: 0;
            }
            .cards {
                grid-template-columns: 1fr;
            }
        }
    