﻿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}

.ticker {
    background: #0B3A68;
    overflow: hidden;
    height: 48px;
    display: flex;
    align-items: center;
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    width: max-content;
    animation: ticker 45s linear infinite;
    color: White !important;
}

    .ticker-content:hover {
        animation-play-state: paused;
    }

    .ticker-content span {
        display: flex;
        align-items: center;
        white-space: nowrap;
        font-size: 22px;
        font-weight: 600;
        color: #fff;
        padding-right: 140px;
    }

    .ticker-content a {
        color: #FDB913;
        text-decoration: underline;
        font-weight: 700;
        margin: 0 6px;
    }

@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.ticker-icon {
    width: 3rem;
    height: auto;
    margin-right: 12px;
    flex-shrink: 0;
}

@media screen and (max-width: 1292.98px) {
    .navbar-nav .nav-link {margin-right: 0.5rem !important; font-size: 15px;}
}

@media screen and (max-width: 1189.98px) {
    .navbar-nav .nav-link {margin-right: 0.5rem !important; font-size: 15px;}
}

@media screen and (max-width: 992.98px) 
{
    .navbar-nav .nav-link
    {
    font-size: 15px;
    }
}