/* .banner-box {
    position: relative !important;
    height: 320px !important;
}
.banner-box .banner-img {
    position: absolute;
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
}
.banner-box h1 {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    margin: 0px !important;
    transform: translate(-50%, -50%) !important;
}
.star-box .star {
    color: orange;
    font-size: 25px;
} */




/* ===========================
   GLOBAL STYLES
=========================== */

:root{
    --primary: #ff0055;
    --dark: #131e29;
    --black: #000;
    --white: #fff;
    --shadow: 0 15px 40px rgba(0,0,0,.12);
    --radius: 18px;
}

/* body{
    font-family: 'Inter', sans-serif;
    background: #f7f8fa;
    color: var(--dark);
    line-height: 1.8;
    overflow-x: hidden;
} */

a{
    text-decoration: none;
    transition: all .3s ease;
}

img{
    max-width: 100%;
    display: block;
}

section{
    position: relative;
}

li{
    list-style: none !important;
}

/* ===========================
   HERO BANNER
=========================== */

#banner{
    position: relative;
    overflow: hidden;
}

.banner-box{
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-box::before{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgb(19 30 41 / 9%), rgb(19 30 41 / 17%));
    /* background: linear-gradient(
        rgba(19,30,41,.80),
        rgba(19,30,41,.80)
    ); */
    z-index: 1;
}

.banner-box .buttons {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    margin-top: 30px !important;
}

.banner-box .banner-img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .banner-box h1{
    position: relative;
    z-index: 2;
    color: var(--white);
    font-size: 3.3rem;
    font-weight: 800;
    max-width: 900px;
    line-height: 1.2;
    padding: 0 20px;
    text-shadow: 0 5px 20px rgba(0,0,0,.35);
} */

.banner-box h1{
    position: static !important;
    color: #fff !important;
    z-index: 999 !important;
    transform: translate(0%, 0%) !important;
    margin: 0px !important;
    text-align: center !important;
}

.banner-box p.banner-text {
    color: #fff;
    margin-block: 20px !important;
    text-align: center;
}

.banner-content {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    width: 68%;
    text-align: center !important;
}

/* ===========================
   CTA SECTION
=========================== */

#cta-box{
    margin-top: -60px;
    z-index: 20;
    position: relative;
}

#cta-box .container{
    background: var(--white);
    border-radius: 24px;
    padding: 35px;
    box-shadow: var(--shadow);
    text-align: center;
}

#cta-box .button{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.chat-button{
    background: var(--primary);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.chat-button:hover{
    background: var(--dark);
    color: var(--white);
    transform: translateY(-3px);
}

.chat-button img{
    width: 20px;
}

#cta-box .container > a{
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 10px 25px rgba(255,0,85,.35);
}

#cta-box .container > a:hover{
    transform: translateY(-3px);
    background: var(--dark);
}

/* ===========================
   COMMON SECTION
=========================== */

.content,
#what_people_are_saying{
    padding: 90px 0;
}

.content:nth-child(even){
    background: var(--white);
}

.content:nth-child(odd){
    background: #f7f8fa;
}

.content h3,
#what_people_are_saying h3,
.faq_section h3{
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px !important;
    position: relative;
}
#what_people_are_saying h3{
    margin-bottom: 0px !important;
}

.content h3::after,
#what_people_are_saying h3::after,
.faq_section > .container > .row:first-child h3::after{
    content: '';
    width: 70px;
    height: 4px;
    background: var(--primary);
    border-radius: 10px;
    display: block;
    margin-top: 5px;
}

.content p,
#what_people_are_saying p{
    color: #555;
    font-size: 16px;
}

.content ul{
    padding-left: 0;
    margin-top: 25px;
}

.content ul li{
    list-style: none !important;
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    color: #444;
}

.content ul li::before{
    content: '✓';
    position: absolute;
    left: 0;
    top: 5px;
    width: 22px;
    height: 22px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===========================
   CONTENT IMAGES
=========================== */

.content .banner-img{
    border-radius: 20px;
    box-shadow: var(--shadow);
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

/* ===========================
   ATTORNEY TESTIMONIAL
=========================== */

#what_people_are_saying{
    background: var(--dark);
}

#what_people_are_saying h3{
    color: var(--white);
}

#what_people_are_saying p{
    color: rgba(255,255,255,.85);
}

.star{
    color: #ffd700;
    font-size: 20px;
}

#what_people_are_saying .col-md-6:last-child p{
    background: rgba(255,255,255,.05);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--primary);
}

/* ===========================
   FAQ SECTION
=========================== */

.faq_section{
    padding: 90px 0;
    background: #f4f6f9;
}

.faq_section > .container > .row:first-child{
    text-align: center;
    margin-bottom: 30px !important;
}

.faq_section > .container > .row:first-child h3::after{
    /* margin: 15px auto 0; */
}

.faq_box{
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: .3s;
}

.faq_box:hover{
    transform: translateY(-5px);
}

.faq-header{
    padding: 25px 30px;
    background: var(--dark);
    cursor: pointer;
    position: relative;
}

.faq-header h3{
    color: var(--white);
    margin: 0 !important;
    font-size: 20px;
}

.faq-header h3::after{
    display: none;
}

.faq_body{
    padding: 25px 30px;
    display: none;
    padding: 25px;
    background: #fff;
    border-top: 1px solid #eee;
}
.faq_box.active .faq_body {
    display: block;
    animation: fadeIn .3s ease;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq_body p:last-child{
    margin-bottom: 0;
}

.faq-header::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 30px;
    font-weight: 500;
    transition: all .3s ease;
}

.faq_box.active .faq-header::after {
    content: '−';
}

/* ===========================
   LINKS
=========================== */

.content a,
.faq_body a,
p.banner-text a,
#what_people_are_saying a{
    color: var(--primary);
    font-weight: 600;
}

.content a:hover,
.faq_body a:hover,
#what_people_are_saying a:hover{
    color: var(--dark);
}

/* ===========================
   FINAL CTA SECTION
=========================== */

main > #cta-box:last-child .container{
    background: linear-gradient(
        135deg,
        var(--dark),
        #1e3042
    );
}

main > #cta-box:last-child .container > a{
    background: var(--primary);
}

main > #cta-box:last-child .chat-button{
    /* background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.15); */
}

main > #cta-box:last-child .chat-button:hover{
    background: var(--dark);
}


.team-img{
    width:100%;
    /* max-height:350px; */
    /* object-fit:cover; */
    border-radius: 20px;
}

.services-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
/* ===========================
   RESPONSIVE
=========================== */

/* Mobile First */

/* Small devices */
@media (max-width: 576px) {
    .buttons .chat-button {
        width: 100% !important;
    }
    .faq-header h3 {
        font-size: 15px !important;
        padding-right: 28px !important;
    }
}

/* Tablets */
@media (max-width: 768px){

    .banner-content {
        position: static !important;
            transform: translate(0%, 0%) !important;
    }

    .banner-box{
        /* min-height: 400px; */
    }

    .banner-box h1{
        font-size: 1.9rem;
    }

    #cta-box{
        margin-top: -30px;
    }

    #cta-box .container{
        padding: 25px;
    }

    #cta-box .button{
        flex-direction: column;
    }

    .banner-box .buttons{
        flex-direction: column !important;
    }
    #banner {
        /* overflow: visible !important; */
    }
    .banner-content {
        width: 100% !important;
    }
    .buttons .chat-button {
        width: 80%;
    }
    .content h3,
    #what_people_are_saying h3,
    .faq_section h3{
        font-size: 1.6rem;
    }

    .faq-header{
        padding: 20px;
    }

    .faq_body{
        padding: 20px;
    }

    .content,
    #what_people_are_saying,
    .faq_section{
        padding: 60px 0;
    }
    .faq-header h3 {
        font-size: 16px !important;
        padding-right: 18px;
    }
    section {
        padding-inline: 15px !important;
    }   
    .services-page-body h2 {
        font-size: 24px !important;
    }
}

/* Laptops */
@media (max-width: 992px){

    .services-page-body .banner-box h1 {
        padding-left: 0px !important;
    }
    nav.navbar.validnavs.navbar-fixed.no-background {
        position: static !important;
    }

    .services-page-body .banner-box {
        height: auto !important;
        padding-block: 40px;
        padding-inline: 20px;
    }

    .banner-box h1{
        font-size: 2.4rem;
    }

    .content{
        padding: 70px 0;
    }

    .content .banner-img{
        /* min-height: 320px; */
        margin-bottom: 30px;
    }

    .content .row{
        gap: 20px;
    }
    .faq_section {
        padding-inline: 20px !important;
    }
}
