@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: #333;
}

.navbar {
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
    background-color: white;
}

.navbar-brand img {
    height: 50px;
}

.nav-link {
    color: black !important;
    font-weight: 500;
}

.nav-link:hover {
    color: #2b349d !important;
}

.hero-section {
    background: linear-gradient(180deg, #0f172a 0%, #1e3a8a 50%, #06b6d4 100%);
    color: white;
    padding-top: 80px;
    padding-bottom: 1rem;
}

.row {
    margin: 0 !important;
}

.banner-img {
    width: 80%;
   
}

.hero-text h1 {
    font-size: 2.8rem;
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    font-weight: 600;
    color: #2b349d;
}

.section-title1 {
    text-align: start;
    margin-bottom: 3rem;
    position: relative;
    font-weight: 600;
    color: #2b349d;
}

.section-title1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 8%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: black;
}

@media (max-width: 576px) {
    .section-title1::after {
        left: 14%;
        /* adjusted position on mobile */
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: black;
}

.feature-card,
.testimonial-card,
.referral-details {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon i {
    font-size: 3rem;
    color: #2b349d;
}

.how-it-works .step-number {
    width: 60px;
    height: 60px;
    background-color: #2b349d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.download-section {
    background:linear-gradient(180deg, #0f172a 0%, #1e3a8a 50%, #06b6d4 100%);
    color: white;
    position: relative;
    padding: 50px 0px;
}

.download-image {
    position: absolute;
    width: 29%;
    bottom: -208px;
}

.download-section h2,
.download-section p {
    color: black;
}

.footer {
    background-color: #1a1323;
    color: white;
}

.social-links a {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: #2b349d;
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInBottom {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInBottom 0.8s ease-out forwards;
    opacity: 0;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2b349d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
}

.animate-fade-in-up {
    animation: fadeInBottom 0.8s ease-out forwards;
    opacity: 0;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.footer-nav {
    color: #bebebe;
}

a:hover {
    color: #2b349d;
}

.content-section {
    margin-top: 112px;
}

.btn-cont {
    display: inline-block;
    background-color: #2b349d;
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
}