/* HERO BANNER */

.hero-banner {
    background: linear-gradient(135deg,#0047c7,#00318a);
    color: #fff;
    padding: 50px 0;
    min-height: 420px;
    display: flex;
    align-items: center;
}

    .hero-banner h1 {
        font-size: 58px;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-banner p {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 25px;
    }
.hero-slider {
    margin-top: 0;
}

.slider-img {
    height: 600px;
    object-fit: cover;
}

.carousel-caption {
    bottom: 25%;
}

    .carousel-caption h1 {
        font-size: 65px;
        font-weight: 700;
    }

    .carousel-caption p {
        font-size: 24px;
    }
.banner-img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

/* SERVICES */

.services-section {
    padding: 70px 0;
}

    .services-section h2 {
        text-align: center;
        font-size: 48px;
        font-weight: 700;
    }

.title-line {
    width: 80px;
    height: 4px;
    background: #0d6efd;
    margin: 15px auto 0;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20Px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    transition: .3s;
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-10px);
    }

.service-icon {
    font-size: 55px;
    margin-bottom: 20px;
}

.text-purple {
    color: #7b3ff2;
}


/* STATS */

.stats-section {
    background: #0b2c63;
    color: white;
    padding: 35px 0;
    margin-top: 50px;
}

    .stats-section h2 {
        font-size: 42px;
        font-weight: 700;
    }

    .stats-section p {
        margin: 0;
    }

/* MOBILE */

@media(max-width:991px) {
    .hero-banner {
        text-align: center;
        padding: 60px 0;
    }

        .hero-banner h1 {
            font-size: 40px;
        }

        .hero-banner p {
            font-size: 18px;
        }

    .banner-img {
        margin-top: 30px;
    }
}
.stats-bar {
    background: #0b2c63;
    color: #fff;
    margin: 50px auto;
    border-radius: 10px;
    padding: 30px;
}

    .stats-bar h2 {
        font-size: 42px;
        font-weight: 700;
    }
/*body {
    background: red !important;
}*/
/* ABOUT SECTION */

.about-section {
    padding: 80px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0b2c63;
}

.why-list {
    list-style: none;
    padding: 0;
}

    .why-list li {
        padding: 10px 0;
        font-size: 18px;
    }

    .why-list i {
        color: #0d6efd;
        margin-right: 10px;
    }

.about-section .form-control {
    border-radius: 8px;
    padding: 12px;
}

.about-section .btn {
    padding: 12px;
}
/* NEWSLETTER */

.newsletter-section {
    background: #0d6efd;
    color: #fff;
    padding: 50px 0;
}

    .newsletter-section h3 {
        font-weight: 700;
    }

    .newsletter-section .form-control {
        height: 50px;
    }

/* FOOTER */

.footer-main {
    background: #081f4d;
    color: #fff;
    padding: 70px 0 40px;
}

.footer-logo {
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-main h5 {
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        padding: 6px 0;
    }

    .footer-links a {
        color: #fff;
        text-decoration: none;
    }

        .footer-links a:hover {
            color: #0d6efd;
        }

/* SOCIAL */

.social-icons a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-right: 8px;
    color: #fff;
    text-decoration: none;
}

    .social-icons a:hover {
        background: #0d6efd;
        border-color: #0d6efd;
    }

/* COPYRIGHT */

.copyright-section {
    background: #051534;
    color: #fff;
    padding: 15px 0;
}

/* WHATSAPP */

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0,0,0,.3);
}

    .whatsapp-float:hover {
        color: #fff;
        transform: scale(1.1);
    }
/* GALLERY */

.gallery-section {
    padding: 80px 0;
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    transition: .3s;
}

    .gallery-img:hover {
        transform: scale(1.05);
    }

/* CLIENT */

.client-section {
    background: #f8f9fa;
    padding: 70px 0;
}

.client-logo {
    width: 120px;
    filter: grayscale(100%);
}

    .client-logo:hover {
        filter: none;
    }

/* TESTIMONIAL */

.testimonial-section {
    padding: 80px 0;
}

.testimonial-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}
.navbar-scroll {
    background: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0,0,0,.1);
}