* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.text-invisible {
    visibility: hidden;
}

/* banner */
.carousel-item {
    transition: transform 1s ease-in-out !important;
}

.carousel-caption {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);

}

.carousel-caption h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    display: inline-block;
    padding: 0.5rem 1rem;
}

.carousel-caption h5 {
    font-size: 1.3rem;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    display: inline-block;
    padding: 0.5rem 1rem;
}


/* .service-card */
.service-card {
    background-color: #0d83c7;
    border-radius: 10px;
    padding: 40px 10px;
    height: 100%;
    color: #fff;
}



/* parallax section */
.parallax-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/banner.jpg');
    height: 45vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}


.swiper {
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: white;
    text-align: center;
    /* background: rgba(0, 0, 0, 0.4); */
    /* overlay to improve readability */
}

.swiper-slide h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.swiper-slide p {
    font-size: 1rem;
}



/* pricing-card */
.pricing-card {
    border-radius: 20px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: scale(1.03);
}

.pricing-header {
    text-align: center;
    padding: 50px 20px 30px;
    position: relative;
}

.circle-badge {
    width: 120px;
    height: 120px;
    background-color: #ff6b5b;
    border-radius: 50%;
    color: white;
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -0px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 8px solid white;
}

.pricing-content {
    padding: 30px 20px;
    text-align: center;
}

.pricing-content p {
    margin: 10px 0;
    border-top: 1px solid #ddd;
    padding: 10px 0;
    font-size: 14px;
}

.btn-start {
    margin-top: 20px;
    border-radius: 0;
}

/* Plan colors */
.silver .circle-badge {
    background-color: #ff6b5b;
}

.gold .circle-badge {
    background-color: #ffb347;
}

.platinum .circle-badge {
    background-color: #5c5ca6;
}

.silver .pricing-content {
    background-color: #ff6b5b20;
}

.gold .pricing-content {
    background-color: #ffb34720;
}

.platinum .pricing-content {
    background-color: #5c5ca620;
}


/* latest-news-section */
.latest-news-section {
    background-color: #031E33;
    color: #fff;
}


@media (max-width: 768px) {
    .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: start;
        height: 100%;
        color: white;
        text-align: center;
        /* background: rgba(0, 0, 0, 0.4); */
        /* overlay to improve readability */
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    /* parallax section */
    .parallax-section {
        background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/banner.jpg');
        height: 55vh;
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        overflow: hidden;
    }
}



/* contact us */
.contact-information {
    background: #0d83c7;
}

.contact-information-inner {
    /* width: 85%; */
    margin: auto;
}

/* label {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    color: #8D8D8D;
} */

.contact-info-title {
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 34px;
    color: #ffffff;
}

.contact-info-text {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #f3f3f3;
}

.contact-text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
}


/* notice */
.scroll-text {
    white-space: nowrap;
    animation: scroll-left 15s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* daily news */
.daily-news {
    background-color: #0d83c7;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.daily-news:hover {
    background-color: #0a5f91;
    color: #fff;
}


/* popup-modal */
.modal-no-bg {
    background: transparent !important;
    pointer-events: none;
    /* Allow modal content only to be clickable */
}

.modal-no-bg .modal-content {
    background: transparent !important;
    pointer-events: auto;
}