        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #0070c0;
            --primary-dark: #005a9c;
            --primary-blue: #0070c0;
            --secondary-blue: #50b9ff;
            --accent: #50b9ff;
            --success-green: #3a6cce;
            --dark-gray: #1d395c;
            --light-gray: #f5f5f5;
            --text-dark: #333;
            --text-light: #666;
            --white: #fff;
        }

        body {
            font-family: 'Source Sans Pro', 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: var(--white);
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        .header {
            background: var(--dark-gray);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

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

        .nav-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #41CD52;
        }

        .logo img {
            max-height: 50px;
            height: auto;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-menu a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            text-transform: capitalize;
            cursor: pointer;
        }

        .nav-menu a:hover {
            color: #41CD52;
        }

        .btn-nav {
            background: #41CD52;
            color: var(--white);
            padding: 0.5rem 1.5rem;
            border-radius: 0.7rem;
            box-shadow: 0 3px 10px rgba(65,205,82,.5);
            transition: all 0.3s;
            text-decoration: none;
        }

        .btn-nav:hover {
            box-shadow: 0 5px 10px rgba(65,205,82,.5);
            transform: translateY(-2px);
        }

        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, rgb(13, 25, 37) 0%, rgb(29, 57, 92) 50%, rgb(13, 25, 37) 100%);
            color: var(--white);
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .hero .subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--secondary-blue), var(--success-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Services Grid */
        .services-section {
            padding: 4rem 0;
            background: var(--white);
        }

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

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--text-light);
        }

        .intro-text {
            background: linear-gradient(135deg, #f8fafe 0%, #f0f4ff 100%);
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 3rem;
            box-shadow: 0 8px 25px rgba(44, 90, 160, 0.1);
            border-left: 5px solid var(--primary-blue);
        }

        .intro-text h2 {
            color: var(--text-dark);
            font-size: 1.8rem;
            margin-bottom: 1rem;
            text-align: center;
        }

        .intro-text p {
            color: var(--text-light);
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .intro-text .support-link {
            margin-top: 1.5rem;
            text-align: center;
        }

        .intro-text .support-link a {
            color: var(--primary-blue);
            text-decoration: none;
            display: block;
        }

        .intro-text .support-link img {
            max-width: 150px;
            display: block;
            margin: 0.5rem auto 0;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .service-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(45deg, var(--primary-blue), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--white);
            box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
        }

        .service-card h3 {
            font-size: 1.5rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .service-highlight {
    background: linear-gradient(90deg, #41CD52, #34a844);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(65, 205, 82, 0.3);
}

        .service-description {
            color: var(--text-light);
            font-size: 1rem;
            margin-bottom: 1.5rem;
            line-height: 1.7;
            flex-grow: 1;
        }

        .cta-button {
            background: linear-gradient(45deg, var(--primary-blue), var(--primary-dark));
            color: var(--white);
            border: 2px solid #8ac9f7;
            padding: 0.8rem 1.8rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            display: inline-block;
            min-width: 200px;
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(44, 90, 160, 0.4);
        }

        .intro {
            text-align: center;
        }
        .hero-2 {
            padding: 4rem 0;
            background: var(--white);
        }

        .hero-2 .intro h1 {
            font-size: 2.5rem;
            font-weight: 600;
            line-height: 1.2;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .hero-2 .intro h2 {
            font-size: 2rem;
            font-weight: 600;
            line-height: 1.2;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .hero-2 .intro h3 {
            font-size: 1.3rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .hero-2 .intro p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--text-light);
            margin-top: 1rem;
        }

        .hero-2 img {
            max-width: 100%;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        /* Benefits Section */
        .features-boxed {
            padding: 4rem 0;
            background: var(--light-gray);
        }

        .boxed-intro {
            text-align: center;
            margin-bottom: 3rem;
        }

        .boxed-intro h1 {
            font-size: 2.5rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .boxed-intro h4 {
            font-size: 1.2rem;
            color: var(--text-light);
            text-transform: capitalize;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .box-inner {
            background: var(--white);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
            min-height: 300px;
        }

        .box-inner:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .box-icon {
            margin-bottom: 1.5rem;
        }

        .box-icon img {
            width: 45px;
            height: 45px;
        }

        .box-info h1 {
            font-size: 1.5rem;
            color: var(--text-dark);
            margin-bottom: 1rem;
        }

        .box-info p {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Footer */
        .footer {
            background: var(--dark-gray);
            color: var(--white);
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .ft-left img {
            max-width: 150px;
            margin-bottom: 1rem;
        }

        .ft-left p {
            color: #ccc;
            line-height: 1.6;
        }

        .ft-right ul {
            list-style: none;
            columns: 2;
        }

        .ft-right ul li {
            margin-bottom: 0.5rem;
        }

        .ft-right a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
            cursor: pointer;
        }

        .ft-right a:hover {
            color: #41CD52;
        }

        .two-col-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .centered-section {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .centered-section .intro {
            text-align: center;
            max-width: 600px;
        }

        .centered-section img {
            display: block;
            margin: 2rem auto;
        }

        /* Contact Modal */
        .contact-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .contact-modal.active {
            display: flex;
        }

        .modal-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
        }

        .modal-content {
            position: relative;
            background: var(--white);
            border-radius: 20px;
            padding: 3rem;
            max-width: 600px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            font-size: 2rem;
            color: var(--text-light);
            cursor: pointer;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
        }

        .modal-close:hover {
            background: var(--light-gray);
            color: var(--text-dark);
        }

        .modal-content h3 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .modal-subtitle {
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            max-width: 90vw;
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-status {
            margin: 1rem 0;
            padding: 1rem;
            border-radius: 8px;
            display: none;
            font-weight: 500;
        }

        .form-status.success {
            display: block;
            background: #e8f5e9;
            color: #2e7d32;
            border: 1px solid #81c784;
        }

        .form-status.error {
            display: block;
            background: #ffebee;
            color: #c62828;
            border: 1px solid #ef5350;
        }

        .form-submit-btn {
            width: 100%;
            max-width: 90vw;
            padding: 1.25rem;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .form-submit-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 112, 192, 0.3);
        }

        .form-submit-btn:disabled {
            background: var(--text-light);
            cursor: not-allowed;
            transform: none;
        }

        .btn-loader {
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background: var(--dark-gray);
                width1: 100%;
                padding: 2rem;
                gap: 1rem;
                transition: left 0.3s;
                box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            }

            .nav-menu.active {
                left: 0;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero .subtitle {
                font-size: 1rem;
            }

            .section-header h2 {
                font-size: 1.8rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .two-col-layout {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-2 .intro h1 {
                font-size: 1.8rem;
            }

            .hero-2 .intro h2 {
                font-size: 1.5rem;
            }

            .ft-right ul {
                columns: 1;
            }

            .modal-content {
                padding: 2rem 1.5rem;
                width: 95%;
            }

            .modal-content h3 {
                font-size: 1.5rem;
            }

            .intro-text {
                padding: 1.5rem;
            }

            .intro-text h2 {
                font-size: 1.4rem;
            }

            .intro-text p {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }

            .section-header h2 {
                font-size: 1.5rem;
            }

            .service-card {
                padding: 2rem 1.5rem;
            }

            .cta-button {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }
        }


.language-selector {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-left: 1rem;
    background: #fff;
  padding: 4px;
  border-radius: 12px;
}
.language-selector.show {
    animation: popIn 0.9s ease-out;
}

@keyframes popIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    25% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(0.75);
    }
    75% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.lang-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.lang-btn.active {
    background: var(--primary);
    color: var(--white);
    cursor: default;
}

@media (max-width: 768px) {
.language-selector {
                margin-left: 0;
                margin-top: 1rem;
            }
        }
.hide {
display:none !important;
}        