
    /* Custom Vanilla CSS for specific effects */
    body {
        background-color: #020617;
        color: #e2e8f0;
        overflow-x: hidden;
    }

    /* Preloader Styles */
    #preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #020617;
        z-index: 9999;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    }

    .loader-content {
        text-align: center;
    }

    .loader-logo {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 3rem;
        font-weight: bold;
        color: white;
        animation: pulse-logo 2s infinite;
    }

    .loader-bar {
        width: 150px;
        height: 4px;
        background: rgba(255, 255, 255, 0.1);
        margin: 20px auto 0;
        border-radius: 2px;
        overflow: hidden;
        position: relative;
    }

    .loader-bar::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 50%;
        height: 100%;
        background: #10b981;
        animation: loading 1.5s infinite ease-in-out;
    }

    @keyframes pulse-logo {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.8; transform: scale(0.98); }
    }

    @keyframes loading {
        0% { left: -50%; }
        100% { left: 100%; }
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #0f172a;
    }
    ::-webkit-scrollbar-thumb {
        background: #10b981;
        border-radius: 4px;
    }

    /* Utility to hide scrollbar but keep functionality */
    .no-scrollbar::-webkit-scrollbar {
        display: none;
    }
    .no-scrollbar {
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
    }

    /* Glassmorphism Card */
    .glass-card {
        background: rgba(15, 23, 42, 0.6);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .glass-card:hover {
        border-color: rgba(16, 185, 129, 0.3);
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
    }

    /* Gradient Text */
    .text-gradient {
        background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* Hero Background Mesh */
    .hero-bg {
        background: 
            radial-gradient(circle at 15% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 25%),
            radial-gradient(circle at 85% 30%, rgba(52, 211, 153, 0.05) 0%, transparent 25%);
        position: relative;
    }

    /* Calculator Range Slider */
    input[type=range] {
        -webkit-appearance: none; 
        width: 100%; 
        background: transparent; 
    }

    input[type=range]::-webkit-slider-thumb {
        -webkit-appearance: none;
        height: 20px;
        width: 20px;
        border-radius: 50%;
        background: #10b981;
        cursor: pointer;
        margin-top: -8px; 
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
        transition: transform 0.1s;
    }

    input[type=range]::-webkit-slider-thumb:hover {
        transform: scale(1.2);
    }

    input[type=range]::-webkit-slider-runnable-track {
        width: 100%;
        height: 4px;
        cursor: pointer;
        background: #334155;
        border-radius: 2px;
    }

    /* Glow effects */
    .glow-point {
        position: absolute;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
    }

    /* Service Card Icon Container */
    .icon-box {
        position: relative;
        z-index: 1;
    }
    .icon-box::before {
        content: '';
        position: absolute;
        inset: -5px;
        background: rgba(16, 185, 129, 0.2);
        filter: blur(10px);
        z-index: -1;
        border-radius: 50%;
    }

    /* Star Rating Input */
    .rating {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
    }
    .rating input { display: none; }
    .rating label {
        cursor: pointer;
        width: 30px;
        font-size: 24px;
        color: #4b5563;
        transition: color 0.2s;
    }
    .rating label:before { content: '\f005'; font-family: "Font Awesome 6 Free"; font-weight: 900; }
    .rating input:checked ~ label,
    .rating label:hover,
    .rating label:hover ~ label { color: #fbbf24; }

    /* Category Tag */
    .category-tag {
        background: rgba(16, 185, 129, 0.1);
        color: #34d399;
        padding: 4px 12px;
        border-radius: 9999px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        border: 1px solid rgba(16, 185, 129, 0.2);
    }

    /* Custom Select Styling */
    #country-list {
        background-color: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(12px);
    }

    /* OTP Input Styling */
    .otp-input {
        width: 3rem;
        height: 3.5rem;
        text-align: center;
        font-size: 1.5rem;
        font-weight: bold;
        border-radius: 0.5rem;
        background: rgba(15, 23, 42, 0.5);
        border: 1px solid rgba(75, 85, 99, 1);
        color: white;
        transition: all 0.2s;
    }
    .otp-input:focus {
        outline: none;
        border-color: #10b981;
        box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
        transform: translateY(-2px);
    }
    /* Preloader Styles
    #preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #020617;
        z-index: 9999;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
    }

    .loader-content {
        text-align: center;
    }

    .loader-logo {
        font-family: 'Space Grotesk', sans-serif;
        font-size: 3rem;
        font-weight: bold;
        color: white;
        animation: pulse-logo 2s infinite;
    }

    .loader-bar {
        width: 150px;
        height: 4px;
        background: rgba(255, 255, 255, 0.1);
        margin: 20px auto 0;
        border-radius: 2px;
        overflow: hidden;
        position: relative;
    }

    .loader-bar::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 50%;
        height: 100%;
        background: #10b981;
        animation: loading 1.5s infinite ease-in-out;
    }

    @keyframes pulse-logo {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.8; transform: scale(0.98); }
    }

    @keyframes loading {
        0% { left: -50%; }
        100% { left: 100%; }
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #0f172a;
    }
    ::-webkit-scrollbar-thumb {
        background: #10b981;
        border-radius: 4px;
    } 

    /* Glassmorphism Card */
    .glass-card {
        background: rgba(15, 23, 42, 0.6);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    /* Gradient Text */
    .text-gradient {
        background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* Hero Background Mesh */
    .hero-bg {
        background: 
            radial-gradient(circle at 15% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 25%),
            radial-gradient(circle at 85% 30%, rgba(52, 211, 153, 0.05) 0%, transparent 25%);
        position: relative;
    }

