@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root{
    --blue:#173f8f;
    --blue-dark:#153f90;
    --text:#1d1d1d;

    --fs-xs:12px;
    --fs-sm:13px;
    --fs-base:14px;
    --fs-md:15px;
    --fs-lg:18px;
    --fs-title:26px;
    --fs-hero:32px;
}

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

body{
    font-family:'Montserrat',sans-serif;
    overflow-x:hidden;
    color:var(--text);
}

/* TOPBAR */

.topbar{
    height:39px;
    background:var(--blue-dark);
    position:relative;
    z-index:1000;
}

.topbar-inner{
    height:39px;
    max-width:1200px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.topbar-text{
    color:#fff;
    font-size:var(--fs-xs);
    font-weight:600;
}

.topbar-social{
    display:flex;
    align-items:center;
    gap:15px;
}

.topbar-social a{
    color:#fff;
    font-size:18px;
    text-decoration:none;
}

/* HEADER */

.main-header{
    position:absolute;
    top:68px;
    left:0;
    width:100%;
    z-index:50;
}

.header-wrapper{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo-area{
    width:255px;
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
}

.logo-mark{
    color:#1553b2;
    font-size:44px;
    line-height:1;
}

.logo-name{
    display:flex;
    flex-direction:column;
    line-height:1.05;
}

.logo-name strong{
    color:#078ed0;
    font-size:23px;
    font-weight:800;
    letter-spacing:-.8px;
}

.logo-name span{
    color:#fff;
    font-size:10px;
    font-weight:600;
    letter-spacing:1.3px;
    margin-top:5px;
    text-shadow:0 1px 2px rgba(0,0,0,.35);
}

/* MENU */

.main-menu{
    display:flex;
    align-items:center;
    gap:20px;
}

.main-menu a{
    color:#fff;
    text-decoration:none;
    font-size:var(--fs-base);
    font-weight:700;
    white-space:nowrap;
    text-shadow:0 1px 2px rgba(0,0,0,.35);
}

.request-btn{
    width:166px;
    height:48px;
    border:3px solid #fff;
    border-radius:50px;
    color:#fff;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:var(--fs-base);
    font-weight:800;
    white-space:nowrap;
}

/* HERO */

.hero-section{
    width:100%;
    height:790px;
    position:relative;
    overflow:hidden;
    background-image:url('https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?auto=format&fit=crop&w=1920&q=90');
    background-size:cover;
    background-position:center center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.18);
    z-index:1;
}

.hero-content{
    position:absolute;
    left:50%;
    transform:translateX(-8%);
    bottom:86px;
    z-index:5;
}

.hero-subtitle{
    color:#fff;
    font-size:20px;
    font-weight:400;
    letter-spacing:8px;
    line-height:1;
    margin-bottom:14px;
}

.hero-content h1{
    color:#fff;
    font-size:var(--fs-hero);
    font-weight:800;
    line-height:1;
    margin-bottom:36px;
}

.hero-btn{
    width:205px;
    height:45px;
    margin-left:105px;
    border:2px solid var(--blue);
    border-radius:50px;
    color:var(--blue);
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    font-size:var(--fs-base);
    font-weight:800;
    background:rgba(255,255,255,.09);
}

/* WHATSAPP */

.whatsapp-fixed{
    position:fixed;
    right:18px;
    bottom:18px;
    width:58px;
    height:58px;
    background:#154294;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    z-index:999;
    box-shadow:0 6px 20px rgba(0,0,0,.25);
}

.whatsapp-fixed i{
    font-size:28px;
}

/* SERVICE CALL */

.service-call-section{
    width:100%;
    background:var(--blue);
    padding:42px 0;
}

.service-call-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:36px;
}

.service-call-left{
    width:67%;
}

.service-call-left span{
    display:block;
    color:#fff;
    font-size:var(--fs-sm);
    font-weight:500;
    margin-bottom:10px;
}

.service-call-left h2{
    color:#fff;
    font-size:24px;
    font-weight:800;
    line-height:1.35;
    margin-bottom:12px;
    max-width:650px;
}

.service-call-left p{
    color:#fff;
    font-size:var(--fs-base);
    font-weight:600;
    line-height:1.7;
    margin:0;
    max-width:740px;
}

.service-call-right{
    width:33%;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:24px;
}

.call-info{
    display:flex;
    align-items:center;
    gap:12px;
    color:#fff;
}

.call-info i{
    font-size:32px;
    transform:rotate(-18deg);
}

.call-text{
    display:flex;
    flex-direction:column;
    line-height:1.1;
}

.call-text small{
    color:#fff;
    font-size:var(--fs-sm);
    font-weight:700;
    margin-bottom:4px;
}

.call-text strong{
    color:#fff;
    font-size:18px;
    font-weight:800;
    white-space:nowrap;
}

.call-btn{
    min-width:168px;
    height:50px;
    padding:0 24px;
    border:3px solid #fff;
    border-radius:10px;
    color:#fff;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:var(--fs-base);
    font-weight:800;
    transition:.3s;
}

.call-btn:hover{
    background:#fff;
    color:var(--blue);
}

/* SERVICE INFO */

.service-info-section{
    background:#fff;
    padding:56px 0 82px;
}

.section-title{
    max-width:1180px;
    margin:0 auto 30px;
    text-align:center;
}

.section-title h2{
    color:var(--blue);
    font-size:26px;
    font-weight:800;
    margin-bottom:12px;
}

.title-line{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    color:var(--blue);
    margin-bottom:18px;
}

.title-line span{
    width:60px;
    height:4px;
    background:var(--blue);
    display:block;
}

.title-line i{
    font-size:20px;
    line-height:1;
}

.section-title p{
    color:#202020;
    font-size:15px;
    font-weight:500;
    line-height:1.75;
    max-width:1180px;
    margin:0 auto;
}

.service-info-grid{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap:34px;
    align-items:start;
}

.service-card img{
    width:100%;
    height:210px;
    object-fit:cover;
    border-radius:10px;
    border-bottom:6px solid var(--blue);
    display:block;
}

.service-card h3{
    color:var(--blue);
    font-size:20px;
    font-weight:800;
    margin:18px 0 8px;
}

.service-card p{
    color:var(--text);
    font-size:15px;
    font-weight:500;
    line-height:1.7;
    margin:0;
}

.spare-box{
    border:5px solid var(--blue);
    border-radius:12px;
    padding:30px 34px;
    min-height:350px;
}

.spare-box h3{
    color:var(--blue);
    font-size:22px;
    font-weight:800;
    line-height:1.2;
    margin:0 0 14px;
}

.spare-line{
    width:44px;
    height:4px;
    background:var(--blue);
    margin-bottom:20px;
}

.spare-box p{
    color:var(--text);
    font-size:15px;
    font-weight:500;
    line-height:1.65;
    margin-bottom:24px;
}

.spare-box a{
    color:var(--blue);
    font-size:15px;
    font-weight:800;
    text-decoration:none;
}

/* RESPONSIVE */

@media(max-width:1200px){
    .topbar-inner,
    .header-wrapper{
        padding:0 30px;
    }

    .main-menu{
        gap:14px;
    }

    .main-menu a{
        font-size:13px;
    }
}

@media(max-width:991px){
    .topbar{
        display:none;
    }

    .main-header{
        top:25px;
    }

    .main-menu,
    .request-btn{
        display:none;
    }

    .header-wrapper{
        padding:0 20px;
    }

    .hero-section{
        height:700px;
    }

    .hero-content{
        left:25px;
        right:25px;
        transform:none;
        bottom:85px;
    }

    .hero-subtitle{
        font-size:17px;
        letter-spacing:4px;
    }

    .hero-content h1{
        font-size:26px;
    }

    .hero-btn{
        margin-left:0;
    }

    .service-call-section{
        padding:38px 0;
    }

    .service-call-wrapper{
        flex-direction:column;
        align-items:flex-start;
        gap:25px;
    }

    .service-call-left,
    .service-call-right{
        width:100%;
    }

    .service-call-left h2{
        font-size:22px;
    }

    .service-call-left p{
        font-size:14px;
    }

    .service-call-right{
        flex-direction:column;
        align-items:flex-start;
        gap:18px;
    }

    .service-info-section{
        padding:45px 0 60px;
    }

    .section-title h2{
        font-size:22px;
    }

    .section-title p{
        font-size:14px;
    }

    .service-info-grid{
        grid-template-columns:1fr;
        gap:28px;
    }

    .service-card img{
        height:220px;
    }

    .spare-box{
        min-height:auto;
        padding:26px;
    }
}
.campaign-section{
    width:100%;
    background:#f4f4f4;
    padding:0;
}

.campaign-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:stretch;
}

.campaign-image{
    min-height:500px;
}

.campaign-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.campaign-content{
    background:#173f8f;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:60px 70px;
}

.campaign-content span{
    color:#fff;
    font-size:18px;
    font-weight:700;
    margin-bottom:10px;
}

.campaign-line{
    width:44px;
    height:4px;
    background:#fff;
    margin-bottom:26px;
}

.campaign-content h2{
    color:#fff;
    font-size:32px;
    font-weight:800;
    line-height:1.45;
    max-width:620px;
    margin-bottom:42px;
}

.campaign-btn{
    width:100px;
    height:50px;
    border:3px solid #fff;
    border-radius:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    text-decoration:none;

    font-size:15px;
    font-weight:700;

    transition:.3s;
}

.campaign-btn:hover{
    background:#fff;
    color:#173f8f;
}

@media(max-width:991px){

    .campaign-grid{
        grid-template-columns:1fr;
    }

    .campaign-image{
        min-height:300px;
    }

    .campaign-content{
        padding:45px 25px;
    }

    .campaign-content h2{
        font-size:24px;
    }

}
.why-us-section{
    background:#fff;
    padding:55px 0 70px;
}

.why-us-wrapper{
    display:grid;
    grid-template-columns:1fr 420px 1fr;
    gap:34px;
    align-items:center;
    margin-top:35px;
}

.why-column{
    display:flex;
    flex-direction:column;
    gap:28px;
}

.why-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.why-item.right{
    text-align:left;
}

.why-text h3{
    color:#1f1f1f;
    font-size:20px;
    font-weight:800;
    margin-bottom:8px;
}

.why-text p{
    color:#6c6c6c;
    font-size:15px;
    line-height:1.7;
    margin:0;
}

.why-icon{
    width:78px;
    min-width:78px;
    height:78px;
    border-radius:50%;
    background:#f3f3f3;

    display:flex;
    align-items:center;
    justify-content:center;
}

.why-icon i{
    color:#173f8f;
    font-size:30px;
}

.why-center{
    position:relative;
}

.why-center img{
    width:100%;
    border-radius:12px;
    display:block;
}

.bottom-actions{
    width:100%;
    height:74px;
    background:#f3f3f3;
    border-radius:50px;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:30px;

    margin-top:28px;
}

.bottom-actions a{
    display:flex;
    align-items:center;
    gap:10px;

    color:#173f8f;
    text-decoration:none;

    font-size:15px;
    font-weight:800;
}

.bottom-actions a i{
    font-size:22px;
}

.bottom-actions span{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#d9d9d9;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#444;
    font-weight:700;
}

.bottom-actions .pink-link{
    color:#ef4b72;
}

@media(max-width:991px){

    .why-us-section{
        padding:45px 0 55px;
    }

    .why-us-wrapper{
        grid-template-columns:1fr;
        gap:35px;
    }

    .why-center{
        order:-1;
    }

    .bottom-actions{
        flex-direction:column;
        height:auto;
        border-radius:18px;
        padding:20px;
        gap:16px;
    }

}
.testimonial-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    min-height:520px;
    background:#f4f4f4;
}

.testimonial-left{
    position:relative;
    background:
        linear-gradient(rgba(0,0,0,.48),rgba(0,0,0,.58)),
        url('https://images.unsplash.com/photo-1621905252507-b35492cc74b4?auto=format&fit=crop&w=1200&q=80');
    background-size:cover;
    background-position:center;
    color:#fff;
}

.testimonial-content{
    padding:70px 70px 60px;
    max-width:720px;
}

.testimonial-content h2{
    font-size:22px;
    font-weight:800;
    margin-bottom:34px;
}

.quote-icon{
    display:block;
    font-size:40px;
    margin-bottom:22px;
    opacity:.95;
}

.testimonial-content p{
    font-size:15px;
    font-weight:500;
    line-height:1.65;
    margin-bottom:42px;
}

.testimonial-user{
    display:flex;
    align-items:center;
    gap:18px;
}

.user-avatar{
    width:74px;
    height:74px;
    border-radius:50%;
    background:rgba(0,0,0,.45);
    border:5px solid rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
}

.user-avatar i{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#fff;
    color:#173f8f;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
}

.testimonial-user strong{
    font-size:14px;
    font-weight:700;
}

.testimonial-dots{
    bottom:70px;
    margin:0;
}

.testimonial-dots button{
    width:11px!important;
    height:11px!important;
    border-radius:50%;
    border:2px solid #fff!important;
    background:transparent!important;
    opacity:1!important;
}

.testimonial-dots button.active{
    background:#fff!important;
}

/* RIGHT */

.testimonial-right{
    position:relative;
    padding:72px 70px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:46px;
}

.feature-line{
    position:absolute;
    left:101px;
    top:92px;
    bottom:92px;
    width:2px;
    background:#e5e5e5;
}

.feature-item{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    gap:28px;
}

.feature-icon{
    width:76px;
    min-width:76px;
    height:76px;
    border-radius:50%;
    background:#fff;
    border:7px solid #f1f1f1;
    display:flex;
    align-items:center;
    justify-content:center;
}

.feature-icon i{
    color:#173f8f;
    font-size:28px;
}

.feature-icon.empty{
    background:#fff;
}

.feature-item h3{
    color:#173f8f;
    font-size:16px;
    font-weight:800;
    margin-bottom:7px;
}

.feature-item p{
    color:#222;
    font-size:13px;
    font-weight:500;
    line-height:1.6;
    margin:0;
    max-width:520px;
}

@media(max-width:991px){
    .testimonial-section{
        grid-template-columns:1fr;
    }

    .testimonial-content{
        padding:45px 25px 90px;
    }

    .testimonial-right{
        padding:45px 25px;
        gap:30px;
    }

    .feature-line{
        display:none;
    }
}
.faq-section{
    background:#fff;
    padding:70px 0 86px;
}

.faq-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
    align-items:start;
}

.faq-left h2,
.faq-right h2{
    color:#173f8f;
    font-size:24px;
    font-weight:800;
    margin-bottom:10px;
}

.small-line{
    width:40px;
    height:4px;
    background:#173f8f;
    margin-bottom:18px;
}

.faq-accordion .accordion-item{
    border:1px solid #ddd;
    border-radius:9px;
    overflow:hidden;
    margin-bottom:4px;
}

.faq-accordion .accordion-button{
    height:52px;
    background:#f7f7f7;
    color:#111;
    font-size:15px;
    font-weight:800;
    box-shadow:none;
    padding:0 18px;
}

.faq-accordion .accordion-button:not(.collapsed){
    background:#f7f7f7;
    color:#111;
}

.faq-accordion .accordion-body{
    padding:18px 22px;
    font-size:14px;
    font-weight:500;
    line-height:1.75;
    color:#222;
}

.faq-right img{
    width:100%;
    height:300px;
    object-fit:cover;
    object-position:center;
    border-radius:9px;
    display:block;
}

.bottom-cta{
    background:#173f8f;
    padding:52px 0;
}

.bottom-cta-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.bottom-cta h2{
    color:#fff;
    font-size:30px;
    font-weight:800;
    line-height:1.45;
    max-width:720px;
    margin:0;
}

.bottom-cta a{
    width:150px;
    height:58px;
    border:3px solid #fff;
    border-radius:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:800;
}

@media(max-width:991px){
    .faq-section{
        padding:45px 0 60px;
    }

    .faq-grid{
        grid-template-columns:1fr;
    }

    .faq-right img{
        height:240px;
    }

    .bottom-cta-inner{
        flex-direction:column;
        align-items:flex-start;
    }

    .bottom-cta h2{
        font-size:24px;
    }
}
.team-about-section{
    background:#fff;
    padding:70px 0 90px;
}

/* TOP GRID */

.team-about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:34px;
    align-items:start;
    margin-bottom:70px;
}

.team-image img{
    width:100%;
    height:100%;
    min-height:640px;
    object-fit:cover;
    border-radius:12px;
    display:block;
}

.team-content{
    padding-top:18px;
}

.team-content h2{
    color:#173f8f;
    font-size:24px;
    font-weight:800;
    margin-bottom:12px;
}

.team-content h3{
    color:#6c6c6c;
    font-size:16px;
    font-weight:700;
    line-height:1.8;
    margin-bottom:24px;
}

.team-content p{
    color:#7b7b7b;
    font-size:15px;
    font-weight:500;
    line-height:1.9;
    margin-bottom:24px;
}

.team-btn{
    width:110px;
    height:46px;
    border:2px solid #173f8f;
    border-radius:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#173f8f;
    text-decoration:none;

    font-size:14px;
    font-weight:700;
}

/* BOTTOM */

.service-bottom-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:34px;
    align-items:center;
}

.service-bottom-content{
    text-align:center;
    padding:0 30px;
}

.service-bottom-content h2{
    color:#173f8f;
    font-size:24px;
    font-weight:800;
    margin-bottom:12px;
}

.service-bottom-content .small-line{
    margin-left:auto;
    margin-right:auto;
}

.service-bottom-content h3{
    color:#7a7a7a;
    font-size:16px;
    font-weight:700;
    line-height:1.8;
    margin-bottom:24px;
}

.service-bottom-content p{
    color:#7b7b7b;
    font-size:15px;
    font-weight:500;
    line-height:1.9;
    margin:0;
}

.service-bottom-image img{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:12px;
    display:block;
}

@media(max-width:991px){

    .team-about-section{
        padding:45px 0 60px;
    }

    .team-about-grid,
    .service-bottom-grid{
        grid-template-columns:1fr;
    }

    .team-image img{
        min-height:360px;
    }

    .service-bottom-image img{
        height:300px;
    }

    .team-content,
    .service-bottom-content{
        padding:0;
    }

}
.counter-section{
    background:#f5f5f5;
    padding:95px 0;
}

.counter-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:34px;
    max-width:1320px;
    margin:0 auto;
}

.counter-card{
    background:#fff;
    border:1px solid #e7e7e7;
    border-radius:10px;

    padding:44px 30px 42px;

    text-align:center;

    min-height:250px;

    display:flex;
    flex-direction:column;
    justify-content:center;

    transition:.3s;
}

.counter-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.counter-card h2{
    color:#20242b;
    font-size:56px;
    font-weight:800;
    line-height:1;
    margin-bottom:12px;
}

.counter-card h3{
    color:#20242b;
    font-size:20px;
    font-weight:800;
    line-height:1.3;
    margin-bottom:10px;
}

.counter-card p{
    color:#333;
    font-size:15px;
    font-weight:500;
    line-height:1.7;
    margin:0;
}

@media(max-width:991px){

    .counter-section{
        padding:55px 0;
    }

    .counter-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .counter-card{
        min-height:auto;
        padding:35px 25px;
    }

    .counter-card h2{
        font-size:42px;
    }

}
.counter-card{
    padding:34px 24px 32px;
    min-height:220px;
}

.counter-card h2{
    font-size:34px;
    margin-bottom:10px;
}

.counter-card h3{
    font-size:16px;
    margin-bottom:8px;
}

.counter-card p{
    font-size:14px;
    line-height:1.6;
}
.site-footer{
    background:#000;
    padding:70px 0 35px;
    color:#fff;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.1fr 1fr 1.1fr 1.1fr;
    gap:34px;
}

.footer-logo{
    height:120px;
    border:1px solid #222;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin-bottom:24px;
}

.footer-logo i{
    color:#174798;
    font-size:48px;
}

.footer-logo strong{
    display:block;
    color:#078ed0;
    font-size:18px;
    font-weight:800;
}

.footer-logo span{
    display:block;
    color:#aaa;
    font-size:12px;
    letter-spacing:5px;
}

.footer-about p{
    color:#fff;
    font-size:14px;
    font-weight:600;
    line-height:1.8;
    margin:0;
}

.footer-col h3{
    color:#fff;
    font-size:18px;
    font-weight:800;
    margin-bottom:20px;
}

.footer-col a{
    height:42px;
    border-bottom:1px solid #181818;
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
}

.footer-col a i{
    width:18px;
    height:18px;
    background:#151515;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:11px;
    color:#777;
}

.footer-warning{
    margin-top:58px;
    color:#fff;
    font-size:14px;
    font-weight:600;
    line-height:1.7;
}

.footer-bottom{
    border-top:1px solid #181818;
    margin-top:28px;
    padding-top:28px;
    display:flex;
    align-items:center;
    gap:45px;
}

.footer-brand{
    color:#555;
    font-size:34px;
    font-weight:800;
}

.footer-bottom-links{
    display:flex;
    align-items:center;
    gap:28px;
    color:#fff;
    font-size:13px;
    font-weight:600;
}

.footer-bottom-links span{
    display:flex;
    align-items:center;
    gap:8px;
}

@media(max-width:991px){
    .site-footer{
        padding:45px 0 30px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:28px;
    }

    .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-bottom-links{
        flex-direction:column;
        align-items:flex-start;
    }
}
/* INNER HEADER */

.inner-page .main-header{
    position:relative;
    top:auto;
    background:#fff;
    padding:28px 0;
    box-shadow:0 8px 22px rgba(0,0,0,.06);
}

.inner-page .main-menu a{
    color:#000;
    text-shadow:none;
}

.inner-page .request-btn{
    color:#173f8f;
    border-color:#173f8f;
    text-shadow:none;
}

.inner-page .logo-name span{
    color:#aaa;
    text-shadow:none;
}

.page-banner{
    background:#f4f4f4;
    padding:45px 0;
}

.page-banner h1{
    color:#202020;
    font-size:24px;
    font-weight:800;
    margin:0;
}

.services-page-section{
    background:#fff;
    padding:65px 0 95px;
}

.services-page-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
    margin-top:32px;
}

.service-page-card{
    position:relative;
    height:230px;
    border-radius:8px;
    overflow:hidden;
    display:block;
    text-decoration:none;
}

.service-page-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.service-page-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.42);
}

.service-page-card span{
    position:absolute;
    left:0;
    right:0;
    bottom:26px;
    z-index:2;
    color:#fff;
    text-align:center;
    font-size:18px;
    font-weight:800;
}

@media(max-width:991px){
    .services-page-grid{
        grid-template-columns:1fr;
    }

    .service-page-card{
        height:220px;
    }
}
/* PAGE */

.page-banner{
    background:#f3f3f3;
    padding:42px 0;
}

.page-banner h1{
    color:#202020;
    font-size:24px;
    font-weight:800;
    margin:0;
}

/* HERO DETAIL */

.service-detail-section{
    background:#fff;
    padding:70px 0 90px;
}

.service-detail-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:42px;
    align-items:center;
}

.service-detail-content h2{
    color:#173f8f;
    font-size:24px;
    font-weight:800;
    line-height:1.35;
    margin-bottom:12px;
    max-width:520px;
}

.service-detail-content h3{
    color:#4a4a4a;
    font-size:16px;
    font-weight:700;
    line-height:1.75;
    margin-bottom:24px;
}

.service-detail-content p{
    color:#757575;
    font-size:15px;
    font-weight:500;
    line-height:1.85;
    margin-bottom:18px;
}

.service-note{
    background:#edf1f7;
    border-left:4px solid #173f8f;
    padding:15px 18px;
    border-radius:8px;
    color:#4a4a4a;
    font-size:14px;
    font-weight:500;
    line-height:1.6;
    margin-top:26px;
    margin-bottom:22px;
}

.service-detail-buttons{
    display:flex;
    align-items:center;
    gap:12px;
}

.service-detail-buttons a{
    height:46px;
    padding:0 22px;
    border:2px solid #173f8f;
    border-radius:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#173f8f;
    text-decoration:none;

    font-size:14px;
    font-weight:700;
}

.service-detail-image img{
    width:100%;
    height:450px;
    object-fit:cover;
    border-radius:10px;
    display:block;
}

/* SERVICE CARDS */

.service-card-section{
    background:#fff;
    padding:10px 0 90px;
}

.service-card{
    display:flex;
    flex-direction:column;
}

.service-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:10px;
    border-bottom:6px solid #173f8f;
    display:block;
}

.service-card h3{
    color:#173f8f;
    font-size:20px;
    font-weight:800;
    margin:18px 0 10px;
}

.service-card p{
    color:#1d1d1d;
    font-size:15px;
    font-weight:500;
    line-height:1.75;
    margin-bottom:16px;
}

.service-card a{
    color:#173f8f;
    font-size:15px;
    font-weight:800;
    text-decoration:none;
}

/* BLUE CTA */

.campaign-section{
    width:100%;
    background:#f4f4f4;
}

.campaign-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:stretch;
}

.campaign-image{
    min-height:500px;
}

.campaign-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.campaign-content{
    background:#173f8f;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:60px 70px;
}

.campaign-content span{
    color:#fff;
    font-size:16px;
    font-weight:700;
    line-height:1.6;
    max-width:650px;
    margin-bottom:10px;
}

.campaign-line{
    width:44px;
    height:4px;
    background:#fff;
    margin-bottom:28px;
}

.campaign-content h2{
    color:#fff;
    font-size:30px;
    font-weight:800;
    line-height:1.45;
    max-width:700px;
    margin-bottom:40px;
}

.campaign-btn{
    width:100px;
    height:50px;
    border:3px solid #fff;
    border-radius:50px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    text-decoration:none;

    font-size:14px;
    font-weight:700;
}

/* FAQ */

.faq-section{
    background:#fff;
    padding:75px 0 90px;
}

.faq-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
    align-items:start;
}

.faq-left h2,
.faq-right h2{
    color:#173f8f;
    font-size:24px;
    font-weight:800;
    margin-bottom:10px;
}

.small-line{
    width:44px;
    height:4px;
    background:#173f8f;
    margin-bottom:18px;
}

.faq-accordion .accordion-item{
    border:1px solid #ddd;
    border-radius:10px;
    overflow:hidden;
    margin-bottom:6px;
}

.faq-accordion .accordion-button{
    height:54px;
    background:#f7f7f7;
    color:#111;
    font-size:15px;
    font-weight:800;
    box-shadow:none;
    padding:0 20px;
}

.faq-accordion .accordion-button:not(.collapsed){
    background:#f7f7f7;
    color:#111;
}

.faq-accordion .accordion-body{
    padding:18px 22px;
    font-size:14px;
    font-weight:500;
    line-height:1.8;
    color:#222;
}

.faq-right img{
    width:100%;
    height:400px;
    object-fit:cover;
    border-radius:10px;
    display:block;
}

/* RESPONSIVE */

@media(max-width:991px){

    .service-detail-section,
    .service-card-section,
    .faq-section{
        padding:50px 0 60px;
    }

    .service-detail-grid,
    .campaign-grid,
    .faq-grid{
        grid-template-columns:1fr;
    }

    .service-detail-image img{
        height:320px;
    }

    .campaign-image{
        min-height:320px;
    }

    .campaign-content{
        padding:45px 25px;
    }

    .campaign-content h2{
        font-size:24px;
    }

    .faq-right img{
        height:280px;
    }

}
/* BLOG POSTS */

.blog-post-section{
    background:#fff;
    padding:70px 0 110px;
}

.blog-post-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.blog-post-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 3px 18px rgba(0,0,0,.06);
}

.blog-post-image{
    position:relative;
    height:300px;
    overflow:hidden;
}

.blog-post-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.blog-post-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.18);
}

/* DATE */

.blog-post-date{
    position:absolute;
    top:14px;
    right:14px;
    z-index:3;

    width:52px;
    height:78px;

    background:#fff;
    border-radius:10px;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.blog-post-date strong{
    color:#000;
    font-size:20px;
    font-weight:800;
    line-height:1;
}

.blog-post-date span{
    color:#000;
    font-size:12px;
    font-weight:700;
    margin:2px 0;
}

.blog-post-date small{
    color:#000;
    font-size:11px;
    font-weight:700;
}

/* STATS */

.blog-post-stats{
    position:absolute;
    right:14px;
    bottom:12px;
    z-index:3;

    display:flex;
    gap:6px;
}

.blog-post-stats div{
    height:28px;
    padding:0 10px;
    background:#fff;
    border-radius:6px;

    display:flex;
    align-items:center;
    gap:6px;

    color:#000;
    font-size:12px;
    font-weight:700;
}

.blog-post-stats i{
    font-size:11px;
}

/* BODY */

.blog-post-body{
    padding:28px 26px 32px;
    text-align:center;
}

.blog-post-body h3{
    color:#202020;
    font-size:20px;
    font-weight:800;
    line-height:1.45;
    margin-bottom:16px;
}

.blog-post-body p{
    color:#707070;
    font-size:15px;
    font-weight:500;
    line-height:1.8;
    margin-bottom:24px;
}

.blog-post-body a{
    min-width:132px;
    height:42px;
    padding:0 18px;

    border:2px solid #000;
    border-radius:50px;

    display:inline-flex;
    align-items:center;
    justify-content:center;

    color:#000;
    text-decoration:none;

    font-size:13px;
    font-weight:700;
}

/* RESPONSIVE */

@media(max-width:991px){

    .blog-post-section{
        padding:50px 0 70px;
    }

    .blog-post-grid{
        grid-template-columns:1fr;
        gap:24px;
    }

    .blog-post-image{
        height:240px;
    }

}
.blog-detail-section{
    background:#fff;
    padding:70px 0 80px;
}

.blog-detail-grid{
    display:grid;
    grid-template-columns:minmax(0, 760px) 360px;
    gap:32px;
    align-items:start;
}

.blog-detail-image-box{
    position:relative;
    border:1px solid #ddd;
    border-radius:8px;
    overflow:hidden;
    height:370px;
}

.blog-detail-image-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.blog-cat{
    position:absolute;
    top:12px;
    left:12px;
    background:#000;
    color:#fff;
    font-size:11px;
    font-weight:800;
    padding:8px 12px;
    border-radius:5px;
}

.blog-date-box{
    position:absolute;
    top:12px;
    right:12px;
    width:52px;
    height:78px;
    background:#fff;
    border-radius:8px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.blog-date-box strong{
    font-size:22px;
    font-weight:800;
    color:#000;
    line-height:1;
}

.blog-date-box span,
.blog-date-box small{
    font-size:10px;
    font-weight:800;
    color:#000;
}

.blog-view-box{
    position:absolute;
    right:8px;
    bottom:8px;
    display:flex;
    gap:5px;
}

.blog-view-box span{
    height:26px;
    background:#fff;
    border-radius:5px;
    padding:0 9px;
    display:flex;
    align-items:center;
    gap:5px;
    font-size:11px;
    font-weight:700;
    color:#000;
}

.topic-box{
    margin-top:16px;
    background:#eef2fa;
    border:1px solid #b9c5d9;
    border-left:4px solid #173f8f;
    border-radius:8px;
    padding:18px 22px;
}

.topic-box h3{
    color:#173f8f;
    font-size:17px;
    font-weight:800;
    margin-bottom:8px;
}

.topic-box p{
    margin:0;
    font-size:13px;
    font-weight:600;
    color:#222;
}

.blog-article{
    padding-top:26px;
}

.blog-article p{
    color:#202020;
    font-size:15px;
    font-weight:500;
    line-height:1.75;
    margin-bottom:22px;
}

.blog-article h2{
    color:#202020;
    font-size:17px;
    font-weight:800;
    margin:28px 0 14px;
}

.article-images{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin:22px 0;
}

.article-images img{
    width:100%;
    height:210px;
    object-fit:cover;
    border-radius:8px;
}

/* SIDEBAR */

.sidebar-widget{
    margin-bottom:26px;
}

.sidebar-widget h3{
    position:relative;
    background:#173f8f;
    color:#fff;
    display:inline-flex;
    align-items:center;
    height:38px;
    padding:0 18px;
    font-size:15px;
    font-weight:700;
    margin-bottom:16px;
}

.sidebar-widget h3::after{
    content:"";
    position:absolute;
    right:-32px;
    top:0;
    border-top:38px solid #173f8f;
    border-right:32px solid transparent;
}

.sidebar-search{
    display:flex;
    gap:10px;
}

.sidebar-search input{
    height:46px;
    flex:1;
    border:1px solid #ddd;
    border-radius:5px;
    padding:0 14px;
    font-size:13px;
}

.sidebar-search button{
    width:66px;
    height:46px;
    border:0;
    border-radius:5px;
    background:#173f8f;
    color:#fff;
    font-size:13px;
    font-weight:700;
}

.sidebar-cat{
    position:relative;
    height:54px;
    border-radius:8px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:space-between;
    text-decoration:none;
    margin-bottom:8px;
    padding:0 14px;
}

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

.sidebar-cat::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(0,0,0,.8),rgba(0,0,0,.25));
}

.sidebar-cat span,
.sidebar-cat strong{
    position:relative;
    z-index:2;
    color:#fff;
}

.sidebar-cat span{
    font-size:13px;
    font-weight:700;
}

.sidebar-cat strong{
    background:#173f8f;
    border-radius:8px;
    padding:6px 9px;
    font-size:11px;
}

.popular-post{
    display:grid;
    grid-template-columns:70px 1fr;
    gap:12px;
    text-decoration:none;
    margin-bottom:22px;
}

.popular-post img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #eee;
}

.popular-post h4{
    color:#111;
    font-size:13px;
    font-weight:800;
    line-height:1.35;
    margin-bottom:8px;
}

.popular-post p{
    color:#777;
    font-size:12px;
    line-height:1.5;
    margin-bottom:6px;
}

.popular-post span{
    color:#999;
    font-size:12px;
}

.updated-list{
    list-style:none;
    padding:0;
    margin:0;
}

.updated-list li{
    border-left:2px solid #eee;
    padding:0 0 16px 16px;
    color:#111;
    font-size:15px;
    font-weight:800;
    line-height:1.35;
}

.updated-list li span{
    display:block;
    color:#999;
    font-size:12px;
    font-weight:500;
    margin-bottom:4px;
}

.no-comment{
    font-size:14px;
    color:#222;
}

/* CTA */

.article-cta-box{
    margin:34px 0;
    background:#eaf0fa;
    border-left:4px solid #173f8f;
    border-radius:10px 160px 160px 10px;
    padding:34px 44px;
    display:grid;
    grid-template-columns:1fr 260px;
    align-items:center;
    gap:28px;
}

.article-cta-text h2{
    color:#000;
    font-size:24px;
    font-weight:800;
    line-height:1.25;
    margin-bottom:12px;
}

.article-cta-text h3{
    color:#222;
    font-size:15px;
    font-weight:800;
    margin-bottom:24px;
}

.article-cta-text p{
    color:#222;
    font-size:16px;
    line-height:1.6;
    margin-bottom:18px;
}

.article-cta-text a{
    color:#173f8f;
    text-decoration:none;
}

.article-cta-buttons{
    display:flex;
    gap:10px;
}

.article-cta-buttons a{
    height:46px;
    border:2px solid #173f8f;
    border-radius:50px;
    padding:0 22px;
    display:flex;
    align-items:center;
    color:#173f8f;
    font-size:14px;
    font-weight:800;
}

.article-cta-img img{
    width:220px;
    height:220px;
    border-radius:50%;
    object-fit:cover;
    border:6px solid #fff;
}

.share-bar{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    height:50px;
    border-radius:8px;
    overflow:hidden;
    margin-bottom:44px;
}

.share-bar a{
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:22px;
    text-decoration:none;
}

.whatsapp-share{background:#2fb84f;}
.facebook-share{background:#3d5fa8;}
.x-share{background:#55acee;}
.linkedin-share{background:#087cad;}
.pinterest-share{background:#c90017;}

/* RELATED */

.related-posts{
    border-top:1px solid #ddd;
    border-bottom:1px solid #ddd;
    padding:34px 0;
}

.related-posts h2{
    color:#173f8f;
    text-align:center;
    font-size:26px;
    font-weight:800;
    margin-bottom:10px;
}

.small-line.center{
    margin-left:auto;
    margin-right:auto;
}

.related-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:32px 48px;
    margin-top:28px;
}

.related-item{
    display:grid;
    grid-template-columns:120px 1fr;
    gap:18px;
    align-items:center;
    text-decoration:none;
}

.related-item img{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #eee;
}

.related-item h3{
    color:#000;
    font-size:19px;
    font-weight:800;
    line-height:1.25;
    margin-bottom:8px;
}

.related-item span{
    color:#999;
    font-size:15px;
}

/* RESPONSIVE */

@media(max-width:991px){
    .blog-detail-grid{
        grid-template-columns:1fr;
    }

    .blog-detail-image-box{
        height:260px;
    }

    .article-images,
    .related-grid,
    .article-cta-box{
        grid-template-columns:1fr;
    }

    .article-cta-box{
        border-radius:10px;
        padding:26px;
    }

    .article-cta-img img{
        width:180px;
        height:180px;
    }

    .related-item{
        grid-template-columns:90px 1fr;
    }

    .related-item img{
        width:90px;
        height:90px;
    }
}
.about-page-section{
    background:#fff;
    padding:70px 0 75px;
}

.about-page-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:42px;
    align-items:center;
}

.about-content h2,
.mission-content h2{
    color:#173f8f;
    font-size:24px;
    font-weight:800;
    margin-bottom:10px;
}

.about-content h3,
.mission-content h3{
    color:#5d5d5d;
    font-size:17px;
    font-weight:800;
    line-height:1.65;
    margin-bottom:22px;
}

.about-content p,
.mission-content p{
    color:#888;
    font-size:15px;
    font-weight:500;
    line-height:1.85;
    margin-bottom:20px;
}

.about-note{
    background:#eef2f8;
    border-left:4px solid #173f8f;
    border-radius:8px;
    padding:15px 18px;
    color:#666;
    font-size:14px;
    font-weight:500;
    line-height:1.6;
    margin:28px 0 22px;
}

.about-buttons{
    display:flex;
    align-items:center;
    gap:12px;
}

.about-buttons a{
    height:46px;
    padding:0 24px;
    border:2px solid #173f8f;
    border-radius:50px;
    color:#173f8f;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:800;
}

.about-image img{
    width:100%;
    height:470px;
    object-fit:cover;
    border-radius:10px;
    border:1px solid #e1e1e1;
    display:block;
}

.about-counter{
    padding:72px 0;
}

.mission-section{
    background:#fff;
    padding:80px 0 95px;
}

.mission-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:42px;
    align-items:center;
}

.mission-image img{
    width:100%;
    height:470px;
    object-fit:cover;
    border-radius:10px;
    display:block;
}

@media(max-width:991px){
    .about-page-grid,
    .mission-grid{
        grid-template-columns:1fr;
    }

    .about-page-section,
    .mission-section{
        padding:50px 0 60px;
    }

    .about-image img,
    .mission-image img{
        height:320px;
    }
}
.contact-section{
    padding:65px 0 70px;
    background:#fff;
}

.contact-grid{
    display:grid;
    grid-template-columns:330px 1fr;
    gap:24px;
}

.contact-card{
    border:2px solid #284892;
    border-radius:14px;
    padding:22px 22px 10px;
}

.contact-head{
    background:#eef1f8;
    border-radius:10px;
    padding:22px;
    text-align:center;
    margin-bottom:24px;
}

.contact-head h2{
    color:#2b2b2b;
    font-size:20px;
    font-weight:800;
    margin-bottom:6px;
}

.contact-head span{
    color:#3d3d3d;
    font-size:15px;
    font-weight:500;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:18px;
    padding:18px 0;
    border-bottom:1px solid #e5e5e5;
}

.contact-icon{
    width:70px;
    height:70px;
    background:#eef1f8;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.contact-icon i{
    color:#284892;
    font-size:26px;
}

.contact-text{
    color:#303030;
    font-size:16px;
    font-weight:600;
    line-height:1.7;
}

.map-area iframe{
    width:100%;
    height:100%;
    min-height:410px;
    border:2px solid #d9d9d9;
    border-radius:12px;
}

.invoice-section{
    padding:75px 0;
    background:#fff;
}

.invoice-grid{
    display:grid;
    grid-template-columns:1fr 600px;
    gap:35px;
    align-items:center;
}

.invoice-content h2{
    color:#173f8f;
    font-size:24px;
    font-weight:800;
    margin-bottom:10px;
}

.invoice-content ul{
    margin:28px 0 0;
    padding:0;
    list-style:none;
}

.invoice-content ul li{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 0;
    border-bottom:1px solid #d8ddea;
    color:#5b5b5b;
    font-size:16px;
    font-weight:500;
    line-height:1.5;
}

.invoice-content ul li i{
    width:42px;
    height:42px;
    background:#eef1f8;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#8a8a8a;
    font-size:18px;
    flex-shrink:0;
}

.invoice-content ul li strong{
    color:#4a4a4a;
    font-weight:700;
}

.invoice-image img{
    width:100%;
    height:560px;
    object-fit:cover;
    border-radius:10px;
    display:block;
}

.contact-call{
    background:#173f8f;
    padding:42px 0;
}

.contact-call-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.contact-call-wrapper h2{
    color:#fff;
    font-size:28px;
    font-weight:800;
}

.contact-call-phone{
    color:#fff;
    font-size:38px;
    font-weight:800;
    display:flex;
    align-items:center;
    gap:15px;
}

.contact-call-phone i{
    font-size:34px;
}

.contact-faq-section{
    padding:75px 0 90px;
    background:#fff;
}

.contact-faq-grid{
    display:grid;
    grid-template-columns:1fr 430px;
    gap:38px;
}

.faq-left h2,
.faq-contact h2{
    color:#173f8f;
    font-size:24px;
    font-weight:800;
    margin-bottom:10px;
}

.faq-box{
    border:1px solid #dddddd;
    border-radius:12px;
    overflow:hidden;
    margin-bottom:14px;
}

.faq-title{
    min-height:62px;
    padding:0 22px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    color:#111;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
}

.faq-content{
    padding:0 22px 22px;
    color:#3f3f3f;
    font-size:15px;
    line-height:1.8;
    display:none;
}

.faq-box.active .faq-content{
    display:block;
}

.faq-contact img{
    width:100%;
    height:315px;
    object-fit:cover;
    border-radius:10px;
    display:block;
}

@media(max-width:991px){

    .contact-grid,
    .invoice-grid,
    .contact-faq-grid{
        grid-template-columns:1fr;
    }

    .contact-call-wrapper{
        flex-direction:column;
        gap:18px;
        text-align:center;
    }

    .contact-call-wrapper h2{
        font-size:24px;
    }

    .contact-call-phone{
        font-size:28px;
    }

    .invoice-image img{
        height:350px;
    }

    .map-area iframe{
        min-height:320px;
    }
}
.topbar{
    height:38px;
    background:#173f8f;
}

.topbar-wrapper{
    height:38px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.topbar-text{
    color:#fff;
    font-size:11px;
    font-weight:600;
}

.topbar-social{
    display:flex;
    align-items:center;
    gap:14px;
}

.topbar-social a{
    color:#fff;
    font-size:16px;
    text-decoration:none;
}

.main-header{
    width:100%;
    background:#fff;
    border-bottom:1px solid #ececec;
    position:relative;
    z-index:999;
}

.header-wrapper{
    height:96px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo-mark{
    color:#173f8f;
    font-size:54px;
    line-height:1;
}

.logo-name strong{
    display:block;
    color:#1594d7;
    font-size:24px;
    font-weight:800;
    line-height:1;
}

.logo-name span{
    display:block;
    color:#b1b1b1;
    font-size:12px;
    font-weight:500;
    margin-top:6px;
    letter-spacing:2px;
}

.main-menu{
    display:flex;
    align-items:center;
    gap:24px;
}

.main-menu a{
    color:#111;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
}

.request-btn{
    width:166px;
    height:50px;
    border:2px solid #173f8f;
    border-radius:50px;
    color:#173f8f;
    text-decoration:none;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:800;
}

.mobile-menu-btn{
    display:none;
}

/* MOBİL */
@media(max-width:991px){

    .topbar{
        display:none;
    }

    .header-wrapper{
        height:78px;
    }

    .logo-mark{
        font-size:40px;
    }

    .logo-name strong{
        font-size:18px;
    }

    .logo-name span{
        font-size:9px;
        letter-spacing:1px;
    }

    .request-btn{
        display:none;
    }

    .mobile-menu-btn{
        display:flex;
        width:42px;
        height:42px;
        border:0;
        border-radius:8px;
        background:#173f8f;
        color:#fff;
        align-items:center;
        justify-content:center;
        font-size:24px;
    }

    .main-menu{
        display:none;
        position:absolute;
        top:78px;
        left:0;
        width:100%;
        background:#fff;
        border-top:1px solid #eee;
        box-shadow:0 10px 25px rgba(0,0,0,.08);
        flex-direction:column;
        align-items:stretch;
        gap:0;
        padding:8px 0;
        z-index:999;
    }

    .main-menu.active{
        display:flex;
    }

    .main-menu a{
        padding:14px 22px;
        font-size:14px;
        border-bottom:1px solid #f1f1f1;
    }
}
/* Ana sayfa header */
.main-header{
    width:100%;
    position:absolute;
    top:38px;
    left:0;
    z-index:999;
    background:transparent;
    border-bottom:0;
}

/* Alt sayfa header */
.inner-page .main-header{
    position:relative;
    top:auto;
    left:auto;
    background:#fff;
    border-bottom:1px solid #ececec;
}
.hero-section{
    margin-top:0;
}
/* ANASAYFA */

.main-header .main-menu a{
    color:#fff;
}

.main-header .request-btn{
    color:#fff;
    border-color:#fff;
}

.main-header .logo-name span{
    color:#fff;
}

/* ALT SAYFALAR */

.inner-page .main-menu a{
    color:#111;
}

.inner-page .request-btn{
    color:#173f8f;
    border-color:#173f8f;
}

.inner-page .logo-name span{
    color:#b1b1b1;
}
.hero-section{
    width:100%;
    height:790px;
    position:relative;
    overflow:hidden;
}

.hero-section .carousel-inner,
.hero-section .carousel-item,
.hero-slide{
    width:100%;
    height:790px;
}

.hero-slide{
    position:relative;
    background-size:cover;
    background-position:center center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.22);
    z-index:1;
}

.hero-content{
    position:absolute;
    left:50%;
    transform:translateX(-8%);
    bottom:86px;
    z-index:5;
}

.hero-control{
    width:46px;
    height:46px;
    top:50%;
    transform:translateY(-50%);
    background:rgba(23,63,143,.82);
    border-radius:50%;
    opacity:1;
}

.carousel-control-prev.hero-control{
    left:28px;
}

.carousel-control-next.hero-control{
    right:28px;
}

.hero-control i{
    color:#fff;
    font-size:26px;
}

@media(max-width:991px){
    .hero-section,
    .hero-section .carousel-inner,
    .hero-section .carousel-item,
    .hero-slide{
        height:700px;
    }

    .hero-content{
        left:25px;
        right:25px;
        transform:none;
        bottom:85px;
    }

    .hero-control{
        display:none;
    }
}
/* BLOG LIST SAFE FIX */

.blog-post-section{
    background:#fff !important;
    padding:70px 0 110px !important;
}

.blog-post-section > .container{
    max-width:1200px !important;
    width:100% !important;
    margin:0 auto !important;
    padding-left:12px !important;
    padding-right:12px !important;
}

.blog-list-grid{
    width:100% !important;
    display:grid !important;
    grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
    gap:30px !important;
    align-items:start !important;
}

.blog-list-card{
    width:100% !important;
    min-width:0 !important;
    background:#fff !important;
    border-radius:10px !important;
    overflow:hidden !important;
    box-shadow:0 3px 18px rgba(0,0,0,.06) !important;
}

.blog-list-img{
    position:relative !important;
    width:100% !important;
    height:300px !important;
    overflow:hidden !important;
    background:#ddd !important;
}

.blog-list-img img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    display:block !important;
}

.blog-list-img::after{
    content:"" !important;
    position:absolute !important;
    inset:0 !important;
    background:rgba(0,0,0,.18) !important;
}

.blog-list-date{
    position:absolute !important;
    top:14px !important;
    right:14px !important;
    z-index:3 !important;
    width:52px !important;
    height:78px !important;
    background:#fff !important;
    border-radius:10px !important;
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
}

.blog-list-date strong{
    color:#000 !important;
    font-size:20px !important;
    font-weight:800 !important;
    line-height:1 !important;
}

.blog-list-date span{
    color:#000 !important;
    font-size:12px !important;
    font-weight:700 !important;
    margin:2px 0 !important;
}

.blog-list-date small{
    color:#000 !important;
    font-size:11px !important;
    font-weight:700 !important;
}

.blog-list-stats{
    position:absolute !important;
    right:14px !important;
    bottom:12px !important;
    z-index:3 !important;
    display:flex !important;
    gap:6px !important;
}

.blog-list-stats div{
    height:28px !important;
    padding:0 10px !important;
    background:#fff !important;
    border-radius:6px !important;
    display:flex !important;
    align-items:center !important;
    gap:6px !important;
    color:#000 !important;
    font-size:12px !important;
    font-weight:700 !important;
}

.blog-list-body{
    padding:28px 26px 32px !important;
    text-align:center !important;
}

.blog-list-body h3{
    color:#202020 !important;
    font-size:20px !important;
    font-weight:800 !important;
    line-height:1.45 !important;
    margin-bottom:16px !important;
}

.blog-list-body p{
    color:#707070 !important;
    font-size:15px !important;
    font-weight:500 !important;
    line-height:1.8 !important;
    margin-bottom:24px !important;
}

.blog-list-body a{
    min-width:132px !important;
    height:42px !important;
    padding:0 18px !important;
    border:2px solid #000 !important;
    border-radius:50px !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    color:#000 !important;
    text-decoration:none !important;
    font-size:13px !important;
    font-weight:700 !important;
}

@media(max-width:991px){
    .blog-list-grid{
        grid-template-columns:1fr !important;
        gap:24px !important;
    }

    .blog-list-img{
        height:240px !important;
    }
}