﻿body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    scroll-behavior: smooth;
}
/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

    .navbar .btn {
        margin-left: 10px;
    }
/* Hero */
.hero {
    background: linear-gradient(135deg, #4e73df, #1cc88a);
    color: white;
    padding: 130px 20px 100px;
    text-align: center;
}

    .hero h1 {
        font-size: 3rem;
        font-weight: bold;
        animation: fadeInDown 1s ease-in-out;
    }

    .hero p {
        font-size: 1.3rem;
        max-width: 600px;
        margin: 15px auto;
        animation: fadeInUp 1.2s ease-in-out;
    }

.btn-cta {
    background-color: #fff;
    color: #4e73df;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s;
}

    .btn-cta:hover {
        background-color: #f1f1f1;
        transform: scale(1.05);
    }
/* Features */
.feature-icon {
    font-size: 2rem;
    color: #4e73df;
}
/* How It Works */
.how-it-works .step {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
}

    .how-it-works .step:hover {
        transform: scale(1.05);
    }
/* Pricing */
.pricing-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

    .pricing-card:hover {
        transform: translateY(-10px);
    }
/* Testimonials */
.testimonial {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* Counters */
.counters {
    padding: 60px 0;
    background: #fff;
    text-align: center;
}

.counter-box h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4e73df;
}

.counter-box p {
    font-size: 1.1rem;
    color: #555;
}
/* Footer */
footer {
    background-color: #343a40;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

    footer a {
        color: #ff7f50;
        text-decoration: none;
    }
/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
