﻿body {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 400;
}

.navbar-nav .nav-link {
    font-weight: 600;
    margin-right: 1rem;
    font-size: 16px;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.pay-now-btn {
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    background-color: #30AED5;
}

.hero-banner {
    background: url('../Images/banner.webp') no-repeat center center;
    background-size: cover;
    height: 600px;
    position: relative;
}

.discount-banner {
    background: url('../Images/bgDicount.webp') no-repeat center center;
    background-size: cover;
    min-height: 150px;
    padding: 40px 0;
}

.fw-bold {
    font-weight: 600 !important;
}

.features-section h2 {
    color: #25aae1;
}

.title-underline {
    width: 255px;
    height: 3px;
    background-color: #f9b233;
}

.feature-box {
    background-color: #F9F9F9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

.about-section {
    background: url('../Images/bgAbout.webp') no-repeat center center;
    background-size: cover;
    position: relative;
    min-height: 250px;
}

    .about-section .overlay {
        min-height: 250px;
        padding: 60px 0;
    }

.choose-card {
    background-color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .choose-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    }

.txtFeatures {
    font-size: 45px;
}

.footer {
    background-color: #27aae1;
    color: black;
}

    .footer a {
        color: black;
        text-decoration: none;
        font-weight: 500;
    }

        .footer a:hover {
            text-decoration: underline;
        }

.footer-icons a {
    display: inline-block;
    margin-left: 10px;
}

.footer-icons img {
    width: 25px;
    height: 25px;
}

.text-info, .text-white{color: black !important}