body {
    font-family: 'Inter', sans-serif;
}

.glass-card {
    background: rgba(17, 24, 39, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111827;
}

::-webkit-scrollbar-thumb {
    background: #374151;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4b5563;
}

.nav-link-active {
    color: #c026d3;
    /* text-fuchsia-600 */
    font-weight: 500;
}

.no-scrollbar::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
}

.no-scrollbar {
    -ms-overflow-style: none;
    /* IE & Edge */
    scrollbar-width: none;
    /* Firefox */
}

select {
    background-color: rgba(17, 24, 39, 0.8) !important;
    /* darker transparent */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: white !important;
}

select option {
    background-color: rgba(17, 24, 39, 0.95);
    /* solid dark dropdown */
    color: white;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-text {
        font-size: 1.5rem !important;
        line-height: 1.4 !important;
    }

    .hero-subtext {
        font-size: 1rem !important;
    }
}

/* Add animation for icons */
.icon-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Country selection animation */
.country-process {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.country-process.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.country-process .process-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease 0.1s;
}

.country-process.active .process-item {
    opacity: 1;
    transform: translateX(0);
}

.country-process .process-item:nth-child(2) {
    transition-delay: 0.2s;
}

.country-process .process-item:nth-child(3) {
    transition-delay: 0.3s;
}

.country-process .process-item:nth-child(4) {
    transition-delay: 0.4s;
}

.country-process .process-item:nth-child(5) {
    transition-delay: 0.5s;
}

.country-process .process-item:nth-child(6) {
    transition-delay: 0.6s;
}

.country-process .process-item:nth-child(7) {
    transition-delay: 0.7s;
}