.elementor-751 .elementor-element.elementor-element-89ead68{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-751 .elementor-element.elementor-element-7fda983{width:100%;max-width:100%;padding:0px 0px 0px 0px;}.elementor-751 .elementor-element.elementor-element-1b41f02{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-751 .elementor-element.elementor-element-29faf1b{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-751 .elementor-element.elementor-element-29faf1b.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-751 .elementor-element.elementor-element-fb97804{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-751 .elementor-element.elementor-element-8eed433{--display:flex;}.elementor-751 .elementor-element.elementor-element-6ff972c{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-751 .elementor-element.elementor-element-2f3f966{--display:flex;--padding-top:2px;--padding-bottom:2px;--padding-left:2px;--padding-right:2px;}@media(min-width:768px){.elementor-751 .elementor-element.elementor-element-29faf1b{--width:86.964%;}}@media(max-width:767px){.elementor-751 .elementor-element.elementor-element-7fda983{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-751 .elementor-element.elementor-element-8eed433{--padding-top:1px;--padding-bottom:1px;--padding-left:1px;--padding-right:1px;}}/* Start custom CSS for html, class: .elementor-element-7fda983 *//* =========================================
   RESET
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter', sans-serif;
    background:#0b0f14;
    color:#ffffff;
    line-height:1.6;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

/* =========================================
   HEADER SECTION
========================================= */

.header{
    position:fixed;
    top:0;
    left:0;

    width:100%;

    z-index:999;

    background:
    linear-gradient(
        to bottom,
        rgba(0,0,0,.92),
        rgba(0,0,0,.65)
    );

    backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(255,255,255,.05);
}

.header-container{
    width:100%;
    max-width:1280px;

    margin:auto;

    padding:0 24px;
}

.navbar{
    height:110px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.nav ul{
    display:flex;
    align-items:center;

    gap:42px;

    list-style:none;
}

.nav ul li a{
    position:relative;

    color:#ffffff;

    text-decoration:none;

    font-size:1rem;
    font-weight:600;

    transition:.3s ease;
}

.nav ul li a:hover{
    color:#d4af37;
}

.nav ul li a::after{
    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    background:#d4af37;

    transition:.3s ease;
}

.nav ul li a:hover::after{
    width:100%;
}

/* ---------- HEADER TABLET ---------- */

@media(max-width:992px){

    .navbar{
        height:90px;
    }

}

/* ---------- HEADER MOBILE ---------- */

@media(max-width:768px){

    .header-container{
        padding-left:20px;
        padding-right:20px;
    }

    .nav{
        display:none;
    }

    .navbar{
        justify-content:center;
    }

}

/* =========================================
   HERO SECTION
========================================= */

.hero-section{
    position:relative;

    width:100vw;
    min-height:100vh;

    margin-left:calc(50% - 50vw);

    display:flex;
    align-items:center;

    overflow:hidden;

    padding:140px 0 100px;

    background:
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1800&auto=format&fit=crop')
    center center / cover no-repeat;
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        135deg,
        rgba(0,0,0,.92),
        rgba(0,0,0,.72)
    );
}

.hero-container{
    position:relative;
    z-index:2;

    width:100%;
    max-width:1280px;

    margin:auto;

    padding:0 24px;
}

.hero-content{
    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:60px;

    align-items:center;
}

.hero-section h1{
    font-size:4.8rem;

    font-weight:800;

    line-height:.96;

    margin-bottom:30px;
}

.hero-section p{
    color:#b8c0cc;

    font-size:1.15rem;

    line-height:1.8;

    max-width:680px;

    margin-bottom:40px;
}

.hero-buttons{
    display:flex;

    gap:18px;

    flex-wrap:wrap;
}

.hero-section .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 34px;

    border-radius:8px;

    text-decoration:none;

    font-weight:700;

    transition:.3s ease;

    border:1px solid transparent;
}

.hero-section .btn-primary{
    background:#d4af37;
    color:#000;
}

.hero-section .btn-primary:hover{
    background:#f3ca5a;
    transform:translateY(-3px);
}

.hero-section .btn-secondary{
    border:1px solid rgba(255,255,255,.2);

    color:#fff;

    background:transparent;
}

.hero-section .btn-secondary:hover{
    border-color:#d4af37;

    color:#d4af37;
}

.hero-side-logo{
    display:flex;

    justify-content:center;
    align-items:center;
}

.hero-side-logo img{
    width:135%;

    max-width:900px;

    height:auto;

    object-fit:contain;

    filter:
    drop-shadow(0 25px 50px rgba(0,0,0,.45));
}

/* ---------- HERO TABLET ---------- */

@media(max-width:992px){

    .hero-content{
        grid-template-columns:1fr;
    }

    .hero-side-logo{
        order:-1;
    }

    .hero-side-logo img{
        width:100%;

        max-width:420px;
    }

    .hero-section h1{
        font-size:3.5rem;
    }

}

/* ---------- HERO MOBILE ---------- */

@media(max-width:768px){

    .hero-container{
        padding-left:20px;
        padding-right:20px;
    }

    .hero-content{
        grid-template-columns:1fr;

        gap:30px;
    }

    .hero-side-logo{
        justify-content:center;

        order:-1;
    }

    .hero-side-logo img{
        width:150%;

        max-width:650px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-section .btn{
        width:100%;
    }

    .hero-section h1{
        font-size:2.7rem;
    }

}

/* ---------- HERO SMALL MOBILE ---------- */

@media(max-width:480px){

    .hero-section h1{
        font-size:2.2rem;
    }

    .hero-side-logo img{
        width:170%;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b0f04d2 *//* =========================================
   ABOUT SECTION
========================================= */

.about-section{
    position:relative;

    width:100vw;

    margin-left:calc(50% - 50vw);

    background:#10161f;

    padding:110px 0;
}

.about-container{
    width:100%;
    max-width:1080px;

    margin:auto;

    padding:0 24px;
}

.about-grid{
    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;
}

.about-section h2{
    font-size:3rem;

    font-weight:700;

    margin-bottom:25px;
}

.about-section p{
    color:#b8c0cc;

    font-size:1rem;

    line-height:1.8;

    margin-bottom:20px;
}

.about-section .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 34px;

    border-radius:8px;

    text-decoration:none;

    font-weight:700;

    transition:.3s ease;

    background:#d4af37;

    color:#000;
}

.about-section .btn:hover{
    background:#f3ca5a;

    transform:translateY(-3px);
}

.about-image img{
    border-radius:24px;
}

/* ---------- ABOUT TABLET ---------- */

@media(max-width:992px){

    .about-grid{
        grid-template-columns:1fr;
    }

    .about-section h2{
        font-size:2.4rem;
    }

}

/* ---------- ABOUT MOBILE ---------- */

@media(max-width:768px){

    .about-container{
        padding-left:20px;
        padding-right:20px;
    }

    .about-section h2{
        font-size:2rem;
    }

    .about-section .btn{
        width:100%;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-83b11ae */.container{
    width:100%;
    max-width:1280px;
    margin:auto;
    padding:0 24px;
}

section{
    padding:110px 0;
}

img{
    width:100%;
    display:block;
}

h1,h2,h3,h4{
    line-height:1.1;
}

h1{
    font-size:4.5rem;
    font-weight:800;
    margin-bottom:30px;
}

h2{
    font-size:3rem;
    font-weight:700;
    margin-bottom:25px;
}

h3{
    font-size:1.4rem;
    font-weight:600;
    margin-bottom:18px;
}

p{
    color:#b8c0cc;
    font-size:1rem;
}

.section-header{
    max-width:760px;
    margin-bottom:70px;
}

.section-header.center{
    text-align:center;
    margin-left:auto;
    margin-right:auto;
}

.section-tag{
    display:inline-block;
    color:#d4af37;
    font-size:.85rem;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:18px;
    font-weight:700;
}

/* =========================================
   BUTTONS
========================================= */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
    transition:.3s ease;
    border:1px solid transparent;
}

.btn-primary{
    background:#d4af37;
    color:#000;
}

.btn-primary:hover{
    background:#f3ca5a;
    transform:translateY(-3px);
}

.btn-secondary{
    border:1px solid rgba(255,255,255,.2);
    color:#fff;
    background:transparent;
}

.btn-secondary:hover{
    border-color:#d4af37;
    color:#d4af37;
}

/* =========================================
   SERVICES SECTION
========================================= */


.services-section{
    background:#0b0f14;

    padding:110px 0;
}

.services-container{
    width:100%;
    max-width:1280px;

    margin:auto;

    padding:0 24px;
}

.services-header{
    max-width:760px;

    margin-bottom:70px;
}

.services-section h2{
    font-size:3rem;

    font-weight:700;

    margin-bottom:25px;
}

.services-section p{
    color:#b8c0cc;

    font-size:1rem;

    line-height:1.8;
}

.services-grid{
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;
}

.service-card{
    background:#141c25;

    padding:42px;

    border-radius:22px;

    border:1px solid rgba(255,255,255,.05);

    transition:.3s ease;
}

.service-card:hover{
    transform:translateY(-8px);

    border-color:#d4af37;
}

.service-card h3{
    font-size:1.4rem;

    font-weight:600;

    margin-bottom:18px;
}

.card-icon{
    font-size:2rem;

    margin-bottom:24px;
}

/* ---------- SERVICES TABLET ---------- */

@media(max-width:992px){

    .services-grid{
        grid-template-columns:1fr 1fr;
    }

    .services-section h2{
        font-size:2.4rem;
    }

}

/* ---------- SERVICES MOBILE ---------- */

@media(max-width:768px){

    .services-container{
        padding-left:20px;
        padding-right:20px;
    }

    .services-grid{
        grid-template-columns:1fr;
    }

    .services-section h2{
        font-size:2rem;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0204b8f *//* =========================================
   SASI FEATURE
========================================= */

.sasi-feature{
    position:relative;

    left:50%;
    right:50%;

    width:100vw;

    margin-left:-50vw;
    margin-right:-50vw;

    background:#10161f;

    padding:110px 0;
}

.sasi-feature .container{
    width:100%;
    max-width:1080px;

    margin:auto;

    padding-left:24px;
    padding-right:24px;
}

.sasi-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.sasi-image img{
    width:100%;
    height:600px;

    object-fit:cover;

    object-position:68% center;

    border-radius:24px;
}

.sasi-content p{
    margin-bottom:20px;
}
/* =========================================
   SASI MOBILE
========================================= */

@media(max-width:768px){

    .sasi-section{
        padding:90px 0;
    }

    .sasi-container{
        padding-left:20px;
        padding-right:20px;
    }

    .sasi-grid{
        display:grid;

        grid-template-columns:1fr;

        gap:40px;
    }

    /* IMAGE */

    .sasi-image{
        order:-1;
    }

    .sasi-image img{
        width:100%;

        height:320px;

        object-fit:cover;

        object-position:center;

        border-radius:24px;
    }

    /* CONTENT */

    .sasi-content{
        text-align:left;
    }

    .sasi-content h2{
        font-size:2.1rem;

        line-height:1.08;

        letter-spacing:-1px;

        margin-bottom:24px;
    }

    .sasi-content p{
        font-size:1rem;

        line-height:1.8;

        margin-bottom:20px;
    }

    /* BUTTONS */

    .sasi-buttons{
        display:flex;

        flex-direction:column;

        gap:16px;
    }

    .sasi-buttons .btn{
        width:100%;
    }

}

/* =========================================
   SASI SMALL MOBILE
========================================= */

@media(max-width:480px){

    .sasi-content h2{
        font-size:1.9rem;
    }

    .sasi-image img{
        height:280px;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-90c4b84 *//* =========================================
   INDUSTRIES
========================================= */

.industries{
    background:#0b0f14;

    padding:110px 0;
}

.industries .container{
    width:100%;

    max-width:1280px;

    margin:auto;

    padding:0 2px;
}

/* =========================================
   HEADER
========================================= */

.section-header{
    margin-bottom:70px;
}

.section-header.center{
    text-align:center;
}

.section-tag{
    display:inline-block;

    color:#d4af37;

    font-size:.85rem;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

    margin-bottom:18px;
}

.section-header h2{
    font-size:3.4rem;

    font-weight:800;

    line-height:1.05;

    color:#fff;
}

/* =========================================
   ROWS
========================================= */

.industry-row{
    display:flex;

    justify-content:center;

    gap:28px;

    margin-bottom:28px;

    flex-wrap:wrap;
}

.bottom-row{
    max-width:640px;

    margin-left:auto;
    margin-right:auto;
}

/* =========================================
   CARD
========================================= */

.industry-card{
    position:relative;

    width:300px;

    height:320px;

    border-radius:24px;

    overflow:hidden;

    background:#141c25;

    border:1px solid rgba(255,255,255,.06);

    transition:.35s ease;
}

/* =========================================
   IMAGE
========================================= */

.industry-card img{
    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform .5s ease;
}

/* =========================================
   OVERLAY
========================================= */

.industry-overlay{
    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.92) 10%,
        rgba(0,0,0,.45) 55%,
        rgba(0,0,0,.15) 100%
    );
}

/* =========================================
   CONTENT
========================================= */

.industry-content{
    position:absolute;

    inset:0;

    z-index:2;

    display:flex;

    align-items:center;
    justify-content:center;

    text-align:center;

    padding:24px;
}

.industry-content h3{
    color:#fff;

    font-size:1.7rem;

    line-height:1.15;

    font-weight:700;

    max-width:220px;
}

/* =========================================
   HOVER
========================================= */

.industry-card:hover{
    transform:translateY(-8px);

    border-color:#d4af37;

    box-shadow:
    0 20px 50px rgba(0,0,0,.35);
}

.industry-card:hover img{
    transform:scale(1.08);
}

/* =========================================
   INDUSTRIES MOBILE
========================================= */

@media(max-width:768px){

    .industries{
        padding:90px 0;
    }

    .industries .container{
        width:100%;

        max-width:100%;

        padding-left:0;
        padding-right:0;
    }

    .section-header{
        padding-left:20px;
        padding-right:20px;

        margin-bottom:50px;
    }

    .section-header h2{
        font-size:2.1rem;

        line-height:1.08;
    }

    /* FULL WIDTH STACK */

    .industry-row{
        flex-direction:column;

        gap:20px;

        width:100%;

        margin-bottom:20px;
    }

    .bottom-row{
        max-width:100%;
    }

    .industry-card{
        width:100%;

        max-width:100%;

        height:300px;

        border-radius:0;
    }

    .industry-content{
        padding:30px;
    }

    .industry-content h3{
        font-size:1.6rem;
    }

}

/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:480px){

    .industry-card{
        height:260px;
    }

    .industry-content h3{
        font-size:1.4rem;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ef277a5 *//* =========================================
   LEADERSHIP
========================================= */

.leadership-preview{
    position:relative;

    left:50%;
    right:50%;

    width:100vw;

    margin-left:-50vw;
    margin-right:-50vw;

    background:#10161f;

    padding:110px 0;
}

.leadership-preview .container{
    width:100%;
    max-width:1080px;

    margin:auto;

    padding-left:24px;
    padding-right:24px;
}

.leadership-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.leadership-image img{
    width:100%;
    height:800px;

    object-fit:cover;
    object-position:center top;

    border-radius:24px;
}

.leadership-content p{
    margin-bottom:20px;
}

/* =========================================
   LEADERSHIP MOBILE
========================================= */

@media(max-width:768px){

    .leadership-section{
        padding:90px 0;
    }

    .leadership-container{
        width:100%;

        max-width:100%;

        padding-left:20px;
        padding-right:20px;
    }

    .leadership-grid{
        display:grid;

        grid-template-columns:1fr;

        gap:40px;
    }

    /* IMAGE FIRST */

    .leadership-image{
        order:-1;
    }

    .leadership-image img{
        width:100%;

        height:520px;

        object-fit:cover;

        object-position:center top;

        border-radius:24px;
    }

    /* CONTENT */

    .leadership-content{
        width:100%;
    }

    .leadership-content h2{
        font-size:2.1rem;

        line-height:1.08;

        letter-spacing:-1px;

        margin-bottom:24px;
    }

    .leadership-content p{
        font-size:1rem;

        line-height:1.8;

        margin-bottom:20px;
    }

    /* BUTTONS */

    .leadership-buttons{
        display:flex;

        flex-direction:column;

        gap:16px;
    }

    .leadership-buttons .btn,
    .leadership-content .btn{
        width:100%;
    }

}

/* =========================================
   LEADERSHIP SMALL MOBILE
========================================= */

@media(max-width:480px){

    .leadership-image img{
        height:400px;

        /* SHOW MORE FACE */
        object-position:center 12%;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3f1ed54 *//* =========================================
   CTA
========================================= */

.cta{
    position:relative;

    width:100vw;

    margin-left:calc(50% - 50vw);

    display:flex;
    align-items:center;

    overflow:hidden;

    text-align:center;

    padding:140px 0;

    background:
    linear-gradient(rgba(0,0,0,.84), rgba(0,0,0,.88)),
    url('https://images.unsplash.com/photo-1494412651409-8963ce7935a7?q=80&w=1800&auto=format&fit=crop')
    center center/cover no-repeat;
}

.cta h2{
    max-width:850px;
    margin:auto;
    margin-bottom:25px;
}

.cta p{
    max-width:760px;
    margin:auto;
    margin-bottom:40px;
}/* End custom CSS */