/* ==========================================
   GOOGLE FONT
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   ROOT VARIABLES
========================================== */
:root{
    --primary:#0057D9;
    --secondary:#0A2540;
    --accent:#00B4D8;
    --light:#F5F8FC;
    --dark:#16213E;
    --white:#ffffff;
    --gray:#6c757d;
    --shadow:0 15px 40px rgba(0,0,0,.12);
    --radius:14px;
    --transition:.35s;
}
/* ==========================================
   RESET
========================================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}
body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#333;
}

img{

    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

section{
    padding:90px 0;
}

/* ===================================
   NAVBAR
=================================== */

.custom-navbar{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    padding:18px 0;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    transition:.45s ease;
}

.custom-navbar.scrolled{
    background:#ffffff;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    padding:12px 0;
}

/* Logo */

.logo{
    width:60px;
    height:60px;
    object-fit:contain;
}

.navbar-brand h4{
    font-size:20px;
    font-weight:700;
    color:#fff;
    margin:0;
    transition:.4s;
}

.navbar-brand span{
    color:#ddd;
    font-size:11px;
    letter-spacing:2px;
    text-transform:uppercase;
}

/* Change colors after scrolling */

.custom-navbar.scrolled .navbar-brand h4{
    color:#0A2540;
}

.custom-navbar.scrolled .navbar-brand span{
    color:#666;
}

.navbar-nav .nav-link{
    color:#fff !important;
    font-weight:600;
    margin-left:20px;
    position:relative;
    transition:.3s;
}

.custom-navbar.scrolled .nav-link{
    color:#222 !important;
}

/* Underline Animation */
.nav-link::after{
    content:"";
    position:absolute;
    width:0;
    height:2px;
    left:0;
    bottom:-6px;
    background:#00B4D8;
    transition:.35s;
}

.nav-link:hover::after{
    width:100%;
}

.nav-link:hover{
    color:#00B4D8 !important;
}

.navbar-toggler{
    border:none;
}

.navbar-toggler:focus{
    box-shadow:none;
}
/* ==========================================
   BUTTON
========================================== */

.btn-primary{
    border-radius:50px;
    padding:12px 30px;
    background:#0057D9;
    border:none;
    font-weight:600;
    transition:.35s;
}

.btn-primary:hover{
    background:#003f9c;
    transform:translateY(-3px);
    box-shadow:0 15px 25px rgba(0,87,217,.25);
}

/* ==========================================
   HERO
========================================== */
.hero h1{

    font-size:64px;
    font-weight:800;
    margin-bottom:20px;

}

.hero p{

    font-size:20px;
    max-width:650px;
    margin-bottom:35px;

}

/* ===========================
   HERO SLIDER
=========================== */

.carousel-item{
    height:100vh;
}

.hero-image{
    width:100%;
    height:100vh;
    object-fit:cover;
}


/* Hero Slider Overlay Only */

#heroSlider .carousel-item::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,.55);

    z-index:1;

}

#heroSlider .carousel-caption{

    bottom:25%;

    text-align:left;

    z-index:2;

}

/* ==========================================
   SECTION TITLE
========================================== */

.section-title{

    text-align:center;
    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;
    font-weight:700;
    color:var(--secondary);

}

.section-title p{

    color:#777;

}

/* ==========================================
   CARDS
========================================== */

.card{

    border:none;
    border-radius:var(--radius);
    box-shadow:var(--shadow);
    transition:.4s;
    overflow:hidden;

}

.card:hover{

    transform:translateY(-10px);

}

.card-body{

    padding:35px;

}

/* ==========================================
   SERVICES
========================================== */

.service-icon{

    width:80px;
    height:80px;
    background:#EAF2FF;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:34px;
    color:var(--primary);

    margin-bottom:25px;

}

/* ==========================================
   STATISTICS
========================================== */

.counter{

    background:var(--primary);
    color:white;
    text-align:center;
    padding:40px;
    border-radius:12px;

}

.counter h2{

    font-size:50px;
    font-weight:700;

}

/* ==========================================
   GALLERY
========================================== */

.gallery img{

    border-radius:14px;
    transition:.4s;

}

.gallery img:hover{

    transform:scale(1.05);

}

/* ==========================================
   MANAGEMENT
========================================== */

.team-card img{

    height:320px;
    object-fit:cover;

}

.team-card{

    overflow:hidden;

}

/* ==========================================
   CONTACT
========================================== */

.contact-box{

    background:#fff;
    border-radius:15px;
    box-shadow:var(--shadow);
    padding:40px;

}

/* ==========================================
   FOOTER
========================================== */

.footer{

    background:#0A2540;
    color:white;
    padding:70px 0;

}

.footer h4{

    margin-bottom:20px;

}

.footer ul{

    list-style:none;
    padding:0;

}

.footer li{

    margin-bottom:12px;

}

.footer a{

    color:#ddd;

}

.footer a:hover{

    color:white;

}

/* ==========================================
   ANIMATION
========================================== */

.fade-up{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

0%{

opacity:0;
transform:translateY(40px);

}

100%{

opacity:1;
transform:translateY(0);

}

}

/* ===================================
   ABOUT SECTION
=================================== */

.about-section{
    padding:100px 0;
    background:#fff;
}

.section-subtitle{
    color:#0d6efd;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.about-content h2{
    font-size:46px;
    font-weight:700;
    margin:20px 0;
    color:#0A2540;
}

.about-content p{
    color:#666;
    line-height:1.9;
}

.about-image{
    position:relative;
}

.about-image img{
    border-radius:18px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.experience-box{
    position:absolute;
    bottom:30px;
    right:-30px;
    background:#0057D9;
    color:white;
    padding:25px;
    border-radius:16px;
    text-align:center;
    box-shadow:0 15px 30px rgba(0,0,0,.2);
}

.experience-box h2{
    font-size:42px;
    font-weight:700;
}

.feature-item{
    display:flex;
    align-items:center;
    margin-bottom:20px;
}

.feature-item i{
    color:#0d6efd;
    font-size:22px;
    margin-right:12px;
}

.feature-item span{
    font-weight:600;
}

.about-image img{
    transition:.5s;
}

.about-image img:hover{
    transform:scale(1.03);
}

/*==========================================
    SERVICES
==========================================*/

.services-section{
    padding:100px 0;
    background:#f8fbff;
}

.service-card{
    background:#fff;
    border-radius:18px;
    padding:45px 35px;
    transition:.4s;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    height:100%;
    position:relative;
    overflow:hidden;
}

.service-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:0;
    height:5px;
    background:#0d6efd;
    transition:.4s;
}

.service-card:hover::before{
    width:100%;
}

.service-card:hover{
    transform:translateY(-12px);
}

.service-card h3{
    margin:25px 0 15px;
    font-size:26px;
    color:#0A2540;
}

.service-card p{
    color:#666;
    line-height:1.8;
}

.service-icon{
    width:80px;
    height:80px;
    background:#EAF2FF;
    color:#0d6efd;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    transition:.4s;
}

.service-card:hover .service-icon{
    background:#0d6efd;
    color:#fff;
    transform:rotate(360deg);
}

.service-link{
    margin-top:25px;
    display:inline-block;
    color:#0d6efd;
    font-weight:600;
}

.service-link i{
    margin-left:8px;
    transition:.3s;
}

.service-link:hover i{
    transform:translateX(6px);
}

/*==========================================
    STATISTICS
==========================================*/

.stats-section{
    background:url("../images/stats-bg.jpg");
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

.stats-section .overlay{
    background:rgba(0,51,102,.82);
    padding:120px 0;
}

.stat-box{
    color:#fff;
    transition:.4s;
}

.stat-box:hover{
    transform:translateY(-10px);
}

.stat-box i{
    font-size:55px;
    margin-bottom:25px;
    color:#00C2FF;
}

.stat-box h2{
    font-size:56px;
    font-weight:700;
    margin-bottom:10px;
}

.stat-box p{
    font-size:18px;
    letter-spacing:1px;
}

/*==========================================
    PROJECTS
==========================================*/

.projects-section{
    padding:110px 0;
    background:#ffffff;
}

.project-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    transition:.4s;
}

.project-card:hover{
    transform:translateY(-10px);
     box-shadow:0 30px 60px rgba(0,0,0,.18);
}

.project-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.8s;
}

.project-card:hover img{
    transform:scale(1.15);
}

.project-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:35px;
    background:linear-gradient(
        to top,
        rgba(0,40,90,.96),
        rgba(0,40,90,.15)
    );
    opacity:0;
    transition:.4s;
}

.project-overlay>*{
    transform:translateY(40px);
    opacity:0;
    transition:.5s;
}

.project-card:hover .project-overlay{
    opacity:1;
}

.project-card:hover .project-overlay>*{
    transform:translateY(0);
    opacity:1;
}

.project-overlay span{
    color:#67d3ff;
    text-transform:uppercase;
    font-size:13px;
    letter-spacing:2px;
}

.project-overlay h4{
    color:#fff;
    font-size:28px;
    margin:10px 0 20px;
}

/*=========================================
    PROJECT BADGE
=========================================*/

.project-badge{
    display:inline-block;
    width:max-content;
    padding:8px 18px;
    border-radius:50px;
    background:#0d6efd;
    color:#fff;
    font-size:12px;
    letter-spacing:1px;
    text-transform:uppercase;
    font-weight:600;
    margin-bottom:20px;
}

.project-info{
    display:flex;
    gap:20px;
    color:#ddd;
    margin-bottom:18px;
    font-size:14px;
}

.project-info i{
    color:#66d9ff;
    margin-right:6px;
}

.project-overlay p{
    color:#eee;
    margin:15px 0 25px;
    line-height:1.8;
}


.project-icon{
    position:absolute;
    top:20px;
    right:20px;
    width:55px;
    height:55px;
    background:rgba(255,255,255,.9);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#0057D9;
    z-index:10;
    transition:.4s;
}

.project-card:hover .project-icon{
    transform:rotate(45deg);
    background:#0057D9;
    color:#fff;
}

/*==========================================
    WHY CHOOSE US
==========================================*/

.why-us-section{

    padding:120px 0;

    background:#ffffff;

}

.why-image{

    position:relative;

}

.why-image img{

    border-radius:22px;

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.floating-box{

    position:absolute;

    bottom:35px;

    left:-35px;

    background:#0057D9;

    color:#fff;

    padding:28px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 20px 40px rgba(0,0,0,.20);

}

.floating-box h2{

    font-size:48px;

    margin-bottom:5px;

    font-weight:700;

}

.choose-card{

    background:#fff;

    padding:28px;

    border-radius:16px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.choose-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.choose-card i{

    width:70px;

    height:70px;

    background:#EAF2FF;

    color:#0d6efd;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    margin-bottom:20px;

    transition:.35s;

}

.choose-card:hover i{

    background:#0d6efd;

    color:#fff;

    transform:rotate(360deg);

}

.choose-card h5{

    font-weight:700;

    color:#0A2540;

    margin-bottom:12px;

}

.choose-card p{

    color:#666;

    line-height:1.8;

}



/*=========================================
        PAGE HEADER
==========================================*/

.page-header{

    position:relative;

    height:480px;

    background:url("../images/about-banner.jpg") center center/cover no-repeat;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

}

.page-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,35,80,.80),
        rgba(0,35,80,.60)
    );

}

.page-header-content{

    position:relative;

    z-index:2;

    text-align:center;

    color:#fff;

}

.page-subtitle{

    display:inline-block;

    padding:8px 20px;

    background:rgba(255,255,255,.12);

    border:1px solid rgba(255,255,255,.25);

    border-radius:50px;

    letter-spacing:2px;

    font-size:13px;

    margin-bottom:20px;

    text-transform:uppercase;

}

.page-header h1{

    font-size:64px;

    font-weight:700;

    margin-bottom:20px;

}

.page-header p{

    font-size:20px;

    opacity:.9;

    max-width:650px;

    margin:auto;

}

.breadcrumb-nav{

    margin-top:35px;

}

.breadcrumb-nav a{

    color:#fff;

    text-decoration:none;

}

.breadcrumb-nav span{

    color:#ddd;

    margin:0 10px;

}

/*=========================================
        COMPANY INTRODUCTION
==========================================*/

.company-intro{

    padding:120px 0;

    background:#fff;

}

.company-image{

    position:relative;

}

.company-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

}

.experience-box{

    position:absolute;

    bottom:30px;

    left:-35px;

    background:#0057D9;

    color:#fff;

    padding:30px;

    width:220px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 20px 45px rgba(0,0,0,.20);

}

.experience-box h2{

    font-size:48px;

    margin-bottom:5px;

    font-weight:700;

}

.experience-box p{

    margin:0;

    font-size:15px;

    line-height:1.5;

}

.about-feature{

    display:flex;

    align-items:flex-start;

    gap:18px;

}

.about-feature i{

    width:60px;

    height:60px;

    background:#EAF2FF;

    color:#0057D9;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    flex-shrink:0;

    transition:.35s;

}

.about-feature:hover i{

    background:#0057D9;

    color:#fff;

    transform:rotate(360deg);

}

.about-feature h5{

    margin-bottom:8px;

    font-weight:600;

    color:#0A2540;

}

.about-feature p{

    margin:0;

    color:#666;

    line-height:1.7;

}

/*=========================================
        MISSION VISION VALUES
==========================================*/

.mvv-section{

    padding:120px 0;

    background:#f7f9fc;

}

.mvv-card{

    background:#fff;

    border-radius:22px;

    padding:45px 35px;

    height:100%;

    text-align:center;

    transition:.4s;

    position:relative;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.mvv-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:#0057D9;

    transform:scaleX(0);

    transition:.4s;

    transform-origin:left;

}

.mvv-card:hover::before{

    transform:scaleX(1);

}

.mvv-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.mvv-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:30px;

    border-radius:50%;

    background:#EAF2FF;

    color:#0057D9;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:38px;

    transition:.4s;

}

.mvv-card:hover .mvv-icon{

    background:#0057D9;

    color:#fff;

    transform:rotate(360deg);

}

.mvv-card h3{

    color:#0A2540;

    margin-bottom:20px;

    font-weight:700;

}

.mvv-card p{

    color:#666;

    line-height:1.9;

}

.mvv-card ul{

    list-style:none;

    padding:0;

    margin-top:20px;

}

.mvv-card ul li{

    margin:14px 0;

    color:#555;

    position:relative;

    padding-left:30px;

    text-align:left;

}

.mvv-card ul li::before{

    content:"\f00c";

    font-family:"Font Awesome 6 Free";

    font-weight:900;

    position:absolute;

    left:0;

    top:2px;

    color:#0057D9;

    font-size:14px;

}

.shape{

    position:absolute;

    border-radius:50%;

    filter:blur(80px);

    opacity: 0.30;

    z-index:0;

}

.shape1{

    width:250px;

    height:250px;

    background:#0057D9;

    top:40px;

    left:-100px;

}

.shape2{

    width:300px;

    height:300px;

    background:#00B4FF;

    bottom:-120px;

    right:-100px;

}

.mvv-section{

    position:relative;

    overflow:hidden;

}

.mvv-section .container{

    position:relative;

    z-index:2;

}


/*==========================================
        COMPANY TIMELINE
==========================================*/

.timeline-section{

    padding:120px 0;

    background:#fff;

}

.timeline{

    position:relative;

    max-width:1200px;

    margin:auto;

}

.timeline::before{

    content:"";

    position:absolute;

    left:50%;

    top:0;

    width:4px;

    height:100%;

    background:#0057D9;

    transform:translateX(-50%);

}

.timeline-item{

    position:relative;

    width:50%;

    padding:20px 40px;

}

.timeline-item.left{

    left:0;

}

.timeline-item.right{

    left:50%;

}

.timeline-content{

    background:#fff;

    padding:30px;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

    position:relative;

}

.timeline-content:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.timeline-year{

    display:inline-block;

    background:#0057D9;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    margin-bottom:15px;

}

.timeline-content h4{

    color:#0A2540;

    margin-bottom:12px;

}

.timeline-content p{

    color:#666;

    line-height:1.8;

}

/* Timeline Dots */

.timeline-item::before{

    content:"";

    position:absolute;

    top:45px;

    width:22px;

    height:22px;

    border-radius:50%;

    background:#0057D9;

    border:5px solid #fff;

    box-shadow:0 0 0 4px rgba(0,87,217,.25);

    z-index:2;

}

.timeline-item.left::before{

    right:-14px;

}

.timeline-item.right::before{

    left:-14px;

}

/* Mobile */

@media(max-width:991px){

.timeline::before{

left:25px;

}

.timeline-item{

width:100%;

padding-left:70px;

padding-right:20px;

left:0 !important;

}

.timeline-item::before{

    content:"✓";

    position:absolute;

    top:45px;

    width:28px;

    height:28px;

    border-radius:50%;

    background:#0057D9;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:14px;

    font-weight:700;

    border:4px solid #fff;

    box-shadow:0 0 0 4px rgba(0,87,217,.25);

    z-index:2;

}

/*==========================================
        LEADERSHIP TEAM
==========================================*/

.leadership-section{

    padding:120px 0;

    background:#f7f9fc;

}

.leader-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    text-align:center;

    transition:.4s;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    height:100%;

}

.leader-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.leader-image{

    overflow:hidden;

}

.leader-image img{

    width:100%;

    height:360px;

    object-fit:cover;

    transition:.5s;

}

.leader-card:hover img{

    transform:scale(1.08);

}

.leader-content{

    padding:35px 30px;

}

.leader-content h4{

    color:#0A2540;

    margin-bottom:8px;

    font-weight:700;

}

.leader-content span{

    display:block;

    color:#0057D9;

    font-weight:600;

    margin-bottom:20px;

}

.leader-content p{

    color:#666;

    line-height:1.8;

}

.leader-social{

    margin-top:25px;

}

.leader-social a{

    width:42px;

    height:42px;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#EAF2FF;

    color:#0057D9;

    margin:0 6px;

    text-decoration:none;

    transition:.35s;

}

.leader-social a:hover{

    background:#0057D9;

    color:#fff;

    transform:translateY(-5px);

}

}


/*==========================================
        COMPANY STATISTICS
==========================================*/

.stats-section{

    padding:120px 0;

    background:#ffffff;

}

.stat-card{

    background:#fff;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.stat-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.stat-card i{

    font-size:46px;

    color:#0057D9;

    margin-bottom:20px;

    transition:.35s;

}

.stat-card:hover i{

    transform:scale(1.15) rotate(8deg);

}

.stat-card h2{

    font-size:48px;

    color:#0A2540;

    font-weight:700;

    margin-bottom:10px;

}

.stat-card p{

    color:#666;

    font-size:17px;

    margin:0;

}

/*==========================================
        ABOUT CTA
==========================================*/

.about-cta{

    position:relative;

    padding:140px 0;

    background:url("../images/cta-bg.jpg")
               center center/cover no-repeat;

    overflow:hidden;

}

.cta-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(0,35,80,.90),
        rgba(0,87,217,.75)
    );

}

.about-cta .container{

    position:relative;

    z-index:2;

}

.about-cta h2{

    color:#fff;

    font-size:52px;

    font-weight:700;

    margin:25px 0;

}

.about-cta p{

    color:rgba(255,255,255,.88);

    font-size:18px;

    line-height:1.9;

    max-width:760px;

    margin:auto;

}

.cta-buttons{

    margin-top:45px;

}

.cta-buttons .btn{

    padding:16px 38px;

    border-radius:50px;

    margin:10px;

    font-weight:600;

    transition:.35s;

}

.cta-buttons .btn-light{

    color:#0057D9;

}

.cta-buttons .btn-light:hover{

    transform:translateY(-5px);

}

.cta-buttons .btn-outline-light:hover{

    background:#fff;

    color:#0057D9;

    transform:translateY(-5px);

}

.cta-info{

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;

    margin-bottom:45px;

}

.info-box{

    display:flex;

    align-items:center;

    gap:18px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    padding:18px 28px;

    border-radius:16px;

    color:#fff;

    border:1px solid rgba(255,255,255,.15);

}

.info-box i{

    font-size:28px;

    color:#FFD54A;

}

.info-box h5{

    margin:0;

    font-size:18px;

}

.info-box small{

    display:block;

    color:#ddd;

}

/*==========================================
        GALLERY
==========================================*/
.gallery-header{

    position:relative;

    height:480px;

    background:url("../images/gallery-banner.jpg") center center/cover no-repeat;

    display:flex;

    justify-content:center;

    align-items:center;

}

.gallery-header::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,35,80,.65);

}

.gallery-header .container{

    position:relative;

    z-index:2;

}

/*==========================================
        GALLERY FILTER
==========================================*/

.gallery-filter-section{

    padding:90px 0 40px;

    background:#fff;

}

.gallery-filter{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

    margin-top:50px;

}

.gallery-filter button{

    border:none;

    background:#F4F7FB;

    color:#444;

    padding:14px 30px;

    border-radius:40px;

    font-weight:600;

    transition:.35s;

    cursor:pointer;

}

.gallery-filter button:hover{

    background:#0057D9;

    color:#fff;

    transform:translateY(-3px);

}

.gallery-filter button.active{

    background:#0057D9;

    color:#fff;

    box-shadow:0 10px 25px rgba(0,87,217,.30);

}

/*==========================================
        PORTFOLIO
==========================================*/

.portfolio-section{

    padding:40px 0 120px;

    background:#fff;

}

.portfolio-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    grid-auto-rows:260px;

    gap:25px;

}

.portfolio-item{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    cursor:pointer;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.portfolio-item.large{

    grid-row:span 2;

}

.portfolio-item.wide{

    grid-column:span 2;

}

.portfolio-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.portfolio-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
    rgba(0,0,0,.82),
    rgba(0,0,0,.10));

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:30px;

    color:#fff;

    opacity:0;

    transition:.4s;

}

.portfolio-overlay span{

    color:#6EB6FF;

    font-weight:600;

    margin-bottom:8px;

}

.portfolio-overlay h4{

    margin:0;

    font-size:24px;

    font-weight:700;

}

.portfolio-item:hover img{

    transform:scale(1.12);

}

.portfolio-item:hover .portfolio-overlay{

    opacity:1;

}

.portfolio-item:hover{

    transform:translateY(-8px);

    transition:.35s;

}

@media(max-width:992px){

.portfolio-grid{

grid-template-columns:repeat(2,1fr);

}

.large{

grid-row:span 1;

}

}

@media(max-width:768px){

.portfolio-grid{

grid-template-columns:1fr;

}

.wide{

grid-column:span 1;

}

}

/*=============================
    FILTER EFFECT
==============================*/

.portfolio-item{

    opacity:1;

    transform:scale(1);

    transition:
        opacity .45s ease,
        transform .45s ease,
        visibility .45s ease;

}

.portfolio-item.hidden{

    display:none;

}

/*==========================================
        FILTER ANIMATION
==========================================*/

.portfolio-item{

    transition:.45s ease;

}

.portfolio-item.hide{

    opacity:0;

    transform:scale(.8);

    pointer-events:none;

    position:absolute;

}

.portfolio-item.show{

    opacity:1;

    transform:scale(1);

    position:relative;

}

/*==========================================
        LIGHTBOX
==========================================*/

.lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.92);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:9999;

}

.lightbox.active{

    display:flex;

}

.lightbox-image{

    max-width:85%;

    max-height:80vh;

    border-radius:15px;

    box-shadow:0 20px 60px rgba(0,0,0,.4);

}

.close-lightbox{

    position:absolute;

    top:30px;

    right:40px;

    font-size:45px;

    color:#fff;

    cursor:pointer;

}

.lightbox-prev,
.lightbox-next{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    border:none;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#ffffff20;

    color:#fff;

    font-size:22px;

    cursor:pointer;

    transition:.3s;

}

.lightbox-prev:hover,
.lightbox-next:hover{

    background:#0057D9;

}

.lightbox-prev{

    left:40px;

}

.lightbox-next{

    right:40px;

}

.lightbox-caption{

    position:absolute;

    bottom:40px;

    color:#fff;

    text-align:center;

}

.lightbox-caption h3{

    margin:0;

}

/*==========================================
        GALLERY STATISTICS
==========================================*/

.gallery-stats{

    padding:100px 0;

    background:#0A2540;

}

.stats-card{

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:40px 25px;

    transition:.35s;

    backdrop-filter:blur(10px);

}

.stats-card:hover{

    transform:translateY(-10px);

    background:#0057D9;

}

.stats-card i{

    font-size:42px;

    color:#FFD54A;

    margin-bottom:20px;

}

.stats-card h2{

    color:#fff;

    font-size:48px;

    font-weight:700;

    margin-bottom:10px;

}

.stats-card p{

    color:#ddd;

    margin:0;

    font-size:17px;

}

/*==========================================
        CLIENTS SECTION
==========================================*/

.clients-section{

    padding:110px 0;

    background:#f8fafc;

    overflow:hidden;

}

.clients-slider{

    margin-top:60px;

    overflow:hidden;

    position:relative;

}

.clients-track{

    display:flex;

    width:max-content;

    animation:scrollClients 30s linear infinite;

}

.client-card{

    width:220px;

    height:120px;

    background:#fff;

    border-radius:18px;

    margin:0 15px;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.client-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.client-card img{

    max-width:140px;

    max-height:70px;

    filter:grayscale(100%);

    transition:.35s;

}

.client-card:hover img{

    filter:grayscale(0);

    transform:scale(1.08);

}

@keyframes scrollClients{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

/*==========================================
        GALLERY CTA
==========================================*/

.gallery-cta{

    position:relative;

    padding:140px 0;

    background:url("../images/cta-bg.jpg")
    center center/cover no-repeat;

    overflow:hidden;

}

.gallery-cta .cta-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(4,25,55,.90),
        rgba(0,87,217,.70)
    );

}

.gallery-cta .container{

    position:relative;

    z-index:2;

}

.gallery-cta h2{

    color:#fff;

    font-size:52px;

    font-weight:700;

    margin:25px 0;

}

.gallery-cta p{

    color:#e8eef6;

    font-size:18px;

    line-height:1.9;

    max-width:760px;

    margin:auto;

}

.cta-contact{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

    margin:50px 0;

}

.contact-box{

    display:flex;

    align-items:center;

    gap:18px;

    padding:18px 30px;

    border-radius:18px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.15);

    transition:.35s;

}

.contact-box:hover{

    transform:translateY(-6px);

    background:rgba(255,255,255,.18);

}

.contact-box i{

    width:60px;

    height:60px;

    border-radius:50%;

    background:#FFD54A;

    color:#003366;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

}

.contact-box h5{

    color:#fff;

    margin:0;

    font-size:18px;

}

.contact-box small{

    color:#ddd;

}

.cta-buttons{

    margin-top:40px;

}

.cta-buttons .btn{

    margin:10px;

    padding:16px 38px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.cta-buttons .btn-light{

    color:#0057D9;

}

.cta-buttons .btn-light:hover{

    transform:translateY(-5px);

}

.cta-buttons .btn-outline-light:hover{

    background:#fff;

    color:#0057D9;

    transform:translateY(-5px);

}

@media(max-width:768px){

.gallery-cta h2{

font-size:36px;

}

.contact-box{

width:100%;

justify-content:center;

}

}

/*==========================================
        MANAGEMENT HEADER
==========================================*/

.management-header{

    position:relative;

    height:500px;

    background:url("../images/management-banner.jpg")
    center center/cover no-repeat;

    display:flex;

    align-items:flex-end;

    justify-content:center;
    padding-bottom:80px;
    padding-top:120px;

}

.management-header::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(5,28,55,.88),
        rgba(0,87,217,.55)
    );

}

.management-header .container{

    position:relative;

    z-index:2;

}

.page-content{

    text-align:center;

    color:#fff;

}

.page-content h1{

    font-size:62px;

    font-weight:700;

    margin:25px 0;

}

.page-content p{

    max-width:720px;

    margin:auto;

    font-size:19px;

    line-height:1.9;

}

.breadcrumb{

    margin-top:35px;

}

.breadcrumb a{

    color:#FFD54A;

    text-decoration:none;

}

.breadcrumb span{

    margin:0 12px;

    color:#fff;

}

/*==========================================
        LEADERSHIP INTRODUCTION
==========================================*/

.leadership-intro{

    padding:100px 0;

    background:#fff;

}

.leadership-image{

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.leadership-image img{

    width:100%;

    transition:.5s;

}

.leadership-image:hover img{

    transform:scale(1.05);

}

.leadership-intro h2{

    font-size:46px;

    font-weight:700;

    margin:20px 0;

    color:#0A2540;

}

.leadership-intro p{

    color:#666;

    line-height:1.9;

    margin-bottom:20px;

}

.leadership-stats{

    display:flex;

    gap:20px;

    margin-top:35px;

    flex-wrap:wrap;

}

.mini-card{

    flex:1;

    min-width:140px;

    background:#f8f9fc;

    border-radius:15px;

    padding:25px;

    text-align:center;

    transition:.35s;

}

.mini-card:hover{

    background:#0057D9;

    color:#fff;

    transform:translateY(-8px);

}

.mini-card h3{

    font-size:34px;

    margin-bottom:10px;

    color:#0057D9;

}

.mini-card:hover h3{

    color:#fff;

}

.mini-card span{

    font-size:15px;

    font-weight:500;

}

/*==========================================
        LEADERSHIP TEAM
==========================================*/

.leadership-team{

    padding:100px 0;

    background:#f8fafc;

}

.leader-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

}

.leader-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.leader-image{

    position:relative;

    overflow:hidden;

}

.leader-image img{

    width:100%;

    height:380px;

    object-fit:cover;

    transition:.5s;

}

.leader-card:hover .leader-image img{

    transform:scale(1.08);

}

.leader-social{

    position:absolute;

    left:50%;

    bottom:-60px;

    transform:translateX(-50%);

    display:flex;

    gap:12px;

    transition:.4s;

}

.leader-card:hover .leader-social{

    bottom:20px;

}

.leader-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#0057D9;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

}

.leader-info{

    padding:30px;

    text-align:center;

}

.leader-info h4{

    margin-bottom:8px;

    color:#0A2540;

    font-weight:700;

}

.leader-info span{

    color:#0057D9;

    font-weight:600;

    display:block;

    margin-bottom:15px;

}

.leader-info p{

    color:#666;

    line-height:1.8;

}

/*==========================================
        ORGANIZATION CHART
==========================================*/

.organization-section{

    padding:110px 0;

    background:#fff;

}

.org-chart{

    margin-top:70px;

    text-align:center;

}

.org-row{

    display:flex;

    justify-content:center;

    gap:35px;

    flex-wrap:wrap;

}

.vertical-line{

    width:3px;

    height:60px;

    background:#0057D9;

    margin:0 auto;

}

.org-card{

    background:#fff;

    width:250px;

    padding:30px;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    border-top:5px solid #0057D9;

}

.org-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(0,0,0,.15);

}

.org-card.small{

    width:190px;

    padding:25px;

}

.org-card i{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#0057D9;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 20px;

    font-size:28px;

}

.org-card h4{

    margin-bottom:8px;

    color:#0A2540;

    font-weight:700;

}

.org-card h5{

    margin:0;

    color:#0A2540;

    font-size:18px;

}

.org-card span{

    color:#666;

    font-size:15px;

}

.ceo{

    background:#0057D9;

    color:#fff;

}

.ceo h4,

.ceo span{

    color:#fff;

}

.ceo i{

    background:#FFD54A;

    color:#0A2540;

}

@media(max-width:992px){

.org-row{

flex-direction:column;

align-items:center;

}

.vertical-line{

display:none;

}

}

/*==========================================
        LEADERSHIP PHILOSOPHY
==========================================*/

.leadership-philosophy{

    padding:110px 0;

    background:#f8fafc;

}

.timeline{

    position:relative;

    max-width:1100px;

    margin:80px auto 0;

}

.timeline::before{

    content:"";

    position:absolute;

    left:50%;

    top:0;

    width:4px;

    height:100%;

    background:#0057D9;

    transform:translateX(-50%);

}

.timeline-item{

    width:50%;

    position:relative;

    padding:25px 40px;

}

.timeline-item.left{

    left:0;

    text-align:right;

}

.timeline-item.right{

    left:50%;

}

.timeline-content{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.timeline-content:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.timeline-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#0057D9;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:26px;

    margin-bottom:20px;

}

.timeline-item.left .timeline-icon{

    margin-left:auto;

}

.timeline-content h4{

    color:#0A2540;

    font-weight:700;

    margin-bottom:15px;

}

.timeline-content p{

    color:#666;

    line-height:1.8;

}

@media(max-width:991px){

.timeline::before{

left:25px;

}

.timeline-item{

width:100%;

left:0!important;

padding-left:70px;

padding-right:20px;

text-align:left;

}

.timeline-item.left .timeline-icon{

margin-left:0;

}

}

/*==========================================
        WHY MANAGEMENT
==========================================*/

.why-management{

    padding:110px 0;

    background:#ffffff;

}

.choose-card{

    background:#fff;

    padding:45px 35px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

    border-top:4px solid transparent;

}

.choose-card:hover{

    transform:translateY(-12px);

    border-color:#0057D9;

    box-shadow:0 25px 55px rgba(0,0,0,.15);

}

.choose-icon{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#0057D9;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 auto 25px;

    font-size:34px;

    transition:.35s;

}

.choose-card:hover .choose-icon{

    background:#FFD54A;

    color:#0A2540;

    transform:rotate(8deg) scale(1.1);

}

.choose-card h4{

    color:#0A2540;

    font-weight:700;

    margin-bottom:18px;

}

.choose-card p{

    color:#666;

    line-height:1.8;

    margin:0;

}

/*==========================================
        MANAGEMENT CTA
==========================================*/

.management-cta{

    position:relative;

    padding:120px 0;

    background:url("../images/management-cta.jpg") center center/cover no-repeat;

    overflow:hidden;

}

.management-cta .cta-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(7,32,63,.92),
        rgba(0,87,217,.80)
    );

}

.management-cta .container{

    position:relative;

    z-index:2;

}

.management-cta h2{

    color:#fff;

    font-size:52px;

    font-weight:700;

    margin:25px 0;

}

.management-cta p{

    color:#f1f5f9;

    font-size:18px;

    line-height:1.8;

    max-width:760px;

    margin:auto;

}

.cta-features{

    display:flex;

    justify-content:center;

    gap:40px;

    flex-wrap:wrap;

    margin:45px 0;

}

.feature{

    display:flex;

    align-items:center;

    gap:10px;

    color:#fff;

    font-weight:600;

    font-size:17px;

}

.feature i{

    color:#FFD54A;

    font-size:20px;

}

.management-cta .btn{

    margin:10px;

    padding:16px 36px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.management-cta .btn-primary{

    background:#FFD54A;

    border:none;

    color:#0A2540;

}

.management-cta .btn-primary:hover{

    background:#ffffff;

    color:#0057D9;

    transform:translateY(-5px);

}

.management-cta .btn-outline-light:hover{

    background:#fff;

    color:#0057D9;

    transform:translateY(-5px);

}

@media(max-width:768px){

.management-cta{

padding:90px 0;

}

.management-cta h2{

font-size:36px;

}

.cta-features{

flex-direction:column;

gap:20px;

}

}

/*==========================================
        CONTACT HEADER
==========================================*/

.contact-header{

    position:relative;

    min-height:650px;

    background:url("../images/contact-banner.jpg")
    center center/cover no-repeat;

    display:flex;

    align-items:flex-end;

    justify-content:center;

    padding-top:120px;

    padding-bottom:80px;

}

.contact-header::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(6,30,58,.88),
        rgba(0,87,217,.55)
    );

}

.contact-header .container{

    position:relative;

    z-index:2;

}

.contact-header .page-content{

    max-width:700px;

    color:#fff;

}

.contact-header .page-content h1{

    font-size:64px;

    font-weight:700;

    margin:20px 0;

}

.contact-header .page-content p{

    font-size:18px;

    line-height:1.9;

    color:#f1f5f9;

}

.contact-header .breadcrumb{

    margin-top:35px;

}

.contact-header .breadcrumb a{

    color:#FFD54A;

    text-decoration:none;

    font-weight:600;

}

.contact-header .breadcrumb span{

    margin:0 10px;

    color:#fff;

}

@media(max-width:768px){

.contact-header{

    min-height:500px;

    padding-top:100px;

    padding-bottom:60px;

}

.contact-header .page-content{

    text-align:center;

}

.contact-header .page-content h1{

    font-size:42px;

}

.contact-header .page-content p{

    font-size:16px;

}

}

/*==========================================
        CONTACT INFO
==========================================*/

.contact-info-section{

    padding:100px 0;

    background:#f8fafc;

}

.contact-card{

    background:#fff;

    border-radius:20px;

    padding:45px 30px;

    text-align:center;

    height:100%;

    transition:.4s;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    border-top:4px solid transparent;

}

.contact-card:hover{

    transform:translateY(-12px);

    border-top:4px solid #0057D9;

    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.contact-icon{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#0057D9;

    margin:0 auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.4s;

}

.contact-card:hover .contact-icon{

    background:#FFD54A;

    transform:rotate(10deg) scale(1.1);

}

.contact-icon i{

    color:#fff;

    font-size:34px;

}

.contact-card:hover .contact-icon i{

    color:#0A2540;

}

.contact-card h4{

    font-size:22px;

    font-weight:700;

    margin-bottom:15px;

    color:#0A2540;

}

.contact-card p{

    color:#666;

    line-height:1.9;

    margin:0;

}


.contact-card a{

    color:#666;

    text-decoration:none;

    transition:.3s;

}

.contact-card a:hover{

    color:#0057D9;

}

/*==========================================
        CONTACT FORM
==========================================*/

.contact-form-section{

    padding:110px 0;

    background:#ffffff;

}

.contact-form-box{

    background:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.contact-form-box h2{

    font-size:42px;

    margin:20px 0;

    color:#0A2540;

}

.contact-form-box p{

    color:#666;

    margin-bottom:35px;

}

.contact-form-box .form-control,

.contact-form-box .form-select{

    border-radius:12px;

    padding:15px 18px;

    border:1px solid #d9d9d9;

    transition:.3s;

}

.contact-form-box .form-control:focus,

.contact-form-box .form-select:focus{

    border-color:#0057D9;

    box-shadow:0 0 0 .2rem rgba(0,87,217,.15);

}

.contact-form-box textarea{

    resize:none;

}

.contact-form-box .btn{

    padding:15px 35px;

    border-radius:50px;

}

.contact-side-card{

    background:#f8fafc;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.contact-side-card img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.side-content{

    padding:35px;

}

.side-content h3{

    color:#0A2540;

    margin-bottom:20px;

}

.side-content p{

    color:#666;

    line-height:1.8;

}

.side-content ul{

    list-style:none;

    padding:0;

    margin-top:25px;

}

.side-content ul li{

    margin-bottom:15px;

    color:#444;

}

.side-content ul li i{

    color:#0057D9;

    margin-right:10px;

}

/*==========================================
        OFFICE LOCATION
==========================================*/

.office-location{

    padding:110px 0;

    background:#f8fafc;

}

.map-box{

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

    height:100%;

}

.map-box iframe{

    width:100%;

    height:550px;

    border:0;

}

.office-card{

    background:#fff;

    border-radius:20px;

    padding:45px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    height:100%;

}

.office-card h3{

    color:#0A2540;

    font-weight:700;

    margin-bottom:20px;

}

.office-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:35px;

}

.office-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-bottom:28px;

}

.office-item i{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#0057D9;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    flex-shrink:0;

}

.office-item h5{

    margin-bottom:6px;

    color:#0A2540;

}

.office-item span{

    color:#666;

    line-height:1.7;

}

.office-card .btn{

    border-radius:50px;

    padding:15px 35px;

}

/*==========================================
        FAQ SECTION
==========================================*/

.faq-section{

    padding:110px 0;

    background:#ffffff;

}

.custom-faq{

    max-width:900px;

    margin:60px auto 0;

}

.custom-faq .accordion-item{

    border:none;

    margin-bottom:20px;

    border-radius:15px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.custom-faq .accordion-button{

    background:#fff;

    color:#0A2540;

    font-size:18px;

    font-weight:600;

    padding:22px 25px;

    box-shadow:none;

}

.custom-faq .accordion-button:not(.collapsed){

    background:#0057D9;

    color:#fff;

}

.custom-faq .accordion-button:focus{

    box-shadow:none;

}

.custom-faq .accordion-body{

    padding:25px;

    color:#666;

    line-height:1.8;

    background:#fff;

}

/*==========================================
        CONTACT CTA
==========================================*/

.contact-cta{

    position:relative;

    padding:120px 0;

    background:url("../images/contact-cta.jpg") center center/cover no-repeat;

    overflow:hidden;

}

.contact-cta .cta-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(8,28,58,.92),
        rgba(0,87,217,.82)
    );

}

.contact-cta .container{

    position:relative;

    z-index:2;

}

.contact-cta h2{

    color:#fff;

    font-size:52px;

    font-weight:700;

    margin:20px 0;

}

.contact-cta p{

    color:#e9eef5;

    font-size:18px;

    line-height:1.9;

    max-width:760px;

    margin:auto;

}

.support-number{

    margin:45px 0;

    display:inline-flex;

    align-items:center;

    gap:18px;

    background:rgba(255,255,255,.12);

    padding:18px 35px;

    border-radius:60px;

    backdrop-filter:blur(10px);

}

.support-number i{

    color:#FFD54A;

    font-size:28px;

}

.support-number span{

    color:#fff;

    font-size:28px;

    font-weight:700;

    letter-spacing:1px;

}

.cta-buttons{

    margin-top:30px;

}

.cta-buttons .btn{

    margin:10px;

    padding:15px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.35s;

}

.cta-buttons .btn:hover{

    transform:translateY(-6px);

    box-shadow:0 15px 35px rgba(0,0,0,.25);

}

@media(max-width:768px){

.contact-cta{

padding:90px 0;

}

.contact-cta h2{

font-size:36px;

}

.support-number{

flex-direction:column;

padding:20px;

}

.support-number span{

font-size:22px;

}

.cta-buttons .btn{

display:block;

width:100%;

margin:12px 0;

}

}