﻿/*=========================
        INNER BANNER
=========================*/

.page-banner {
    position: relative;
    overflow: hidden;
}

    .page-banner img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
    text-align: center;
    width: 100%;
}

    .banner-content h1 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .banner-content p {
        font-size: 18px;
        margin: 0;
    }

    .banner-content span {
        margin: 0 10px;
    }

/*=========================
        INTRO
=========================*/

.service-tag {
    display: inline-block;
    background: #08cbfb;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

section h2 {
    font-size: 42px;
    color: #071c3d;
    font-weight: 700;
}

section p {
    color: #666;
    line-height: 30px;
}

/*=========================
      SERVICE CARD
=========================*/

.service-card {
    background: #fff;
    border-radius: 15px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .4s;
    height: 100%;
    border: 1px solid #f1f1f1;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,.15);
    }

    .service-card img {
        width: 75px;
        margin-bottom: 20px;
    }

    .service-card h4 {
        font-size: 24px;
        color: #071c3d;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .service-card p {
        color: #666;
        line-height: 28px;
        margin: 0;
    }

/*=========================
      WHY CHOOSE US
=========================*/

.why-us {
    background: #f7fbff;
}

    .why-us h2 {
        color: #071c3d;
        font-size: 42px;
        margin-bottom: 30px;
    }

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .why-list li {
        padding: 14px 0;
        font-size: 18px;
        color: #444;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 35px;
    }

        .why-list li:before {
            content: "\2714";
            color: #08cbfb;
            position: absolute;
            left: 0;
            font-size: 20px;
            font-weight: bold;
        }

/*=========================
        CTA
=========================*/

.cta-section {
    background: linear-gradient(90deg,#071c3d,#08cbfb);
    color: #fff;
}

    .cta-section h2 {
        color: #fff;
        font-size: 42px;
        margin-bottom: 15px;
    }

    .cta-section p {
        color: rgba(255,255,255,.9);
        margin-bottom: 35px;
    }

    .cta-section .btn {
        background: #fff;
        color: #071c3d;
        border-radius: 50px;
        padding: 14px 40px;
        font-size: 18px;
        font-weight: 600;
        transition: .3s;
    }

        .cta-section .btn:hover {
            background: #071c3d;
            color: #fff;
        }

/*=========================
      RESPONSIVE
=========================*/

@media(max-width:991px) {

    .banner-content h1 {
        font-size: 34px;
    }

    section h2 {
        font-size: 32px;
    }

    .service-card {
        margin-bottom: 25px;
    }

    .why-us img {
        margin-bottom: 40px;
    }
}

@media(max-width:767px) {

    .page-banner img {
        height: 250px;
    }

    .banner-content h1 {
        font-size: 28px;
    }

    .banner-content p {
        font-size: 15px;
    }

    section h2 {
        font-size: 28px;
    }

    .service-card {
        padding: 25px;
    }

    .cta-section h2 {
        font-size: 30px;
    }
}
