/*==================================================
GOOGLE FONTS
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==================================================
GLOBAL RESET
==================================================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Poppins",sans-serif;
    color:#111;
    background:#fff;
    overflow-x:hidden;
}

img{
    display:block;
    max-width:100%;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

button,
input,
textarea,
select{
    font-family:inherit;
    outline:none;
}

.container{
    width:96%;
    max-width:1400px;
    margin:auto;
}

/*==================================================
HEADER
==================================================*/

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:80px;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.12);
    z-index:99999;
}

.nav-container{

    width:96%;
    max-width:1400px;

    height:80px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

/*==================================================
LOGO
==================================================*/

.logo{

    flex:0 0 280px;

}

.logo img{

    width:500px;
    margin-left: -40px;

    height:auto;

}

/*==================================================
NAVBAR
==================================================*/

.navbar{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

}

.nav-list{

    display:flex;

    align-items:center;

    gap:28px;

}

.nav-list li{

    position:relative;

}

.nav-list li a{

    display:flex;

    align-items:center;

    gap:6px;

    padding:27px 0;

    color:#111;

    font-size:17px;

    font-weight:600;

    white-space:nowrap;

    transition:.3s;

}

.nav-list li a:hover{

    color:#D62828;

}

/*==================================================
DROPDOWN
==================================================*/

.dropdown-menu{

    position:absolute;

    top:100%;
    left:0;

    min-width:240px;

    background:#fff;

    border-radius:10px;

    box-shadow:0 15px 30px rgba(0,0,0,.15);

    overflow:hidden;

    display:none;

    z-index:1000;

}

.dropdown:hover>.dropdown-menu{

    display:block;

}

.dropdown-menu li a{

    display:block;

    padding:14px 20px;

    color:#0B2E59;

    font-size:15px;

}

.dropdown-menu li a:hover{

    background:#f5f5f5;

    color:#D62828;

}

/*==================================================
BUTTON
==================================================*/

.desktop-btn{

    margin-left:20px;

}

.nav-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    min-width:138px;

    height:54px;

    padding:0 34px;

    border-radius:8px;

    background:#D62828;

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.nav-btn:hover{

    background:#0B2E59;

    color:#fff;

}

.mobile-quote{

    display:none;

}

/*==================================================
MENU BUTTON
==================================================*/

.menu-toggle{

    display:none;

    background:none;

    border:none;

    color:#111;

    font-size:28px;

    cursor:pointer;

}

/*==================================================
TABLET + MOBILE NAVBAR
==================================================*/

@media(max-width:992px){

.header{

    height:80px;

}

.nav-container{

    height:80px;

}

.menu-toggle{

    display:block;

    margin-left:auto;

}

.desktop-btn{

    display:none;

}

.navbar{

    position:absolute;

    top:80px;
    left:0;

    width:100%;

    background:#fff;

    display:none;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.navbar.active{

    display:block;

}

.nav-list{

    flex-direction:column;

    gap:0;

}

.nav-list li{

    width:100%;

}

.nav-list li a{

    justify-content:space-between;

    padding:16px 20px;

}

.dropdown-menu{

    position:static;

    width:100%;

    border-radius:0;

    background:#f8f8f8;

    box-shadow:none;

    display:none;

}

.dropdown.active>.dropdown-menu{

    display:block;

}

.dropdown-menu li a{

    padding-left:40px;

}

.mobile-quote{

    display:block;

    padding:15px;

}

.mobile-quote .nav-btn{

    width:100%;

}

}

/*==================================================
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-col:first-child{

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

}

.footer h3{

    position:relative;

    display:inline-block;

    color:#fff;

    font-size:22px;

    margin-bottom:30px;

}

.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 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{

    width:18px;

    margin-top:5px;

    color:#D62828;

}

.footer-social{

    display:flex;

    gap:12px;

    margin-top:22px;

}

.footer-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#0B2E59;

    color:#fff;

    font-size:18px;

    transition:.35s;

}

.footer-social a:hover{

    background:#D62828;

    transform:translateY(-5px);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.12);

    margin-top:20px;

    padding-top:20px;

    text-align:center;

}

.footer-bottom p{

    color:#9daab8;

    font-size:14px;

}

/*==================================================
FOOTER RESPONSIVE
==================================================*/

@media(max-width:992px){

.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::after{

    left:50%;

    transform:translateX(-50%);

}

.footer ul{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:6px;

}

.footer-contact{

    align-items:center;

}

.footer-contact li{

    justify-content:center;

}

.footer-social{

    justify-content:center;

}

}

@media(max-width:480px){

.footer{

    padding:45px 0 16px;

}

.footer-logo{

    width:135px;

}

.footer h3{

    font-size:18px;

}

.footer p,
.footer li,
.footer a{

    font-size:13px;

}

.footer-social a{

    width:34px;

    height:34px;

    font-size:14px;

}

}

/*==================================================
CAREER PAGE LAYOUT
==================================================*/

.career-overlay{
    width:100%;
    min-height:100vh;
    padding:15px 20px 30px;
    background:#f4f7fb;
    display:flex;
    justify-content:center;
    align-items:flex-start;
}
.career-popup{
    width:100%;
    max-width:1280px;
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    display:grid;
    grid-template-columns:58% 42%;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
    align-items:stretch;
}

.career-left,
.career-right{
    min-width:0;
}
.career-popup{
    position:relative;
}

.career-close{
    position:absolute;
    top:20px;
    right:20px;
    z-index:9999;
}
/*==================================================
LEFT PANEL
==================================================*/

.career-left{
    position:relative;
    background:#fff;
    padding:35px 38px;
    display:flex;
    flex-direction:column;
}
.career-close{
    position:absolute;
    top:20px;
    right:20px;

    width:42px;
    height:42px;

    border-radius:50%;
    background:#eef3fb;

    color:#003b95;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:17px;

    transition:.35s;
}

.career-close:hover{
    background:#003b95;
    color:#fff;
    transform:rotate(90deg);
}

.career-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:fit-content;

    padding:8px 18px;

    border-radius:999px;

    background:#eef5ff;
    border:1px solid #d7e8ff;

    color:#0B4DA2;

    font-size:13px;
    font-weight:600;

    margin-bottom:20px;
}

.career-left h2{
    font-size:42px;
    line-height:1.15;
    color:#111;
    margin-bottom:14px;
}

.career-intro{
    font-size:16px;
    color:#666;
    line-height:1.8;
    margin-bottom:24px;
}

/*==================================================
RIGHT PANEL
==================================================*/

.career-right{
    background:linear-gradient(135deg,#003b95,#005dd8);
    color:#fff;
    padding:24px;
    display:flex;
    flex-direction:column;
}

.career-right .career-tag{
    background:rgba(255,255,255,.15);
    color:#fff;
}

.career-right h2{
    font-size:38px;
    line-height:1.1;
    margin:6px 0 10px;
}

.career-right > p{
    font-size:15px;
    line-height:1.8;
    color:rgba(255,255,255,.92);
    margin-bottom:12px;
}

.career-right h3{
    font-size:22px;
    line-height:1.5;
    font-weight:600;
    margin-bottom:18px;
    color:#fff;
}

/*==================================================
COMMON
==================================================*/

.career-popup *,
.career-popup *::before,
.career-popup *::after{
    box-sizing:border-box;
}

.career-popup img{
    width:100%;
    display:block;
}

.career-popup button,
.career-popup input,
.career-popup textarea,
.career-popup select{
    font-family:inherit;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px){

    .career-popup{
        max-width:1100px;
        grid-template-columns:55% 45%;
    }

    .career-left,
    .career-right{
        padding:28px;
    }

    .career-left h2{
        font-size:34px;
    }

    .career-right h2{
        font-size:32px;
    }

}

@media(max-width:992px){

    .career-popup{
        grid-template-columns:1fr;
    }

    .career-right{
        order:1;
        text-align:left;
    }

    .career-left{
        order:2;
    }

}

@media(max-width:768px){

    .career-overlay{
        padding:85px 10px 25px;
    }

    .career-popup{
        border-radius:16px;
    }

    .career-left,
    .career-right{
        padding:22px;
    }

    .career-left h2{
        font-size:30px;
    }

    .career-right h2{
        font-size:28px;
    }

    .career-right h3{
        font-size:20px;
    }

    .career-intro,
    .career-right p{
        font-size:14px;
    }

}

@media(max-width:576px){

    .career-left,
    .career-right{
        padding:18px;
    }

    .career-close{
        width:36px;
        height:36px;
        top:14px;
        right:14px;
        font-size:14px;
    }

    .career-left h2{
        font-size:26px;
    }

    .career-right h2{
        font-size:24px;
    }

    .career-right h3{
        font-size:18px;
    }

}

@media(max-width:400px){

    .career-left,
    .career-right{
        padding:16px;
    }

    .career-left h2{
        font-size:22px;
    }

    .career-right h2{
        font-size:21px;
    }

    .career-right h3{
        font-size:17px;
    }

    .career-tag{
        font-size:11px;
    }

}
/*==================================================
CAREER FORM
==================================================*/

#careerForm{
    width:100%;
    display:flex;
    flex-direction:column;
    height:100%;
}
.input-row{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.input-group{
    width:100%;
    position:relative;
    margin-bottom:20px;
}

.input-group label{
    display:block;
    margin-bottom:8px;
    color:#222;
    font-size:14px;
    font-weight:600;
}

/*==================================================
INPUTS
==================================================*/

.input-group input,
.input-group select,
.input-group textarea{

    width:100%;

    padding:14px 16px;

    border:2px solid #e7edf7;

    border-radius:12px;

    background:#fff;

    color:#222;

    font-size:15px;

    transition:.35s;
}

.input-group input::placeholder,
.input-group textarea::placeholder{

    color:#8d8d8d;

}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus{

    border-color:#0057d9;

    box-shadow:0 0 0 4px rgba(0,87,217,.12);

}

/*==================================================
SELECT
==================================================*/

.input-group select{

    appearance:none;

    cursor:pointer;

    padding-right:46px;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='%23666' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 5.646a.5.5 0 0 1 .708 0L8 11.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");

    background-repeat:no-repeat;

    background-position:right 16px center;

    background-size:16px;

}

/*==================================================
TEXTAREA
==================================================*/

.input-group textarea{

    resize:none;

    min-height:90px;

    line-height:1.6;

}

/*==================================================
UPLOAD TITLE
==================================================*/

.upload-title{

    display:block;

    margin-bottom:8px;

    font-size:14px;

    font-weight:600;

    color:#222;

}

/*==================================================
UPLOAD BOX
==================================================*/

.upload-box{

    position:relative;

    width:100%;

    min-height:100px;

    display:flex;

    align-items:center;

    gap:15px;

    padding:15px 18px;

    border:2px dashed #c8d8ef;

    border-radius:12px;

    background:#f8fbff;

    cursor:pointer;

    overflow:hidden;

    transition:.35s;

}

.upload-box:hover{

    border-color:#0057d9;

    background:#edf5ff;

}

.upload-box input[type=file]{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    opacity:0;

    cursor:pointer;

    z-index:2;

}

.upload-box i{

    font-size:24px;

    color:#0057d9;

    flex-shrink:0;

}

.upload-content{

    flex:1;

    min-width:0;

}

#fileName{

    margin:0;

    color:#222;

    font-size:15px;

    font-weight:600;

    white-space:nowrap;

    overflow:hidden;

    text-overflow:ellipsis;

}

#fileStatus{

    margin-top:4px;

    color:#777;

    font-size:13px;

}

/*==================================================
UPLOAD SUCCESS
==================================================*/

.upload-box.success{

    background:#f1fff5;

    border-color:#25b864;

}

.upload-box.success i,
.upload-box.success #fileName,
.upload-box.success #fileStatus{

    color:#25b864;

}

/*==================================================
SUBMIT BUTTON
==================================================*/

#careerForm button{

    width:100%;

    margin-top:24px;

    padding:15px;

    border:none;

    border-radius:12px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    background:linear-gradient(135deg,#003b95,#0057d9);

    color:#fff;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    box-shadow:0 12px 25px rgba(0,87,217,.25);

    transition:.35s;

}

#careerForm button:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 35px rgba(0,87,217,.35);

}

#careerForm button i{

    font-size:16px;

}

/*==================================================
FORM RESPONSIVE
==================================================*/

@media(max-width:768px){

    .input-row{

        flex-direction:column;

        gap:0;

    }

    .input-group{

        margin-bottom:14px;

    }

    .input-group input,
    .input-group select,
    .input-group textarea{

        font-size:14px;

        padding:13px 15px;

    }

    .input-group textarea{

        min-height:80px;

    }

}

@media(max-width:576px){

    .input-group input,
    .input-group select,
    .input-group textarea{

        font-size:13px;

        border-radius:10px;

    }

    .upload-box{

        min-height:60px;

        padding:12px 14px;

    }

    .upload-box i{

        font-size:20px;

    }

    #fileName{

        font-size:13px;

    }

    #fileStatus{

        font-size:12px;

    }

    #careerForm button{

        padding:13px;

        font-size:14px;

    }

}
/*==================================================
CAREER IMAGE SLIDER
==================================================*/

.career-slider{
    width:100%;
    max-width:460px;
    height:460px;
    margin:20px auto;
    border-radius:18px;
    overflow:hidden;
    position:relative;
    box-shadow:0 12px 30px rgba(0,0,0,.18);
}

.career-slider .swiper,
.career-slider .swiper-wrapper,
.career-slider .swiper-slide{
    width:100%;
    height:100%;
}

.career-slider img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

/*==================================================
PAGINATION
==================================================*/

.career-slider .swiper-pagination{
    bottom:12px !important;
}

.career-slider .swiper-pagination-bullet{
    width:10px;
    height:10px;
    background:#fff;
    opacity:.7;
    transition:.3s;
}

.career-slider .swiper-pagination-bullet-active{
    width:26px;
    border-radius:30px;
    background:#FFD54A;
    opacity:1;
}

/*==================================================
WHY JOIN US
==================================================*/

.career-benefits{
    margin-top:12px;
}

.career-benefits h3{
    color:#fff;
    font-size:24px;
    font-weight:700;
    margin-bottom:18px;
    text-align:left;
}

.career-benefits ul{
    padding:0;
    margin:0;
}

.career-benefits li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:12px;
    color:#fff;
    font-size:15px;
    line-height:1.6;
}

.career-benefits li i{
    color:#43e97b;
    font-size:17px;
    margin-top:3px;
}

/*==================================================
SOCIAL ICONS
==================================================*/

.career-social{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.career-social a{
    width:44px;
    height:44px;
    border-radius:50%;
    background:rgba(255,255,255,.15);

    display:flex;
    justify-content:center;
    align-items:center;

    color:#fff;
    font-size:18px;

    transition:.35s;
}

.career-social a:hover{
    background:#fff;
    color:#0057d9;
    transform:translateY(-4px);
}

/*==================================================
SUCCESS POPUP
==================================================*/

.success-popup{
    position:fixed;
    inset:0;

    display:none;
    justify-content:center;
    align-items:center;

    padding:20px;

    background:rgba(0,0,0,.65);

    backdrop-filter:blur(6px);

    z-index:99999;
}

.success-popup.active{
    display:flex;
}

.success-box{
    width:100%;
    max-width:450px;

    background:#fff;

    border-radius:20px;

    padding:35px 30px;

    text-align:center;

    position:relative;

    animation:popupScale .35s ease;
}

.close-success{
    position:absolute;
    top:15px;
    right:15px;

    width:38px;
    height:38px;

    border:none;

    border-radius:50%;

    background:#eef2f8;

    cursor:pointer;

    transition:.3s;
}

.close-success:hover{
    background:#e53935;
    color:#fff;
    transform:rotate(90deg);
}

.success-icon{
    width:90px;
    height:90px;

    margin:auto auto 18px;

    border-radius:50%;

    background:#eafcf1;

    display:flex;
    justify-content:center;
    align-items:center;
}

.success-icon i{
    color:#25b864;
    font-size:48px;
}

.success-box h2{
    font-size:30px;
    color:#111;
    margin-bottom:12px;
}

.success-box p{
    color:#666;
    line-height:1.8;
    margin-bottom:24px;
}

.back-btn{
    width:100%;

    padding:14px;

    border:none;

    border-radius:10px;

    background:linear-gradient(135deg,#003b95,#0057d9);

    color:#fff;

    font-weight:600;

    cursor:pointer;

    transition:.35s;
}

.back-btn:hover{
    transform:translateY(-2px);
}

/*==================================================
ANIMATION
==================================================*/

@keyframes popupScale{

    from{
        opacity:0;
        transform:scale(.85);
    }

    to{
        opacity:1;
        transform:scale(1);
    }

}

/*==================================================
FINAL RESPONSIVE
==================================================*/

@media(max-width:992px){

    .career-slider{
        max-width:420px;
        height:420px;
    }

    .career-right{
        text-align:left;
    }

    .career-benefits{
        text-align:left;
    }

    .career-social{
        justify-content:flex-start;
    }

}

@media(max-width:768px){

    .career-slider{
        max-width:100%;
        height:320px;
        margin:20px 0;
    }

    .career-slider img{
        height:320px;
    }

    .career-benefits h3{
        font-size:22px;
        text-align:left;
    }

    .career-benefits li{
        font-size:14px;
    }

    .career-social{
        justify-content:flex-start;
    }

    .success-box{
        padding:28px 22px;
    }

}

@media(max-width:576px){

    .career-slider{
        height:300px;
    }

    .career-slider img{
        height:300px;
    }

    .career-benefits h3{
        font-size:20px;
    }

    .career-benefits li{
        font-size:13px;
    }

    .career-social a{
        width:40px;
        height:40px;
        font-size:16px;
    }

    .success-box{
        padding:24px 18px;
    }

    .success-box h2{
        font-size:22px;
    }

}

@media(max-width:400px){

    .career-slider{
        height:260px;
    }

    .career-slider img{
        height:260px;
    }

    .career-benefits h3{
        font-size:18px;
    }

    .career-benefits li{
        font-size:12px;
    }

}


/*======================================
PREMIUM OUR PRESENCE HERO
======================================*/

.presence-hero{

    position:relative;

    min-height:630px;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:
        linear-gradient(rgba(7,32,73,.20),rgba(7,32,73,.20)),
        url("../image/our_presence.jpg") center center/cover no-repeat;

}

/*======================================*/

.presence-overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            110deg,
            rgba(7,32,73,.92) 0%,
            rgba(7,32,73,.72) 35%,
            rgba(7,32,73,.30) 68%,
            rgba(7,32,73,.08) 100%
        );

}

/*======================================
HERO CONTENT
======================================*/

.presence-hero-content{

    position:relative;

    z-index:5;

    width:min(1320px,92%);

    margin:auto;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:flex-start;

}

/*======================================
HERO TAG
======================================*/

.hero-tag{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 22px;

    margin-bottom:22px;

    border-radius:50px;

    background:#B60E0E;

    border:1px solid rgba(255,255,255,.20);

    color:#fff;

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    white-space:nowrap;

}

/*======================================
HERO TITLE
======================================*/

.presence-hero-content h1{

    margin:0;

    max-width:720px;

    color:#fff;

    font-size:62px;

    font-weight:700;

    line-height:1.15;

}
/*======================================
OUR PRESENCE
======================================*/

.our-presence{

    position:relative;

    z-index:5;

    padding:40px 0 100px;

    background:#fff;

}

.presence-container{

    width:min(1320px,92%);

    margin:auto;

}
.presence-grid{

    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:45px;
    align-items:start;

}
/*======================================
TOP CARDS
======================================*/

.presence-stats{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;

}

.presence-stat-card{

    background:#fff;
    padding:24px 22px;
    border-radius:18px;
    border:1px solid #e7edf5;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.35s;

}

.presence-stat-card:hover{

    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.10);

}

.presence-stat-card i{

    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    color:#fff;
    background:#E31E24;
    border-radius:50%;
    margin-bottom:18px;

}

.presence-stat-card h3{

    color:#0B2E59;
    font-size:22px;
    line-height:1.3;
    margin-bottom:12px;
    font-weight:700;

}

.presence-stat-card p{

    color:#666;
    font-size:15px;
    line-height:1.7;

}
/*======================================
LEFT COLUMN
======================================*/

.presence-left{

    display:flex;

    flex-direction:column;

    gap:20px;

}
/*======================================
MAP
======================================*/

.map-wrapper{

    position:relative;

    background:linear-gradient(180deg,#ffffff 0%,#fbfcff 100%);

    border:1px solid #E3EAF4;

    border-radius:24px;

    padding:30px;
    margin-top:15px;

    overflow:hidden;

    box-shadow:
        0 15px 45px rgba(15,23,42,.08),
        0 5px 15px rgba(15,23,42,.05);

    transition:all .4s ease;

}

/* Top Premium Border */

.map-wrapper::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

}

/* Left Accent */

.map-wrapper::after{

    content:"";

    position:absolute;

    top:22px;

    left:0;

    width:5px;

    height:80px;

    border-radius:0 6px 6px 0;

    

}

.map-wrapper:hover{

    transform:translateY(-8px);

    border-color:#D4E2F5;

    box-shadow:
        0 25px 60px rgba(15,23,42,.15),
        0 10px 25px rgba(11,46,89,.08);

}

.map-wrapper object{

    display:block;

    width:100%;

    max-width:520px;

    margin:auto;

    height:auto;

    transition:transform .4s ease;

}

.map-wrapper:hover object{

    transform:scale(1.03);

}

/*======================================
CONTENT
======================================*/

.presence-content{

    width:100%;

}

.presence-subtitle{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:18px;

    color:#E53935;

    font-size:18px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

}

.presence-subtitle::before{

    content:"";

    width:50px;

    height:3px;

    border-radius:50px;

    background:#E53935;

}

.presence-content h2{

    margin:0 0 18px;

    color:#0B2C5F;

    font-size:46px;

    font-weight:700;

    line-height:1.15;

}

.presence-quote{

    margin-bottom:18px;

    padding-left:18px;

    border-left:4px solid #E53935;

    color:#0B5ED7;

    font-size:20px;

    font-weight:600;

    line-height:1.8;

}

.presence-content p{

    margin-bottom:16px;

    color:#555;

    font-size:16px;

    line-height:1.8;

}

.presence-content strong{

    color:#0B2C5F;

    font-weight:700;

}
/*======================================
OPERATING LOCATIONS
======================================*/

.presence-locations{

    margin-top:110px;

}

.presence-locations h3{

    position:relative;

    margin-bottom:24px;

    padding-bottom:12px;

    color:#0B2C5F;

    font-size:34px;

    font-weight:700;

    line-height:1.2;

}

.presence-locations h3::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:60px;

    height:3px;

    border-radius:50px;

    background:#E53935;

}

/*======================================
LOCATION GRID
======================================*/

.location-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

/*======================================
LOCATION CARD
======================================*/

.location-card{

    position:relative;

    overflow:hidden;

    height:100%;

    padding:22px;

    background:#fff;

    border:1px solid #E7EDF5;

    border-radius:16px;

    box-shadow:0 8px 24px rgba(0,0,0,.06);

    transition:all .35s ease;

}

.location-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:4px;

    height:100%;

    background:#0B5ED7;

    transition:.35s ease;

}

.location-card:hover{

    transform:translateY(-8px);

    border-color:#0B5ED7;

    background:#FCFDFF;

    box-shadow:0 18px 42px rgba(11,94,215,.15);

}

.location-card:hover::before{

    background:#E53935;

}

/*======================================
LOCATION TITLE
======================================*/

.location-card h4{

    display:flex;

    align-items:center;

    margin:0 0 10px;

    color:#0B2C5F;

    font-size:18px;

    font-weight:700;

}

.location-card h4::before{

    content:"📍";

    margin-right:8px;

    font-size:18px;

}

/*======================================
LOCATION TEXT
======================================*/

.location-card p{

    margin:0;

    color:#666;

    font-size:15px;

    line-height:1.75;

}

.location-card strong{

    color:#0B2C5F;

    font-weight:700;

}
/*======================================
LARGE LAPTOP
======================================*/

@media (max-width:1400px){

    .presence-grid{

        gap:35px;

    }

    .presence-content h2{

        font-size:42px;

    }

    .map-wrapper object{

        max-width:470px;

    }

}

/*======================================
LAPTOP
======================================*/

@media (max-width:1200px){

    .our-presence{

        padding:70px 0;

    }

    .presence-grid{

        gap:35px;

    }

    .presence-content h2{

        font-size:38px;

    }

    .presence-quote{

        font-size:18px;

    }

    .map-wrapper{

        padding:24px;

    }

    .map-wrapper object{

        max-width:430px;

    }

}

/*======================================
TABLET
======================================*/
@media (max-width:992px){

    .presence-grid{

        grid-template-columns:1fr;

        gap:35px;

    }

    .presence-left{

        order:2;

    }

    .presence-content{

        order:1;

    }

    .presence-stats{

        grid-template-columns:repeat(2,1fr);

    }

    .presence-content h2{

        font-size:34px;

    }

    .presence-quote{

        font-size:17px;

    }

    .map-wrapper{

        padding:20px;

    }

    .map-wrapper object{

        max-width:430px;

    }

    .location-grid{

        grid-template-columns:repeat(2,1fr);

    }

}
/*======================================
MOBILE
======================================*/
@media (max-width:768px){

    .presence-hero{

        min-height:500px;

    }

    .presence-hero-content h1{

        font-size:38px;

    }

    .presence-grid{

        gap:30px;

    }

    .presence-stats{

        grid-template-columns:1fr;

        gap:16px;

    }

    .presence-stat-card{

        padding:20px;

    }

    .map-wrapper{

        padding:18px;

    }

    .map-wrapper object{

        max-width:340px;

    }

    .presence-content h2{

        font-size:30px;

    }

    .location-grid{

        grid-template-columns:1fr;

    }

}
/*======================================
SMALL MOBILE
======================================*/
@media (max-width:480px){

    .presence-hero{

        min-height:420px;

    }

    .presence-hero-content h1{

        font-size:30px;

    }

    .presence-stat-card{

        padding:18px;

    }

    .presence-stat-card i{

        width:50px;

        height:50px;

        font-size:20px;

    }

    .presence-stat-card h3{

        font-size:20px;

    }

    .presence-stat-card h4{

        font-size:17px;

    }

    .map-wrapper{

        padding:15px;

    }

    .map-wrapper object{

        max-width:290px;

    }

}
/*======================================
VERY SMALL MOBILE
======================================*/
@media (max-width:360px){

    .presence-hero-content h1{

        font-size:24px;

    }

    .presence-content h2{

        font-size:22px;

    }

    .presence-stat-card{

        padding:16px;

    }

    .presence-stat-card h3{

        font-size:18px;

    }

    .presence-stat-card h4{

        font-size:16px;

    }

    .presence-stat-card p{

        font-size:13px;

    }

    .map-wrapper object{

        max-width:250px;

    }

}