body,
html {
    margin: 0;
    padding: 0;
}

.text-green {
    color: #0dcaf0;
}

.bg-green {
    background: #005eff;
}

/*=====================
      Navbar Section
    ==========================*/
.navbar-custom {
    transition: background-color 0.3s ease;
}

.navbar-transparent {
    background-color: transparent;
}

.navbar-scrolled {
    background-color: black !important;
}

.navbar-toggler-icon.close-icon {
    background-image: none;
}

.navbar-toggler-icon.close-icon::before {
    content: '✕';
    font-size: 24px;
    color: white;
}

/* Hide support button on mobile */
@media (max-width: 768px) {
    .support-button {
        display: none !important;
    }

    .navbar-custom {
        background-color: black !important;
    }
}

.banner {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 90vh;
    display: flex;
    align-items: center;
    padding: 100px 20px 0;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.banner h1 {
    font-size: 3rem;
    font-weight: bold;
}

.banner p {
    font-size: 1.2rem;
    max-width: 600px;
}

.top-bar {
    padding: 0.5rem 0;
}

.menu-bar {
    border-top: 1px solid #fff;
    padding-top: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    margin: -40px 0 0 40px;
    position: relative;
    z-index: 2;
    border: 6px solid #fff;
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 45px;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: green;
    margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: black;
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 15px 0 15px;
    padding: 20px 20px 60px 20px;
    background: #f9f9f9;
    position: relative;
    border-radius: 6px;
    position: relative;
    z-index: 1;
}

.testimonials .swiper-wrapper {
    height: auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 1;
    border: 1px solid #2487ce;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #2487ce;
}

/* Footer  */
.footer-dark {
    background: #4a4a4a;
    color: #fff;
}

.footer-dark a {
    color: #fff;
    text-decoration: none !important;
}

.footer-dark a:hover {
    text-decoration: none;
}

.privacy-icon {
    font-size: 2rem;
    color: #fff;
}

/*====================
             Fixed Call Button 
          ===========================*/

    .callStringNew {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        position: fixed;
        background-color:rgb(10 49 124) !important;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 10;
    }

    .callStringNew.footerNumShow {
        display: flex;
    }

    .callStringNew .rightCall {
        display: flex;
        width: 100%;
        text-align: center;
        justify-content: center;
        padding-right: 7px;
        padding-left: 47px;
    }

    .callStringNew .fulclk {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
    }

    .callStringNew a {
        padding-top: 2px;
        color: #fff;
        padding-left: 10px;
        font-size: 12px;
        font-weight: 600;
        text-align: center;
        display: block;
        padding-bottom: 1px;
        line-height: 10px;
        position: relative;
        top: -1px;
    }

    .ringing-icon {
        animation: ring 1s infinite;
        transform-origin: center;
        display: inline-block;
    }

    @keyframes ring {
        0% {
            transform: rotate(0deg);
        }

        10% {
            transform: rotate(15deg);
        }

        20% {
            transform: rotate(-15deg);
        }

        30% {
            transform: rotate(10deg);
        }

        40% {
            transform: rotate(-10deg);
        }

        50% {
            transform: rotate(5deg);
        }

        60% {
            transform: rotate(-5deg);
        }

        70% {
            transform: rotate(2deg);
        }

        80% {
            transform: rotate(-2deg);
        }

        90% {
            transform: rotate(1deg);
        }

        100% {
            transform: rotate(0deg);
        }
    }





