/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* General body styles */
body {
    background-color: #f9f9f9;
    line-height: 1.6;
}

/* Container to limit width and center content */
.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ---------------------- */
/* Header Styles */
/* ---------------------- */
header {
    position: fixed;      /* “stick” it to the viewport */
    top: 0;               /* pin to the very top */
    left: 0;
    width: 100%;          /* span the whole width */
    z-index: 1000;        /* stay above everything else */
    background: #0053CF;  /* keep the blue background */
    color: white;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    padding-left: 20px;
}

.logo img {
    width: 40px;
    height: 40px;
}

/* Navigation links */
nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 20px;
}

nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #27a0e6;
}

/* ---------------------- */
/* Hero Section */
/* ---------------------- */
.hero {
    background: #0053CF;
    color: white;
    padding: 170px 0 160px;
    text-align: center;
    overflow: visible;
}

.hero-content {
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
    gap: 20px;
}

/* Text Content Animation */
.hero-text {
    flex: 1;
    max-width: 500px;
    text-align: left;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: 0.3s;
}

/* Image Container Animation */
.hero-image-container {
    flex: 1;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: 0.6s;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.8s;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 1s;
}

/* Button Group Animation */
.button-group {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 1.2s;
}

.hero-image {
    max-width: 100%;
    border-radius: 10px;
}

.hero-image-container img {
    width: 400px;
}

/* Animation Keyframes */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Animation Adjustments */
@media (max-width: 768px) {
    header {
        position: static;   /* remove fixed positioning */
        top: auto;
        left: auto;
        width: 100%;
        z-index: auto;      /* optional: reset stacking context */
    }
    .hero-text {
        animation-name: slideInUp;
        transform: translateY(30px);
    }
    
    .hero-image-container {
        animation-name: slideInUp;
        transform: translateY(30px);
    }
    
    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .hero h1 {
        animation-delay: 0.6s;
    }
    
    .hero p {
        animation-delay: 0.8s;
    }
    
    .button-group {
        animation-delay: 1s;
    }
}

/* ---------------------- */
/* Buttons (Existing Styles Preserved) */
/* ---------------------- */
.button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: 0.3s;
    cursor: pointer;
}

.button-primary {
    background: #00C8FF;
    color: white;
}

.button-secondary {
    background: white;
    color: #00C8FF;
    border: 1px solid #00C8FF;
}

.button:hover {
    opacity: 0.8;
}

/* ---------------------- */
/* Features Section */
/* ---------------------- */
.features-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0;
}

/* Left Side: Image with Circular Background */
.features-image {
    position: relative;
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-background {
    position: absolute;
    width: 350px;
    height: 300px;
    background-color: #07cdff; /* Orange circle background */
    border-radius: 50%;
    z-index: -1;
}

.features-image img {
    max-width: 100%;
    height: auto;
    position: relative;
}

/* Right Side: Features Content */
.features-content {
    width: 55%;
}

.features-title {
    font-size: 26px;
    font-weight: bold;
    color: #07cdff;
    margin-bottom: 25px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Individual Feature Item */
.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    height: 50px;
    background-color: #d2eef5; 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon img {
    width: 50px;
    height: 50px;
    padding: 5px;
}

/* Feature Text */
.feature-item h3 {
    font-size: 18px;
    color: #0053CF;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

.feature-item a {
    font-size: 12px;
    color: #07cdff;
    text-decoration: none;
    font-weight: bold;
}

/* ---------------------- */
/* 🔹 Responsive Design for Mobile & Tablets */
/* ---------------------- */
@media (max-width: 1024px) {
    .features-container {
        flex-direction: column;
    }

    .features-image {
        width: 70%;
        margin-bottom: 40px;
    }

    .circle-background {
        width: 250px;
        height: 250px;
    }

    .features-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .features-container {
        flex-direction: column;
        padding: 50px 20px;
        text-align: left; /* Ensure left alignment */
    }

    .features-image {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }

    .circle-background {
        width: 200px;
        height: 200px;
    }

    .features-content {
        width: 100%;
    }

    .features-title {
        font-size: 22px;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr; /* Single column layout */
        gap: 20px; /* Reduce spacing */
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 12px; /* Reduce spacing between icon & text */
        padding: 10px 0; /* Add some padding for spacing */
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background-color: #d2eef5;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
    }

    .feature-icon img {
        width: 45px;
        height: 45px;
    }

    .feature-text {
        flex: 1;
    }

    .feature-item h3 {
        font-size: 16px;
        margin-bottom: 3px;
    }

    .feature-item p {
        font-size: 13px;
        line-height: 1.4;
    }

    .feature-item a {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .download .button-group {
        flex-direction: column;
        width: 100%;
        max-width: 280px;   /* keeps them from stretching too wide */
    }
    .download .button {
        width: 100%;
    }
    .features-container {
        padding: 40px 10px;
    }

    .features-grid {
        gap: 15px; /* Reduce spacing even more */
    }

    .feature-item {
        gap: 10px;
        padding: 8px 0;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon img {
        width: 40px;
        height: 40px;
    }

    .feature-item h3 {
        font-size: 15px;
    }

    .feature-item p {
        font-size: 12px;
    }
}

/* ---------------------- */
/* Download Section */
/* ---------------------- */
.download {
    background: #0053CF;
    color: white;
    text-align: center;
    padding: 60px 0;
}

.download .container {
    max-width: 600px; /* Limit content width */
}

.download .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.download h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.download p {
    font-size: 18px;
    margin-bottom: 30px;
}

.button-group {
    display: flex;
    gap: 25px;
}

/* Mobile Responsiveness for Download Section */
@media (max-width: 768px) {
    .download {
        padding: 40px 20px;
    }
    
    .download h2 {
        font-size: 24px;
    }
    
    .download p {
        font-size: 16px;
    }
    
    .button-group {
        flex-direction: row;
        gap: 15px;
    }
    
    .button {
        width: 100%; /* Full-width buttons */
        padding: 20px 20px; /* Larger touch targets */
    }
}

@media (max-width: 480px) {
    .download h2 {
        font-size: 22px;
    }
    
    .download p {
        font-size: 14px;
    }
}

/* ------------------------- */
/* Service Providers Section */
/* ------------------------- */
.service-providers {
    text-align: center;
    padding: 10px 0;
    position: relative;
    overflow: hidden;
    width: 80%;
    margin: 10px auto;
}

.service-providers h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease forwards; /* Fade in animation */
    opacity: 0;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-providers .highlight {
    color: #0b5882;
    font-size: 2.7rem;
    font-weight: bold;
}

.service-providers p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #666;
    animation: fadeInDown 1s ease forwards; /* Fade in animation */
    opacity: 0;
    animation-delay: 0.2s;
}

.service-providers-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.service-providers-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: scrollLeft 30s linear infinite; /* Continuous scrolling animation */
    width: max-content;
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%); /* Scrolls the logos */
    }
}

.provider-logo {
    flex-shrink: 0;
    margin: 0 25px;
    animation: fadeIn 1s ease forwards; /* Fade in animation for logos */
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px); /* Start slightly lower */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* End at original position */
    }
}

.provider-logo img {
    max-width: 120px;
    max-height: 80px;
    object-fit: contain;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.provider-logo img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-providers {
        padding: 30px 0; /* Reduced padding for smaller screens */
        width: 90%;
        margin: 5px auto;
    }

    .service-providers .highlight {
        color: #0b5882;
        font-size: 1.2rem;
        font-weight: bold;
    }    

    .service-providers h2 {
        font-size: 1.2rem; /* Responsive font size */
    }

    .service-providers p {
        font-size: 1rem; /* Responsive font size */
    }

    .provider-logo {
        margin: 0 10px; /* Reduced margin for logos */
    }

    .provider-logo img {
        max-width: 80px; /* Smaller logo size for mobile */
        max-height: 60px; /* Smaller logo size for mobile */
    }
}

/* Scroll effects */
html {
    scroll-behavior: smooth; /* Smooth scrolling for all links */
}

body {
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Add fade-in animations to logos */
.service-providers-grid > .provider-logo {
    animation: logoFadeIn 0.5s ease forwards;
    opacity: 0;
    animation-delay: calc(0.2s * var(--i)); /* Staggered delay for each logo */
}

@keyframes logoFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px); /* Start slightly lower */
    }
    to {
        opacity: 1;
        transform: translateY(0); /* End at original position */
    }
}

/* ---------------------- */
/* Freedom Section */
/* --------------------- */
/* Freedom Section Styling */
[data-scroll] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-scroll].animate {
    opacity: 1;
    transform: translateY(0);
}

/* Freedom Section Specific Animations */
.freedom-section[data-scroll] {
    transition-delay: 0.1s;
}

.freedom-heading[data-scroll] {
    transition-delay: 0.2s;
}

.freedom-item[data-scroll] {
    transition-delay: calc(0.3s + (0.1s * var(--i)));
}

.device-mockup[data-scroll] {
    transition-delay: 0.4s;
}

.freedom-cta[data-scroll] {
    transition-delay: 0.5s;
}

/* Existing freedom section styles */
.freedom-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.freedom-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00C8FF;
    margin-bottom: 40px;
}

.freedom-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 60px;
    text-align: center;
}

.freedom-item {
    max-width: 300px;
}

.freedom-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background-color: #d9eff5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.freedom-icon img {
    width: 30px;
    height: 30px;
}

h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #00C8FF;
}

p {
    font-size: 1rem;
}

/* Device Mockup and CTA */
.freedom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.device-mockup {
    flex: 1;
    text-align: center;
}

.laptop-image {
    width: 100%;
    max-width: 600px;
}

.phone-image {
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 150px;
}

.feature-phone-image {
    position: absolute;
    bottom: 0;
    left: 30%;
    width: 100px;
}

.freedom-cta {
    flex: 1;
    text-align: left;
}

.freedom-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #00C8FF;
    margin-bottom: 20px;
}

.freedom-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.app-store-buttons {
    display: flex;
    gap: 30px;
}

.app-store-buttons img {
    width: 190px;
    height: auto;
}

@media (max-width: 768px) {
    .freedom-section {
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    
    .freedom-content {
        flex-direction: column;
        text-align: center;
    }

    .freedom-heading {
        font-size: 2.3rem;
    }
    .freedom-features {
        display: flex;
        display: block;
        justify-content: center;
        gap: 50px;
        margin-bottom: 60px;
        margin: auto;
        max-width: 300px;
    }
    
    .freedom-item {
        max-width: 600px;
        text-align: center;
        padding: 15px;
    }
    
    .freedom-cta {
        width: 90%;
        text-align: center;
    }

    .app-store-buttons {
        justify-content: center;
    }
    .app-store-buttons img {
        width: 140px;
    }
}

/* How to go about it */
/* ------------------ */
/* ===== HOW IT WORKS – Flat Icons ===== */
.how-it-works {
    background: #fff;
}

.how-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.how-image {
    flex: 1;
    text-align: center;
}

.how-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.how-content {
    flex: 1;
    text-align: left;
}

.how-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00C8FF;
    margin-bottom: 30px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.step-icon-flat {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
    border: none;
    background: transparent;   /* no background color */
    border-radius: 0;          /* square, not rounded */
}

.step-info h3 {
    font-size: 1.25rem;
    color: #0053CF;
    margin: 0 0 5px;
}

.step-info p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.45;
}

/* How It Works Download Buttons */
.how-download-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-top: 30px;
}

.how-download-buttons[data-scroll] {
    transition-delay: 0.6s; /* Appears after the steps */
}

@media (max-width: 992px) {
    .how-container {
        flex-direction: column;
        gap: 40px;
    }
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .how-download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .how-download-buttons .button {
        width: 100%;
        max-width: 280px; /* Match the download section's button width */
        text-align: center;
    }
}

@media (max-width: 480px) {
    .how-download-buttons .button {
        padding: 10px 15px; /* Slightly smaller padding for smaller screens */
        font-size: 14px;
    }
}

/* ---------------------- */
/* Countries */
/* --------------------- */
.countries {
    padding: 4rem 1rem;
    background: #f8f9fa;
    text-align: center;
}

.countries h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2d3436;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.country-card {
    background: #fff;
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.flag-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circular-flag {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.country-card:hover {
    transform: translateY(-5px);
}

.country-card:hover .circular-flag {
    transform: scale(1.1);
}

.country-card p {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    margin: 0;
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .countries {
        padding: 3rem 1.5rem;
    }
    
    .countries h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
    
    .countries-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .country-card {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .flag-container {
        width: 90px;
        height: 90px;
        margin-bottom: 1rem;
    }
    
    .country-card p {
        font-size: 1rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .service-providers {
        padding: 30px 0; /* Reduced padding for smaller screens */
        width: 90%;
        margin: 5px auto;
    }

    .countries {
        padding: 4rem 2rem;
    }
    
    .countries h2 {
        font-size: 2.5rem;
    }
    
    .countries-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    
    .flag-container {
        width: 100px;
        height: 100px;
    }
    
    .country-card p {
        font-size: 1.1rem;
    }
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
    .countries-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .flag-container {
        width: 70px;
        height: 70px;
    }
    
    .country-card p {
        font-size: 0.85rem;
    }

    .countries h2 {
        font-size: 1.5rem;
    }
    
    .country-card {
        padding: 0.6rem;
        border-radius: 10px;
    }
}

/* Animation adjustments for mobile */
@media (hover: none) {
    .country-card:hover {
        transform: none;
    }
    
    .country-card:hover .circular-flag {
        transform: none;
    }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Staggered animation delays */
.country-card:nth-child(1) { animation-delay: 0.1s; }
.country-card:nth-child(2) { animation-delay: 0.2s; }
.country-card:nth-child(3) { animation-delay: 0.3s; }
.country-card:nth-child(4) { animation-delay: 0.4s; }
.country-card:nth-child(5) { animation-delay: 0.5s; }
.country-card:nth-child(6) { animation-delay: 0.6s; }
.country-card:nth-child(7) { animation-delay: 0.7s; }
.country-card:nth-child(8) { animation-delay: 0.8s; }
.country-card:nth-child(9) { animation-delay: 0.9s; }
.country-card:nth-child(10) { animation-delay: 1.0s; }
.country-card:nth-child(11) { animation-delay: 1.1s; }
.country-card:nth-child(12) { animation-delay: 1.2s; }
.country-card:nth-child(13) { animation-delay: 1.3s; }

/* ---------------------- */
/* Footer */
/* ---------------------- */
footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer .footer-text {
    font-size: 14px;
}

footer .footer-links a {
    margin-left: 20px;
    color: #333;
    font-size: 14px;
    transition: color 0.3s ease;
    text-decoration: none;
}

footer .footer-links a:hover {
    color: #0053CF;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    header {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px 0;
    }

    .logo {
        font-size: 22px;
        font-weight: bold;
        text-align: center;
        padding: 0;
    }
    
    nav {
        width: 100%;
        text-align: center;
        margin-top: 5px;
        gap: 15px;
    }

    nav a {
        display: inline-block;
        margin: 5px 15px;
    }

    .hero {
        padding: 10px 20px 100px;
        text-align: center;
    }
    .hero-content {
        flex-direction: column;
        align-items: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-image-container img {
        width: 100%;
        height: auto;
        max-width: 300px;
    }

    .features-content {
        flex-direction: column;
    }

    .feature-item {
        width: 100%;
    }

    footer .footer-content {
        flex-direction: column;
        text-align: center;
    }

    footer .footer-links {
        margin-top: 10px;
    }
}

/* Add this to your CSS */
/* Global Animation Styles */
[data-scroll] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-scroll].animate {
    opacity: 1;
    transform: translateY(0);
}

/* Features Section Animations */
.features-container[data-scroll] {
    transition-delay: 0.2s;
}

.features-title[data-scroll] {
    transition-delay: 0.3s;
}

.feature-item[data-scroll] {
    transition-delay: calc(0.3s + (0.1s * var(--i)));
}

/* Download Section Animation */
.download[data-scroll] .container > * {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s ease;
}

.download[data-scroll].animate .container > * {
    opacity: 1;
    transform: translateY(0);
}

.download h2[data-scroll] { transition-delay: 0.2s; }
.download p[data-scroll] { transition-delay: 0.3s; }
.download .button-group[data-scroll] { transition-delay: 0.4s; }

.download .button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Service Providers Animation */
.service-providers h2[data-scroll],
.service-providers p[data-scroll] {
    transition-delay: 0.2s;
}

/* Countries Animation */
.country-card[data-scroll] {
    transition-delay: calc(0.2s * var(--i));
}