
:root {
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;
    --blue-50: #eff6ff;
    --blue-600: #2563eb;
    --blue-900: #1e3a8a;
    --slate-50: #f8fafc;
    --slate-900: #0f172a;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #334155;
    background: linear-gradient(135deg, var(--slate-50), var(--blue-50), var(--emerald-50));
    min-height: 100vh;
}

.navbar {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--emerald-100);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--emerald-600) !important;
}

.navbar-brand small {
    display: block;
    font-size: 0.7rem;
    color: #6b7280;
    font-weight: 400;
}

.nav-link {
    color: #374151 !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--emerald-600) !important;
}

.btn-emerald {
    background: var(--emerald-600);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-emerald:hover {
    background: var(--emerald-700);
    color: white;
    transform: translateY(-2px);
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9), rgba(6, 95, 70, 0.9), rgba(37, 99, 235, 0.9)),
                url('https://images.unsplash.com/photo-1523270918669-1fd17ac1742d?crop=entropy&cs=srgb&fm=jpg&ixid=M3w3NDk1Nzh8MHwxfHNlYXJjaHwxfHxVQUUlMjBidXNpbmVzc3xlbnwwfHx8Ymx1ZXwxNzUyMjQzNzU2fDA&ixlib=rb-4.1.0&q=85');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--emerald-100);
}

.btn-hero {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.btn-hero-primary {
    background: var(--emerald-500);
    color: white;
    border: none;
}

.btn-hero-primary:hover {
    background: var(--emerald-600);
    color: white;
    transform: translateY(-2px);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--emerald-600);
}

.service-card {
    background: linear-gradient(135deg, white, var(--emerald-50));
    border: 1px solid var(--emerald-100);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: var(--emerald-100);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--emerald-600);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--emerald-200);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 4rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: var(--emerald-100);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--emerald-600);
    font-size: 1.25rem;
}

.process-step {
    text-align: center;
    margin-bottom: 2rem;
}

.process-number {
    width: 4rem;
    height: 4rem;
    background: var(--emerald-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--emerald-600);
    transition: all 0.3s ease;
}

.process-step:hover .process-number {
    background: var(--emerald-200);
    transform: scale(1.1);
}

.contact-section {
    background: linear-gradient(135deg, var(--emerald-600), var(--blue-600));
    color: white;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.25rem;
    min-width: 4rem;
}

.success-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--emerald-600);
    color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.success-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.success-text {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.footer {
    background: var(--slate-900);
    color: white;
    padding: 3rem 0;
}

.footer-title {
    color: var(--emerald-400);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--emerald-400);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.stagger-animation {
    animation-delay: 0.1s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .success-badge {
        bottom: -1rem;
        right: -1rem;
        padding: 1rem;
    }
}






:root {
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;
    --blue-50: #eff6ff;
    --blue-600: #2563eb;
    --blue-900: #1e3a8a;
    --slate-50: #f8fafc;
    --slate-900: #0f172a;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #334155;
    background: linear-gradient(135deg, var(--slate-50), var(--blue-50), var(--emerald-50));
    padding-top: 80px;
}

.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--emerald-100);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--emerald-600) !important;
}

.navbar-brand small {
    display: block;
    font-size: 0.7rem;
    color: #6b7280;
    font-weight: 400;
}

.nav-link {
    color: #374151 !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--emerald-600) !important;
}

.btn-emerald {
    background: var(--emerald-600);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-emerald:hover {
    background: var(--emerald-700);
    color: white;
    transform: translateY(-2px);
}

.page-header {
    background: linear-gradient(135deg, var(--emerald-600), var(--blue-600));
    color: white;
    padding: 4rem 0;
    margin-bottom: 4rem;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

.value-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background: var(--emerald-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--emerald-600);
}

.stats-section {
    background: var(--emerald-600);
    color: white;
    padding: 4rem 0;
}

.stat-item {
    text-align: center;
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.team-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: var(--emerald-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--emerald-600);
}

.footer {
    background: var(--slate-900);
    color: white;
    padding: 3rem 0;
}

.footer-title {
    color: var(--emerald-400);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--emerald-400);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}





   
        :root {
            --emerald-50: #ecfdf5;
            --emerald-100: #d1fae5;
            --emerald-200: #a7f3d0;
            --emerald-400: #34d399;
            --emerald-500: #10b981;
            --emerald-600: #059669;
            --emerald-700: #047857;
            --emerald-800: #065f46;
            --emerald-900: #064e3b;
            --blue-50: #eff6ff;
            --blue-600: #2563eb;
            --blue-900: #1e3a8a;
            --slate-50: #f8fafc;
            --slate-900: #0f172a;
        }

        * {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #334155;
            background: linear-gradient(135deg, var(--slate-50), var(--blue-50), var(--emerald-50));
            padding-top: 80px;
        }

        .navbar {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--emerald-100);
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--emerald-600) !important;
        }

        .navbar-brand small {
            display: block;
            font-size: 0.7rem;
            color: #6b7280;
            font-weight: 400;
        }

        .nav-link {
            color: #374151 !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--emerald-600) !important;
        }

        .btn-emerald {
            background: var(--emerald-600);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-emerald:hover {
            background: var(--emerald-700);
            color: white;
            transform: translateY(-2px);
        }

        .page-header {
            background: linear-gradient(135deg, var(--emerald-600), var(--blue-600));
            color: white;
            padding: 4rem 0;
            margin-bottom: 4rem;
        }

        .breadcrumb {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 0.5rem;
            padding: 0.5rem 1rem;
            margin-bottom: 2rem;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.7);
        }

        .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
        }

        .breadcrumb-item.active {
            color: white;
        }

        .contact-card {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid var(--emerald-100);
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .contact-icon {
            width: 4rem;
            height: 4rem;
            background: var(--emerald-100);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: var(--emerald-600);
        }

        .form-control {
            border: 2px solid #e2e8f0;
            border-radius: 0.5rem;
            padding: 0.75rem 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--emerald-500);
            box-shadow: 0 0 0 0.2rem rgba(16, 185, 129, 0.25);
        }

        .form-label {
            font-weight: 600;
            color: var(--slate-900);
            margin-bottom: 0.5rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--slate-900);
            margin-bottom: 1rem;
        }

        .hours-badge {
            background: var(--emerald-100);
            color: var(--emerald-700);
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-weight: 600;
        }

        .footer {
            background: var(--slate-900);
            color: white;
            padding: 3rem 0;
        }

        .footer-title {
            color: var(--emerald-400);
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .footer-link {
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: var(--emerald-400);
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .map-container {
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
        }
    





 
        :root {
            --emerald-50: #ecfdf5;
            --emerald-100: #d1fae5;
            --emerald-200: #a7f3d0;
            --emerald-400: #34d399;
            --emerald-500: #10b981;
            --emerald-600: #059669;
            --emerald-700: #047857;
            --emerald-800: #065f46;
            --emerald-900: #064e3b;
            --blue-50: #eff6ff;
            --blue-600: #2563eb;
            --blue-900: #1e3a8a;
            --slate-50: #f8fafc;
            --slate-900: #0f172a;
        }

        * {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #334155;
            background: linear-gradient(135deg, var(--slate-50), var(--blue-50), var(--emerald-50));
            padding-top: 80px;
        }

        .navbar {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--emerald-100);
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--emerald-600) !important;
        }

        .navbar-brand small {
            display: block;
            font-size: 0.7rem;
            color: #6b7280;
            font-weight: 400;
        }

        .nav-link {
            color: #374151 !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--emerald-600) !important;
        }

        .btn-emerald {
            background: var(--emerald-600);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-emerald:hover {
            background: var(--emerald-700);
            color: white;
            transform: translateY(-2px);
        }

        .page-header {
            background: linear-gradient(135deg, var(--emerald-600), var(--blue-600));
            color: white;
            padding: 4rem 0;
            margin-bottom: 4rem;
        }

        .breadcrumb {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 0.5rem;
            padding: 0.5rem 1rem;
            margin-bottom: 2rem;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.7);
        }

        .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
        }

        .breadcrumb-item.active {
            color: white;
        }

        .service-hero {
            background: white;
            border-radius: 1rem;
            padding: 3rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            margin-bottom: 3rem;
        }

        .service-icon {
            width: 5rem;
            height: 5rem;
            background: var(--emerald-100);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2.5rem;
            color: var(--emerald-600);
        }

        .bank-card {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid var(--emerald-100);
        }

        .bank-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .bank-logo {
            width: 4rem;
            height: 4rem;
            background: var(--emerald-100);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: var(--emerald-600);
        }

        .requirements-section {
            background: var(--emerald-50);
            border-radius: 1rem;
            padding: 2rem;
            border-left: 4px solid var(--emerald-600);
        }

        .footer {
            background: var(--slate-900);
            color: white;
            padding: 3rem 0;
        }

        .footer-title {
            color: var(--emerald-400);
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .footer-link {
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: var(--emerald-400);
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .service-hero {
                padding: 2rem;
            }
        }
    
    
        :root {
            --emerald-50: #ecfdf5;
            --emerald-100: #d1fae5;
            --emerald-200: #a7f3d0;
            --emerald-400: #34d399;
            --emerald-500: #10b981;
            --emerald-600: #059669;
            --emerald-700: #047857;
            --emerald-800: #065f46;
            --emerald-900: #064e3b;
            --blue-50: #eff6ff;
            --blue-600: #2563eb;
            --blue-900: #1e3a8a;
            --slate-50: #f8fafc;
            --slate-900: #0f172a;
        }

        * {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #334155;
            background: linear-gradient(135deg, var(--slate-50), var(--blue-50), var(--emerald-50));
            padding-top: 80px;
        }

        .navbar {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--emerald-100);
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--emerald-600) !important;
        }

        .navbar-brand small {
            display: block;
            font-size: 0.7rem;
            color: #6b7280;
            font-weight: 400;
        }

        .nav-link {
            color: #374151 !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--emerald-600) !important;
        }

        .btn-emerald {
            background: var(--emerald-600);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-emerald:hover {
            background: var(--emerald-700);
            color: white;
            transform: translateY(-2px);
        }

        .page-header {
            background: linear-gradient(135deg, var(--emerald-600), var(--blue-600));
            color: white;
            padding: 4rem 0;
            margin-bottom: 4rem;
        }

        .breadcrumb {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 0.5rem;
            padding: 0.5rem 1rem;
            margin-bottom: 2rem;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.7);
        }

        .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
        }

        .breadcrumb-item.active {
            color: white;
        }

        .service-hero {
            background: white;
            border-radius: 1rem;
            padding: 3rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            margin-bottom: 3rem;
        }

        .service-icon {
            width: 5rem;
            height: 5rem;
            background: var(--emerald-100);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2.5rem;
            color: var(--emerald-600);
        }

        .feature-card {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            height: 100%;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .process-step {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            height: 100%;
        }

        .step-number {
            width: 3rem;
            height: 3rem;
            background: var(--emerald-600);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            margin: 0 auto 1rem;
        }

        .requirements-list {
            background: var(--emerald-50);
            border-radius: 1rem;
            padding: 2rem;
            border-left: 4px solid var(--emerald-600);
        }

        .requirements-list ul {
            list-style: none;
            padding: 0;
        }

        .requirements-list li {
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
        }

        .requirements-list i {
            color: var(--emerald-600);
            margin-right: 0.5rem;
            width: 20px;
        }

        .pricing-card {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            text-align: center;
            height: 100%;
        }

        .price-tag {
            font-size: 2rem;
            font-weight: 700;
            color: var(--emerald-600);
            margin-bottom: 1rem;
        }

        .footer {
            background: var(--slate-900);
            color: white;
            padding: 3rem 0;
        }

        .footer-title {
            color: var(--emerald-400);
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .footer-link {
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: var(--emerald-400);
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .service-hero {
                padding: 2rem;
            }
        }
    
    
        :root {
            --emerald-50: #ecfdf5;
            --emerald-100: #d1fae5;
            --emerald-200: #a7f3d0;
            --emerald-400: #34d399;
            --emerald-500: #10b981;
            --emerald-600: #059669;
            --emerald-700: #047857;
            --emerald-800: #065f46;
            --emerald-900: #064e3b;
            --blue-50: #eff6ff;
            --blue-600: #2563eb;
            --blue-900: #1e3a8a;
            --slate-50: #f8fafc;
            --slate-900: #0f172a;
        }

        * {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #334155;
            background: linear-gradient(135deg, var(--slate-50), var(--blue-50), var(--emerald-50));
            padding-top: 80px;
        }

        .navbar {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--emerald-100);
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--emerald-600) !important;
        }

        .navbar-brand small {
            display: block;
            font-size: 0.7rem;
            color: #6b7280;
            font-weight: 400;
        }

        .nav-link {
            color: #374151 !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--emerald-600) !important;
        }

        .btn-emerald {
            background: var(--emerald-600);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-emerald:hover {
            background: var(--emerald-700);
            color: white;
            transform: translateY(-2px);
        }

        .page-header {
            background: linear-gradient(135deg, var(--emerald-600), var(--blue-600));
            color: white;
            padding: 4rem 0;
            margin-bottom: 4rem;
        }

        .breadcrumb {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 0.5rem;
            padding: 0.5rem 1rem;
            margin-bottom: 2rem;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.7);
        }

        .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
        }

        .breadcrumb-item.active {
            color: white;
        }

        .service-hero {
            background: white;
            border-radius: 1rem;
            padding: 3rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            margin-bottom: 3rem;
        }

        .service-icon {
            width: 5rem;
            height: 5rem;
            background: var(--emerald-100);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2.5rem;
            color: var(--emerald-600);
        }

        .approval-card {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid var(--emerald-100);
        }

        .approval-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .approval-icon {
            width: 4rem;
            height: 4rem;
            background: var(--emerald-100);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: var(--emerald-600);
        }

        .footer {
            background: var(--slate-900);
            color: white;
            padding: 3rem 0;
        }

        .footer-title {
            color: var(--emerald-400);
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .footer-link {
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: var(--emerald-400);
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .service-hero {
                padding: 2rem;
            }
        }
    
   
        :root {
            --emerald-50: #ecfdf5;
            --emerald-100: #d1fae5;
            --emerald-200: #a7f3d0;
            --emerald-400: #34d399;
            --emerald-500: #10b981;
            --emerald-600: #059669;
            --emerald-700: #047857;
            --emerald-800: #065f46;
            --emerald-900: #064e3b;
            --blue-50: #eff6ff;
            --blue-600: #2563eb;
            --blue-900: #1e3a8a;
            --slate-50: #f8fafc;
            --slate-900: #0f172a;
        }

        * {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #334155;
            background: linear-gradient(135deg, var(--slate-50), var(--blue-50), var(--emerald-50));
            padding-top: 80px;
        }

        .navbar {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--emerald-100);
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--emerald-600) !important;
        }

        .navbar-brand small {
            display: block;
            font-size: 0.7rem;
            color: #6b7280;
            font-weight: 400;
        }

        .nav-link {
            color: #374151 !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--emerald-600) !important;
        }

        .btn-emerald {
            background: var(--emerald-600);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-emerald:hover {
            background: var(--emerald-700);
            color: white;
            transform: translateY(-2px);
        }

        .page-header {
            background: linear-gradient(135deg, var(--emerald-600), var(--blue-600));
            color: white;
            padding: 4rem 0;
            margin-bottom: 4rem;
        }

        .breadcrumb {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 0.5rem;
            padding: 0.5rem 1rem;
            margin-bottom: 2rem;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.7);
        }

        .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
        }

        .breadcrumb-item.active {
            color: white;
        }

        .service-hero {
            background: white;
            border-radius: 1rem;
            padding: 3rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            margin-bottom: 3rem;
        }

        .service-icon {
            width: 5rem;
            height: 5rem;
            background: var(--emerald-100);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2.5rem;
            color: var(--emerald-600);
        }

        .freezone-card {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid var(--emerald-100);
        }

        .freezone-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .freezone-icon {
            width: 4rem;
            height: 4rem;
            background: var(--emerald-100);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: var(--emerald-600);
        }

        .benefits-section {
            background: var(--emerald-50);
            border-radius: 1rem;
            padding: 2rem;
            border-left: 4px solid var(--emerald-600);
        }

        .footer {
            background: var(--slate-900);
            color: white;
            padding: 3rem 0;
        }

        .footer-title {
            color: var(--emerald-400);
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .footer-link {
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: var(--emerald-400);
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .service-hero {
                padding: 2rem;
            }
        }
    
    
        :root {
            --emerald-50: #ecfdf5;
            --emerald-100: #d1fae5;
            --emerald-200: #a7f3d0;
            --emerald-400: #34d399;
            --emerald-500: #10b981;
            --emerald-600: #059669;
            --emerald-700: #047857;
            --emerald-800: #065f46;
            --emerald-900: #064e3b;
            --blue-50: #eff6ff;
            --blue-600: #2563eb;
            --blue-900: #1e3a8a;
            --slate-50: #f8fafc;
            --slate-900: #0f172a;
        }

        * {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #334155;
            background: linear-gradient(135deg, var(--slate-50), var(--blue-50), var(--emerald-50));
            padding-top: 80px;
        }

        .navbar {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--emerald-100);
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--emerald-600) !important;
        }

        .navbar-brand small {
            display: block;
            font-size: 0.7rem;
            color: #6b7280;
            font-weight: 400;
        }

        .nav-link {
            color: #374151 !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--emerald-600) !important;
        }

        .btn-emerald {
            background: var(--emerald-600);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-emerald:hover {
            background: var(--emerald-700);
            color: white;
            transform: translateY(-2px);
        }

        .page-header {
            background: linear-gradient(135deg, var(--emerald-600), var(--blue-600));
            color: white;
            padding: 4rem 0;
            margin-bottom: 4rem;
        }

        .breadcrumb {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 0.5rem;
            padding: 0.5rem 1rem;
            margin-bottom: 2rem;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.7);
        }

        .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
        }

        .breadcrumb-item.active {
            color: white;
        }

        .service-hero {
            background: white;
            border-radius: 1rem;
            padding: 3rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            margin-bottom: 3rem;
        }

        .service-icon {
            width: 5rem;
            height: 5rem;
            background: var(--emerald-100);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2.5rem;
            color: var(--emerald-600);
        }

        .vat-card {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid var(--emerald-100);
        }

        .vat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .vat-icon {
            width: 4rem;
            height: 4rem;
            background: var(--emerald-100);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: var(--emerald-600);
        }

        .compliance-section {
            background: var(--emerald-50);
            border-radius: 1rem;
            padding: 2rem;
            border-left: 4px solid var(--emerald-600);
        }

        .footer {
            background: var(--slate-900);
            color: white;
            padding: 3rem 0;
        }

        .footer-title {
            color: var(--emerald-400);
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .footer-link {
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: var(--emerald-400);
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .service-hero {
                padding: 2rem;
            }
        }
    
    
        :root {
            --emerald-50: #ecfdf5;
            --emerald-100: #d1fae5;
            --emerald-200: #a7f3d0;
            --emerald-400: #34d399;
            --emerald-500: #10b981;
            --emerald-600: #059669;
            --emerald-700: #047857;
            --emerald-800: #065f46;
            --emerald-900: #064e3b;
            --blue-50: #eff6ff;
            --blue-600: #2563eb;
            --blue-900: #1e3a8a;
            --slate-50: #f8fafc;
            --slate-900: #0f172a;
            --gold: #ffd700;
        }

        * {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #334155;
            background: linear-gradient(135deg, var(--slate-50), var(--blue-50), var(--emerald-50));
            padding-top: 80px;
        }

        .navbar {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--emerald-100);
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--emerald-600) !important;
        }

        .navbar-brand small {
            display: block;
            font-size: 0.7rem;
            color: #6b7280;
            font-weight: 400;
        }

        .nav-link {
            color: #374151 !important;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--emerald-600) !important;
        }

        .btn-emerald {
            background: var(--emerald-600);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-emerald:hover {
            background: var(--emerald-700);
            color: white;
            transform: translateY(-2px);
        }

        .btn-gold {
            background: var(--gold);
            color: #1f2937;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-gold:hover {
            background: #ffed4a;
            color: #1f2937;
            transform: translateY(-2px);
        }

        .page-header {
            background: linear-gradient(135deg, var(--emerald-600), var(--blue-600));
            color: white;
            padding: 4rem 0;
            margin-bottom: 4rem;
        }

        .breadcrumb {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 0.5rem;
            padding: 0.5rem 1rem;
            margin-bottom: 2rem;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.7);
        }

        .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
        }

        .breadcrumb-item.active {
            color: white;
        }

        .service-hero {
            background: white;
            border-radius: 1rem;
            padding: 3rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            margin-bottom: 3rem;
        }

        .service-icon {
            width: 5rem;
            height: 5rem;
            background: var(--emerald-100);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2.5rem;
            color: var(--emerald-600);
        }

        .golden-visa-card {
            background: linear-gradient(135deg, var(--gold), #ffed4a);
            color: #1f2937;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 10px 25px -5px rgba(255, 215, 0, 0.3);
            margin-bottom: 2rem;
        }

        .visa-type-card {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid var(--emerald-100);
        }

        .visa-type-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .visa-icon {
            width: 4rem;
            height: 4rem;
            background: var(--emerald-100);
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: var(--emerald-600);
        }

        .golden-visa-icon {
            background: rgba(255, 215, 0, 0.2);
            color: var(--gold);
        }

        .requirements-section {
            background: var(--emerald-50);
            border-radius: 1rem;
            padding: 2rem;
            border-left: 4px solid var(--emerald-600);
        }

        .requirements-section ul {
            list-style: none;
            padding: 0;
        }

        .requirements-section li {
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
        }

        .requirements-section i {
            color: var(--emerald-600);
            margin-right: 0.5rem;
            width: 20px;
        }

        .footer {
            background: var(--slate-900);
            color: white;
            padding: 3rem 0;
        }

        .footer-title {
            color: var(--emerald-400);
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .footer-link {
            color: #d1d5db;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: var(--emerald-400);
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .service-hero {
                padding: 2rem;
            }
        }
    