/*======================================
GOOGLE FONT
======================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*======================================
GLOBAL
======================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#333;
    line-height:1.8;
    overflow-x:hidden;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
    transition:.3s ease;
}

ul{
    list-style:none;
}

section{
    position:relative;
}

/*======================================
COMMON TITLE
======================================*/

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-tag{
    display:inline-block;
    color:#D62828;
    font-size:16px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
    position:relative;
    padding-bottom:8px;
}

.section-tag::after{
    content:"";
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:0;
    width:70px;
    height:3px;
    background:#D62828;
    border-radius:30px;
}

.section-title h2{
    font-size:46px;
    color:#0B2E59;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.25;
}

.section-title p{
    max-width:760px;
    margin:auto;
    color:#666;
    font-size:17px;
}

/*======================================
BUTTONS
======================================*/

.btn-primary{
    display:inline-block;
    padding:15px 35px;
    background:#D62828;
    color:#fff;
    border-radius:8px;
    font-weight:600;
    transition:.35s;
}

.btn-primary:hover{
    background:#0B2E59;
    color:#fff;
}

.btn-outline{
    display:inline-block;
    padding:15px 35px;
    border:2px solid #fff;
    color:#fff;
    border-radius:8px;
    font-weight:600;
    margin-left:15px;
    transition:.35s;
}

.btn-outline:hover{
    background:#fff;
    color:#0B2E59;
}

/*======================================
HERO
======================================*/

.hero{
    margin-top:80px;
    height:calc(100vh - 80px);
    display:flex;
    align-items:center;
    position:relative;
    background:url("../image/home-hero.jpg") center center/cover no-repeat;
    overflow:hidden;
    padding:55px 0;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(7,32,66,.88),
        rgba(7,32,66,.65),
        rgba(7,32,66,.30)
    );
}

.hero-grid{
    position:relative;
    z-index:2;
}

.hero-content{
    max-width:660px;
    color:#fff;
}

.hero-tag{
    display:inline-block;
    margin-bottom:18px;
    padding:10px 24px;
    background:#D62828;
    border-radius:30px;
    font-size:15px;
    font-weight:600;
}

.hero h1{
    font-size:64px;
    line-height:1.08;
    font-weight:800;
    max-width:650px;
    margin-bottom:16px;
}

.hero p{
    font-size:18px;
    color:#F5F5F5;
    line-height:1.65;
    max-width:700px;
    margin-bottom:22px;
}

.hero-buttons{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-outline{
    min-width:170px;
    text-align:center;
}


/*======================================
HERO RESPONSIVE
======================================*/

@media(max-width:992px){

.hero{
    min-height:auto;
    padding:120px 0 90px;
}

.hero-content{
    max-width:100%;
}

.hero h1{
    font-size:48px;
}

.hero p{
    font-size:17px;
}

}

@media(max-width:768px){

.hero{
    padding:100px 0 80px;
    text-align:center;
}

.hero-content{
    margin:auto;
}

.hero-tag{
    margin-bottom:16px;
}

.hero h1{
    font-size:38px;
    line-height:1.2;
}

.hero p{
    font-size:16px;
    line-height:1.7;
}

.hero-buttons{
    justify-content:center;
    gap:15px;
}

.hero-buttons .btn-primary,
.hero-buttons .btn-outline{
    width:100%;
    max-width:280px;
}

}

@media(max-width:480px){

.hero{
    padding:90px 0 70px;
}

.hero-tag{
    font-size:14px;
    padding:8px 18px;
}

.hero h1{
    font-size:30px;
}

.hero p{
    font-size:15px;
}

}
/*======================================
STATS
======================================*/

.stats{
    background:#0B2E59;
    padding:70px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
}

.stat-box{
    text-align:center;
    color:#fff;
    padding:20px 15px;
    border-radius:12px;
    transition:.3s ease;
}

.stat-box:hover{
    transform:translateY(-8px);
}

.stat-box i{
    font-size:42px;
    color:#D62828;
    margin-bottom:15px;
}

.stat-box h2{
    font-size:40px;
    font-weight:700;
    margin-bottom:10px;
}

.stat-box p{
    color:#ddd;
    font-size:16px;
    line-height:1.6;
}

/*======================================
ABOUT
======================================*/

.about-preview{
    padding:100px 0;
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
   
}

.about-content{
    padding-right:20px;
    margin-top:-50px;
}

.about-content h2{
    font-size:44px;
    color:#0B2E59;
    margin-bottom:25px;
    line-height:1.2;
}

.about-content p{
    color:#666;
    font-size:17px;
    line-height:1.9;
    margin-bottom:20px;
}

.about-content .btn-primary{
    margin-top:20px;
}

.about-image-box{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:-10px;

}

.about-image{
    width:100%;
    max-width:520px;
    border-radius:20px;
    display:block;
    
}

/*======================================
RESPONSIVE
======================================*/

@media(max-width:992px){

.stats-grid{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.about-grid{
    grid-template-columns:1fr;
    gap:40px;
}

.about-content{
    padding-right:0;
    order:1;
}

.about-image-box{
    order:2;
}

.about-content h2{
    font-size:36px;
}

.about-image{
    max-width:100%;
}

}

@media(max-width:768px){

.stats{
    padding:60px 0;
}

.stats-grid{
    gap:18px;
}

.stat-box{
    padding:15px 10px;
}

.stat-box i{
    font-size:34px;
}

.stat-box h2{
    font-size:30px;
}

.stat-box p{
    font-size:14px;
}

.about-preview{
    padding:70px 0;
    margin-top:-90px;
}

.about-content h2{
    font-size:30px;
}

.about-content p{
    font-size:16px;
}

.about-image{
    max-width:100%;
}

}

@media(max-width:480px){

.stats-grid{
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.stat-box{
    padding:12px 8px;
}

.stat-box h2{
    font-size:24px;
}

.stat-box i{
    font-size:28px;
}

.stat-box p{
    font-size:13px;
}

.about-content h2{
    font-size:26px;
}

.about-content p{
    font-size:15px;
}

}
/*======================================
SERVICES
======================================*/

.services{
    padding:100px 0;
    position:relative;
    overflow:hidden;
    margin-top:-90px;
}

.serviceSwiper{
    padding:20px 5px 60px;
}

.service-card{
    position:relative;
    height:100%;
    padding:40px 30px;
    text-align:center;
    border-radius:22px;
    background:rgba(255,255,255,.28);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border:2px solid rgba(255,255,255,.45);
    border-top:5px solid #0B2E59;
    border-bottom:5px solid #D62828;
    box-shadow:
        0 12px 35px rgba(0,0,0,.12),
        inset 0 1px 0 rgba(255,255,255,.45);
    transition:.45s;
    overflow:hidden;
}

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.55),
        transparent
    );
    transition:.8s;
}

.service-card:hover::before{
    left:140%;
}

.service-card:hover{
    transform:translateY(-12px);
    border-top-color:#D62828;
    border-bottom-color:#0B2E59;
    box-shadow:0 25px 60px rgba(11,46,89,.20);
}

.service-icon{
    width:95px;
    height:95px;
    margin:auto auto 28px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,#0B2E59,#1976D2);
    box-shadow:0 12px 30px rgba(25,118,210,.35);
    transition:.4s;
}

.service-card:hover .service-icon{
    background:linear-gradient(135deg,#D62828,#ff5b5b);
    transform:rotate(8deg) scale(1.08);
}

.service-icon i{
    color:#fff;
    font-size:38px;
}

.service-card h3{
    color:#0B2E59;
    font-size:24px;
    margin-bottom:18px;
}

.service-card p{
    color:#444;
    line-height:1.9;
    margin-bottom:25px;
}

.service-card a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#0B2E59;
    font-weight:700;
    transition:.35s;
}

.service-card:hover a{
    color:#D62828;
}

/*======================================
INDUSTRIES
======================================*/

.industries{
    padding:100px 0;
    position:relative;
    overflow:hidden;
}

.industrySwiper{
    padding:20px 5px 60px;
}

.industry-box{
    position:relative;
    height:100%;
    padding:40px 30px;
    text-align:center;
    border-radius:22px;
    background:rgba(255,255,255,.28);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border:2px solid rgba(255,255,255,.45);
    border-top:5px solid #0B2E59;
    border-bottom:5px solid #D62828;
    box-shadow:
        0 12px 35px rgba(0,0,0,.12),
        inset 0 1px 0 rgba(255,255,255,.45);
    transition:.45s;
    overflow:hidden;
}

.industry-box::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;
    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.55),
        transparent
    );
    transition:.8s;
}

.industry-box:hover::before{
    left:140%;
}

.industry-box:hover{
    transform:translateY(-12px);
    border-top-color:#D62828;
    border-bottom-color:#1565C0;
}

.industry-icon{
    width:95px;
    height:95px;
    margin:auto auto 28px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:linear-gradient(135deg,#0B2E59,#1976D2);
    box-shadow:0 12px 30px rgba(25,118,210,.35);
    transition:.4s;
}

.industry-box:hover .industry-icon{
    background:linear-gradient(135deg,#D62828,#ff5b5b);
    transform:rotate(8deg) scale(1.08);
}

.industry-icon i{
    color:#fff;
    font-size:38px;
}

.industry-box h3{
    color:#0B2E59;
    font-size:24px;
    margin-bottom:18px;
}

.industry-box p{
    color:#444;
    line-height:1.9;
    margin-bottom:25px;
}

.industry-box a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#0B2E59;
    font-weight:700;
    transition:.35s;
}

.industry-box:hover a{
    color:#D62828;
}

.industry-box:hover a i{
    transform:translateX(6px);
}

/*======================================
SWIPER
======================================*/

.swiper-slide{
    height:auto;
}

.swiper-pagination{
    margin-top:20px;
}

.swiper-pagination-bullet{
    width:10px;
    height:10px;
    background:#9cbad7;
    opacity:1;
    transition:.3s;
}

.swiper-pagination-bullet-active{
    width:28px;
    border-radius:30px;
    background:#D62828;
}

/*======================================
RESPONSIVE
======================================*/

@media(max-width:768px){

.services,
.industries{
    padding:70px 0;
}

.service-card,
.industry-box{
    padding:35px 25px;
}

.service-icon,
.industry-icon{
    width:80px;
    height:80px;
}

.service-icon i,
.industry-icon i{
    font-size:32px;
}

.service-card h3,
.industry-box h3{
    font-size:22px;
}

}
/*======================================
WHY CHOOSE US
======================================*/

.why-us{
    padding:120px 0;
    background:#F8FAFC;
    margin-top:-90px;
}

.why-grid{
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:70px;
    align-items:center;
}

/*======================================
WHY CONTENT
======================================*/

.why-content h2{
    font-size:44px;
    line-height:1.25;
    color:#0B2E59;
    margin-bottom:22px;
}

.why-content p{
    color:#666;
    font-size:16px;
    line-height:1.9;
    margin-bottom:35px;
}

.why-list{
    display:grid;
    gap:22px;
}

.why-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:22px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;
}

.why-item:hover{
    transform:translateX(10px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.why-item i{
    width:65px;
    height:65px;
    background:#D62828;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    flex-shrink:0;
}

.why-item h4{
    color:#0B2E59;
    font-size:20px;
    margin-bottom:8px;
}

.why-item p{
    margin:0;
    color:#666;
    font-size:15px;
    line-height:1.7;
}

/*======================================
WHY IMAGE
======================================*/

.why-image{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.why-image img{
    width:100%;
    display:block;
    object-fit:cover;
    border-radius:24px;
    box-shadow:0 20px 50px rgba(0,0,0,.15);
    transition:.35s ease;
}

.why-image img:first-child{
    height:360px;
}

.why-image img:last-child{
    height:200px;
}

.why-image img:hover{
    transform:translateY(-8px);
    box-shadow:0 30px 60px rgba(0,0,0,.20);
}
/*======================================
INFRASTRUCTURE
======================================*/

.infrastructure{
    padding:100px 0;
    background:#fff;
}

.infrastructure-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.infrastructure-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.infrastructure-card:hover{
    transform:translateY(-10px);
}

.infrastructure-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.infrastructure-content{
    padding:25px;
}

.infrastructure-content h3{
    color:#0B2E59;
    font-size:24px;
    margin-bottom:15px;
}

.infrastructure-content p{
    color:#666;
    line-height:1.8;
}

/*======================================
OUR CLIENTS
======================================*/

.clients{
    padding:100px 0;
    background:#f8f9fc;
    overflow:hidden;
}

.client-slider{
    width:100%;
    overflow:hidden;
    position:relative;
    margin-top:50px;
}

.client-track{
    display:flex;
    align-items:center;
    width:max-content;
    animation:clientScroll 40s linear infinite;
}

.client-slider:hover .client-track{
    animation-play-state:paused;
}

.client-logo{
    width:240px;
    height:140px;
    margin:0 18px;
    background:#fff;
    border-radius:16px;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
    padding:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.client-logo:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);
}

.client-logo img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
    transition:.35s;
}

.client-logo:hover img{
    transform:scale(1.05);
}

@keyframes clientScroll{

from{
    transform:translateX(0);
}

to{
    transform:translateX(-50%);
}

}

/*======================================
RESPONSIVE
======================================*/

@media(max-width:992px){

.why-grid{
    grid-template-columns:1fr;
    gap:45px;
}

.why-image{
    order:2;
}

.why-content{
    order:1;
}

}

@media(max-width:768px){

.why-us,
.infrastructure,
.clients{
    padding:70px 0;
}

.why-content h2{
    font-size:34px;
}

.why-item{
    padding:18px;
}

.why-item i{
    width:55px;
    height:55px;
    font-size:20px;
}

.infrastructure-grid{
    grid-template-columns:1fr;
}

.client-logo{
    width:180px;
    height:110px;
    margin:0 12px;
}

.client-track{
    animation-duration:30s;
}

}

@media(max-width:576px){

.why-content h2{
    font-size:28px;
}

.why-item{
    gap:15px;
}

.why-item h4{
    font-size:17px;
}

.why-item p{
    font-size:13px;
}

}
/*======================================
TESTIMONIALS
======================================*/

.testimonials{
    padding:100px 0;
    background:#0B2E59;
    overflow:hidden;
}

.testimonials .section-title{
    margin-bottom:50px;
}

.testimonials .section-title h2{
    color:#fff;
}

.testimonials .section-title p{
    color:#ddd;
}

/*======================================
TESTIMONIAL SLIDER
======================================*/

.testimonial-slider{
    position:relative;
    display:flex;
    align-items:center;
}

.testimonial-wrapper{
    width:92%;
    margin:auto;
    overflow:hidden;
}

.testimonial-track{
    display:flex;
    gap:24px;
    transition:transform .5s ease;
}

.testimonial-card{
    flex:0 0 calc((100% - 48px)/3);
    max-width:calc((100% - 48px)/3);
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.testimonial-card i{
    color:#D62828;
    font-size:34px;
    margin-bottom:18px;
}

.testimonial-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.testimonial-card h4{
    color:#0B2E59;
    margin-bottom:5px;
}

.testimonial-card span{
    color:#888;
    font-size:14px;
}

/*======================================
TESTIMONIAL BUTTON
======================================*/

.testimonial-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:46px;
    height:46px;
    border:none;
    border-radius:50%;
    background:#D62828;
    color:#fff;
    cursor:pointer;
    transition:.3s;
    z-index:10;
}

.testimonial-btn:hover{
    background:#fff;
    color:#0B2E59;
}

.testimonial-btn.prev{
    left:-22px;
}

.testimonial-btn.next{
    right:-22px;
}
/*======================================
TESTIMONIAL RESPONSIVE
======================================*/

/* Tablet */
@media (max-width:992px){

    .testimonials{
        padding:80px 0;
    }

    .testimonial-card{
        flex:0 0 calc((100% - 20px)/2);
        max-width:calc((100% - 20px)/2);
        padding:22px 18px;
        min-height:220px;
    }

    .testimonial-card i{
        font-size:28px;
        margin-bottom:12px;
    }

    .testimonial-card p{
        font-size:14px;
        line-height:1.6;
        margin-bottom:15px;
    }

    .testimonial-card h4{
        font-size:17px;
    }

    .testimonial-card span{
        font-size:12px;
    }

}

/* Mobile */
@media (max-width:768px){

    .testimonials{
        padding:70px 0;
    }

    .testimonial-wrapper{
        width:100%;
        padding:0 12px;
    }

    .testimonial-track{
        gap:12px;
    }

    .testimonial-card{
        flex:0 0 90%;
        max-width:90%;
        padding:18px 15px;
        min-height:180px;
        border-radius:14px;
    }

    .testimonial-card i{
        font-size:24px;
        margin-bottom:10px;
    }

    .testimonial-card p{
        font-size:13px;
        line-height:1.5;
        margin-bottom:12px;
    }

    .testimonial-card h4{
        font-size:15px;
    }

    .testimonial-card span{
        font-size:11px;
    }

    .testimonial-btn{
        width:36px;
        height:36px;
    }

    .testimonial-btn.prev{
        left:4px;
    }

    .testimonial-btn.next{
        right:4px;
    }

}

/* Small Mobile */
@media (max-width:480px){

    .testimonial-card{
        flex:0 0 92%;
        max-width:92%;
        padding:14px;
        min-height:160px;
    }

    .testimonial-card i{
        font-size:20px;
        margin-bottom:8px;
    }

    .testimonial-card p{
        font-size:12px;
        line-height:1.45;
    }

    .testimonial-card h4{
        font-size:14px;
    }

    .testimonial-card span{
        font-size:10px;
    }

    .testimonial-btn{
        width:32px;
        height:32px;
    }

}
/*======================================
CTA
======================================*/

.cta{
    padding:90px 0;
    text-align:center;
    background:#D62828;
}

.cta h2{
    color:#fff;
    font-size:42px;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:0 auto 35px;
    color:#fff;
    line-height:1.8;
}

.cta .btn-primary{
    background:#fff;
    color:#D62828;
}

.cta .btn-primary:hover{
    background:#0B2E59;
    color:#fff;
}
/*======================================
INDUSTRY POPUP - BASE
======================================*/

.industry-popup{
    position:fixed;
    inset:0;
    width:100%;
    height:100%;
    background:rgba(7,30,61,.78);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:.45s ease;
    z-index:99999;
    padding:30px;
}

.industry-popup.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}
.industry-popup.show{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.industry-popup-content{

    width:100%;
    max-width:1150px;
    max-height:92vh;

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    display:grid;
    grid-template-columns:45% 55%;

    box-shadow:0 25px 80px rgba(0,0,0,.25);

    position:relative;

    animation:popupScale .45s ease;

}

@keyframes popupScale{

    from{

        opacity:0;
        transform:translateY(40px) scale(.95);

    }

    to{

        opacity:1;
        transform:translateY(0) scale(1);

    }

}

/*======================================
POPUP IMAGE
======================================*/

.popup-image{

    height:100%;
    overflow:hidden;
    background:#071E3D;

}

.popup-image img{

    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.5s;

}

.popup-image:hover img{

    transform:scale(1.05);

}

/*======================================
POPUP BODY
======================================*/

.popup-body{

    padding:45px;
    overflow-y:auto;
    max-height:92vh;

}

.popup-body::-webkit-scrollbar{

    width:8px;

}

.popup-body::-webkit-scrollbar-thumb{

    background:#E31E24;
    border-radius:20px;

}

.popup-body::-webkit-scrollbar-track{

    background:#f2f2f2;

}

/*======================================
CLOSE BUTTON
======================================*/

.popup-close{

    position:absolute;
    top:18px;
    right:18px;

    width:45px;
    height:45px;

    border:none;
    border-radius:50%;

    background:#E31E24;

    color:#fff;

    font-size:18px;

    cursor:pointer;

    display:flex;
    justify-content:center;
    align-items:center;

    transition:.35s;

    z-index:100;

}

.popup-close:hover{

    transform:rotate(90deg);

    background:#071E3D;

}
/*======================================
POPUP TAG
======================================*/

.popup-tag{

    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(227,30,36,.12);
    color:#E31E24;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:18px;

}

/*======================================
POPUP HEADINGS
======================================*/

.popup-body h2{

    font-size:40px;
    line-height:1.2;
    color:#071E3D;
    margin-bottom:20px;
    font-weight:700;

}

.popup-body h3{

    font-size:24px;
    color:#071E3D;
    margin:35px 0 18px;
    font-weight:700;

}

.popup-body p{

    color:#555;
    font-size:16px;
    line-height:1.9;
    margin-bottom:18px;

}

/*======================================
SERVICES LIST
======================================*/

.popup-list{

    list-style:none;
    margin:0;
    padding:0;

}

.popup-list li{

    display:flex;
    align-items:flex-start;
    gap:12px;

    margin-bottom:15px;

    color:#444;
    line-height:1.7;

}

.popup-list i{

    color:#E31E24;
    margin-top:4px;
    font-size:18px;

}

/*======================================
FEATURE GRID
======================================*/

.popup-features{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
    margin-top:25px;

}

.feature-box{

    padding:25px;
    background:#fff;
    border-radius:16px;
    border:1px solid #ececec;
    transition:.35s;

}

.feature-box:hover{

    transform:translateY(-8px);
    border-color:#E31E24;
    box-shadow:0 18px 35px rgba(0,0,0,.08);

}

.feature-box i{

    width:65px;
    height:65px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#E31E24;
    color:#fff;

    border-radius:50%;
    font-size:24px;

    margin-bottom:18px;

}

.feature-box h4{

    font-size:20px;
    color:#071E3D;
    margin-bottom:12px;

}

.feature-box p{

    margin:0;
    font-size:15px;
    line-height:1.7;

}

/*======================================
CTA
======================================*/

.popup-cta{

    margin-top:45px;
    padding:35px;
    background:#071E3D;
    border-radius:18px;
    text-align:center;

}

.popup-cta h3{

    color:#fff;
    margin-top:0;

}

.popup-cta p{

    color:#D7E4F4;
    margin-bottom:25px;

}

.popup-cta .btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:15px 35px;

    background:#E31E24;
    color:#fff;

    border-radius:8px;

    font-weight:600;

    transition:.35s;

}

.popup-cta .btn:hover{

    background:#fff;
    color:#071E3D;

}
/*======================================
TABLET
======================================*/

@media(max-width:992px){

    .industry-popup{

        padding:20px;

    }

    .industry-popup-content{

        grid-template-columns:1fr;
        max-width:700px;
        max-height:95vh;

    }

    .popup-image{

        height:300px;

    }

    .popup-body{

        padding:35px;

    }

    .popup-body h2{

        font-size:32px;

    }

}

/*======================================
MOBILE
======================================*/

@media (max-width:768px){

    .industry-popup{
        padding:10px;
    }

    .industry-popup-content{
        display:flex;
        flex-direction:column;
        width:100%;
        max-height:95vh;
        overflow-y:auto;
        overflow-x:hidden;
        border-radius:18px;
        -webkit-overflow-scrolling:touch;
    }

    .popup-image{
        height:180px;
        flex-shrink:0;
    }

    .popup-image img{
        width:100%;
        height:100%;
        object-fit:cover;
    }

    .popup-body{
        overflow:visible;
        height:auto;
        max-height:none;
        padding:20px;
        padding-bottom:35px;
    }

}
/*======================================
SMALL MOBILE
======================================*/

@media(max-width:480px){

    .popup-image{

        height:180px;

    }

    .popup-body{

        padding:20px;

    }

    .popup-tag{

        font-size:11px;
        padding:6px 14px;

    }

    .popup-body h2{

        font-size:24px;

    }

    .popup-body h3{

        font-size:19px;

    }

    .popup-body p{

        font-size:14px;
        line-height:1.8;

    }

    .feature-box{

        padding:18px;

    }

    .feature-box i{

        width:55px;
        height:55px;
        font-size:20px;

    }

    .popup-cta{

        padding:22px;

    }

    .popup-cta .btn{

        width:100%;

    }

}
/*======================================
FAQ
======================================*/

.faq{
    padding:100px 0;
    background:#f8f9fc;
}

.faq-item{
    background:#fff;
    border-radius:14px;
    margin-bottom:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.faq-item:hover{
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.faq-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:22px 25px;
}

.faq-header h3{
    flex:1;
    font-size:20px;
    font-weight:600;
    color:#0B2E59;
    line-height:1.5;
}

.faq-toggle{
    width:45px;
    height:45px;
    min-width:45px;
    border:none;
    border-radius:50%;
    background:#D62828;
    color:#fff;
    cursor:pointer;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:16px;
    transition:.3s;
}

.faq-toggle:hover{
    background:#0B2E59;
}

.faq-toggle i{
    transition:.3s;
}

.faq-content{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease,padding .35s ease;
    padding:0 25px;
}

.faq-content p{
    color:#666;
    line-height:1.8;
    font-size:16px;
}

.faq-item.active .faq-content{
    max-height:250px;
    padding:0 25px 20px;
}

.faq-item.active .faq-toggle i{
    transform:rotate(180deg);
}

/*======================================
TABLET
======================================*/

@media (max-width:992px){

    .faq{
        padding:80px 0;
    }

    .faq-header{
        padding:20px;
    }

    .faq-header h3{
        font-size:18px;
    }

    .faq-content{
        padding:0 20px;
    }

    .faq-item.active .faq-content{
        padding:0 20px 18px;
    }

}

/*======================================
MOBILE
======================================*/

@media (max-width:768px){

    .faq{
        padding:70px 0;
    }

    .faq-item{
        border-radius:12px;
        margin-bottom:16px;
    }

    .faq-header{
        padding:16px;
        gap:12px;
    }

    .faq-header h3{
        font-size:16px;
        line-height:1.5;
    }

    .faq-toggle{
        width:38px;
        height:38px;
        min-width:38px;
        font-size:14px;
    }

    .faq-content{
        padding:0 16px;
    }

    .faq-content p{
        font-size:14px;
        line-height:1.7;
    }

    .faq-item.active .faq-content{
        padding:0 16px 16px;
    }

}

/*======================================
SMALL MOBILE
======================================*/

@media (max-width:480px){

    .faq{
        padding:60px 0;
    }

    .faq-header{
        padding:14px;
    }

    .faq-header h3{
        font-size:15px;
    }

    .faq-toggle{
        width:34px;
        height:34px;
        min-width:34px;
        font-size:13px;
    }

    .faq-content{
        padding:0 14px;
    }

    .faq-content p{
        font-size:13px;
        line-height:1.6;
    }

    .faq-item.active .faq-content{
        padding:0 14px 14px;
    }

}
.faq-btn{
    text-align:center;
    margin-top:40px;
}
.more-faqs{
    display:none;
}

.more-faqs.show{
    display:block;
    animation:fadeIn .4s ease;
}

.faq-btn{
    text-align:center;
    margin-top:30px;
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
/*======================================
PREMIUM FOOTER
======================================*/

.footer{
    background:#071C36;
    color:#cfd8e3;
    padding:90px 0 25px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:45px;
    margin-bottom:50px;
}

.footer h3{
    color:#fff;
    font-size:22px;
    margin-bottom:22px;
    position:relative;
}

.footer h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-10px;
    width:55px;
    height:3px;
    background:#D62828;
}

.footer p{
    color:#bfc8d4;
    line-height:1.9;
}

.footer ul{
    padding:0;
}

.footer ul li{
    margin-bottom:12px;
}

.footer ul li a{
    color:#bfc8d4;
    transition:.3s;
}

.footer ul li a:hover{
    color:#D62828;
    padding-left:6px;
}

.footer-contact li{
    display:flex;
    gap:12px;
    align-items:flex-start;
}

.footer-contact i{
    color:#D62828;
    width:18px;
    margin-top:5px;
}

.social-icons{
    display:flex;
    gap:12px;
    margin-top:22px;
}

.social-icons a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#0B2E59;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.3s;
}

.social-icons a:hover{
    background:#D62828;
    transform:translateY(-5px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);
    padding-top:22px;
    text-align:center;
}

.footer-bottom p{
    color:#9daab8;
    font-size:14px;
}

/*======================================
RESPONSIVE
======================================*/

@media(max-width:992px){

.testimonial-card{
    flex:0 0 calc((100% - 24px)/2);
    max-width:calc((100% - 24px)/2);
}

.footer-grid{
    grid-template-columns:repeat(2,1fr);
}

}
@media (max-width:768px){

    .footer{
        padding:50px 0 18px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:28px;
        text-align:center;
    }

    .footer-logo{
    width:150px;
    margin:0 auto 12px;
}

    .footer h3{
        font-size:20px;
        margin-bottom:14px;
    }

    .footer h3::after{
        left:50%;
        transform:translateX(-50%);
        width:45px;
        bottom:-6px;
    }

    .footer p{
        max-width:280px;
        margin:0 auto;
        font-size:14px;
        line-height:1.7;
    }

    .footer ul{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:6px;
    }

    .footer ul li{
        margin:0;
    }

    .footer ul li a{
        font-size:14px;
    }

    .footer-contact li{
        justify-content:center;
        gap:8px;
        margin-bottom:6px;
    }

    .footer-contact i{
        margin-top:3px;
    }

    .social-icons{
        justify-content:center;
        gap:10px;
        margin-top:12px;
    }

    .social-icons a{
        width:36px;
        height:36px;
        font-size:15px;
    }

    .footer-bottom{
        margin-top:18px;
        padding-top:14px;
    }

}

@media (max-width:480px){

    .footer{
        padding:45px 0 16px;
    }

    .footer-logo{
    width:135px;
    margin:0 auto 10px;
}

    .footer h3{
        font-size:18px;
    }

    .footer p,
    .footer li,
    .footer a{
        font-size:13px;
        line-height:1.6;
    }

    .social-icons{
        gap:8px;
    }

    .social-icons a{
        width:32px;
        height:32px;
        font-size:14px;
    }

    .footer-contact{
        display:flex;
        flex-direction:column;
        align-items:center;
    }

}