/*====================================================

EMPBRIDGE
COMMON CSS

====================================================*/

/*==============================
RESET
==============================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:#ffffff;

    color:#222;

    overflow-x:hidden;

    line-height:1.7;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

    transition:.35s;

}

ul{

    list-style:none;

}

button{

    border:none;

    outline:none;

    cursor:pointer;

}

/*==============================
ROOT COLORS
==============================*/

:root{

    --primary:#06132B;

    --secondary:#D4AF37;

    --text:#2E3440;

    --light:#ffffff;

    --grey:#F7F8FA;

    --border:#E5E7EB;

    --shadow:0 15px 40px rgba(0,0,0,.08);

}

/*==============================
TYPOGRAPHY
==============================*/

h1,h2,h3,h4,h5{

    font-family:'Poppins',sans-serif;

    color:var(--primary);

    font-weight:700;

}

p{

    color:#5B6472;

    font-size:17px;

}

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    display:inline-block;

    color:var(--secondary);

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:18px;

    font-size:14px;

}

.section-title h2{

    font-size:44px;

    line-height:1.25;

    max-width:760px;

    margin:auto;

}

/*==============================
CONTAINER
==============================*/

.container{

    width:90%;

    max-width:1280px;

    margin:auto;

}

section{

    padding:110px 0;

}

/*==============================
HEADER
==============================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    background:rgba(6,19,43,.82);

    backdrop-filter:blur(12px);

    transition:.35s;

}

.header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:90px;

}

/*==============================
LOGO
==============================*/

.logo img{

    height:52px;

    width:auto;

}

/*==============================
NAVIGATION
==============================*/

.navbar ul{

    display:flex;

    align-items:center;

    gap:42px;

}

.navbar a{

    color:#ffffff;

    font-weight:500;

    font-size:15px;

    position:relative;

}

.navbar a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--secondary);

    transition:.35s;

}

.navbar a:hover::after{

    width:100%;

}

.navbar a:hover{

    color:var(--secondary);

}

.navbar .active{

    color:var(--secondary);

}

.navbar .active::after{

    width:100%;

}

/*==============================
MOBILE MENU
==============================*/

.mobile-menu{

    display:none;

    font-size:28px;

    color:#ffffff;

    cursor:pointer;

}

/*==============================
BUTTONS
==============================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:6px;

    font-family:'Poppins',sans-serif;

    font-size:15px;

    font-weight:600;

    transition:.35s ease;

    cursor:pointer;

}

.btn-primary{

    background:var(--secondary);

    color:var(--primary);

    border:2px solid var(--secondary);

}

.btn-primary:hover{

    background:transparent;

    color:var(--secondary);

}

.btn-outline{

    background:transparent;

    color:var(--light);

    border:2px solid rgba(255,255,255,.35);

}

.btn-outline:hover{

    background:var(--secondary);

    border-color:var(--secondary);

    color:var(--primary);

}

.header-btn{

    background:var(--secondary);

    color:var(--primary);

    border:2px solid var(--secondary);

    padding:12px 28px;

}

.header-btn:hover{

    background:transparent;

    color:var(--secondary);

}


/*==============================
COMMON GRID
==============================*/

.grid-2{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:60px;

    align-items:center;

}

.grid-3{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.grid-4{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}


/*==============================
COMMON CARD
==============================*/

.card{

    background:#ffffff;

    border:1px solid var(--border);

    border-radius:12px;

    padding:35px;

    transition:.35s ease;

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}


/*==============================
ICON BOX
==============================*/

.icon-box{

    width:72px;

    height:72px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(212,175,55,.12);

    margin-bottom:25px;

}

.icon-box i{

    font-size:28px;

    color:var(--secondary);

}


/*==============================
SECTION SPACING
==============================*/

.mb-20{

    margin-bottom:20px;

}

.mb-30{

    margin-bottom:30px;

}

.mb-40{

    margin-bottom:40px;

}

.text-center{

    text-align:center;

}


/*==============================
IMAGE
==============================*/

.image-radius{

    border-radius:16px;

    overflow:hidden;

}

.image-shadow{

    box-shadow:var(--shadow);

}


/*==============================
TRANSITIONS
==============================*/

a,
button,
.card,
img{

    transition:.35s ease;

}


/*==============================
COMMON BACKGROUND
==============================*/

.bg-light{

    background:var(--grey);

}

.bg-dark{

    background:var(--primary);

    color:var(--light);

}


/*==============================
SCROLL TO TOP
==============================*/

.scroll-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:50px;

    height:50px;

    border-radius:50%;

    background:var(--secondary);

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    cursor:pointer;

    box-shadow:var(--shadow);

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:all .35s ease;

    z-index:999;

}

.scroll-top.active{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.scroll-top:hover{

    transform:translateY(-5px);

}


/*==============================
COMMON ANIMATIONS
==============================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.fade-up{

    animation:fadeUp .8s ease both;

}


/*==============================
COMMON HOVER EFFECTS
==============================*/

.hover-lift{

    transition:transform .35s ease, box-shadow .35s ease;

}

.hover-lift:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}


/*==============================
UTILITY CLASSES
==============================*/

.w-100{

    width:100%;

}

.d-flex{

    display:flex;

}

.align-center{

    align-items:center;

}

.justify-between{

    justify-content:space-between;

}

.justify-center{

    justify-content:center;

}

.text-white{

    color:var(--light);

}

.text-primary{

    color:var(--primary);

}

.text-secondary{

    color:var(--secondary);

}


/*==============================
CUSTOM SCROLLBAR
==============================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f1f1f1;

}

::-webkit-scrollbar-thumb{

    background:var(--secondary);

    border-radius:10px;

}

::-webkit-scrollbar-thumb:hover{

    background:#b89528;

}


/*==============================
SELECTION
==============================*/

::selection{

    background:var(--secondary);

    color:var(--primary);

}


/*==============================
FOCUS STATES
==============================*/

a:focus,
button:focus{

    outline:2px solid var(--secondary);

    outline-offset:3px;

}


/*==============================
PLACEHOLDER
==============================*/

::placeholder{

    color:#9aa3af;

    opacity:1;

}

header.sticky{

    background:#06132B;

    box-shadow:0 8px 30px rgba(0,0,0,.15);

}


/*==================================================
COMMON FOOTER
==================================================*/

.footer{

    position:relative;

    overflow:hidden;

    background:linear-gradient(135deg,#081a3d 0%,#17366f 100%);

    color:#ffffff;

    padding:80px 0 30px;

}

.footer::before{

    content:"";

    position:absolute;

    top:-180px;

    right:-180px;

    width:380px;

    height:380px;

    border-radius:50%;

    background:rgba(212,175,55,.06);

}

.footer::after{

    content:"";

    position:absolute;

    left:-150px;

    bottom:-150px;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

}

.footer .container{

    position:relative;

    z-index:2;

}



/*------------------------------------
Footer Grid
------------------------------------*/

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

    align-items:flex-start;

    margin-bottom:50px;

}



/*------------------------------------
Footer About
------------------------------------*/

.footer-about img{

    width:220px;

    height:auto;

    margin-bottom:25px;

    display:block;

}

.footer-about p{

    max-width:520px;

    color:rgba(255,255,255,.78);

    line-height:1.9;

    font-size:.98rem;

}



/*------------------------------------
Footer Titles
------------------------------------*/

.footer-links h3,

.footer-contact h3{

    position:relative;

    margin-bottom:28px;

    color:#ffffff;

    font-size:1.3rem;

    font-weight:600;

}

.footer-links h3::after,

.footer-contact h3::after{

    content:"";

    display:block;

    width:45px;

    height:3px;

    margin-top:10px;

    background:#d4af37;

}



/*------------------------------------
Footer Links
------------------------------------*/

.footer-links ul{

    list-style:none;

    margin:0;

    padding:0;

}

.footer-links li{

    margin-bottom:14px;

}

.footer-links a{

    color:rgba(255,255,255,.75);

    text-decoration:none;

    transition:.30s;

}

.footer-links a:hover{

    color:#d4af37;

    padding-left:6px;

}



/*------------------------------------
Footer Contact
------------------------------------*/

.footer-contact p{

    color:rgba(255,255,255,.75);

    line-height:1.9;

    margin-bottom:14px;

}



/*------------------------------------
Copyright
------------------------------------*/

.copyright{

    border-top:1px solid rgba(255,255,255,.10);

    padding-top:28px;

    text-align:center;

    color:rgba(255,255,255,.60);

    font-size:.92rem;

}



/*------------------------------------
Responsive
------------------------------------*/

@media(max-width:992px){

    .mobile-menu{
        display:flex;
    }



.footer{

padding:70px 0 30px;

}

.footer-grid{

grid-template-columns:1fr;

gap:45px;

text-align:center;

}

.footer-about img{

margin:auto auto 25px;

}

.footer-about p{

margin:auto;

}

.footer-links h3::after,

.footer-contact h3::after{

margin:10px auto 0;

}

}



@media(max-width:576px){

.footer{

padding:60px 0 25px;

}

.footer-about img{

width:180px;

}

.footer-links h3,

.footer-contact h3{

font-size:1.15rem;

}

.copyright{

font-size:.85rem;

}

}

/*==================================================
FOOTER CTA
==================================================*/

.footer-cta{

    background:#ffffff;

    padding:0;

    margin-bottom:-70px;

    position:relative;

    z-index:10;

}

.footer-cta-box{

    background:linear-gradient(135deg,#081a3d,#17366f);

    border-radius:28px;

    padding:55px 60px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:50px;

    box-shadow:0 30px 70px rgba(8,26,61,.20);

}

.footer-cta-content{

    flex:1;

}

.footer-cta-content span{

    display:inline-block;

    margin-bottom:15px;

    color:#d4af37;

    font-size:.85rem;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.footer-cta-content h2{

    color:#ffffff;

    font-size:2.5rem;

    margin-bottom:18px;

}

.footer-cta-content p{

    color:rgba(255,255,255,.85);

    line-height:1.8;

    max-width:700px;

}

.footer-cta-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.footer-cta-buttons .btn{

    min-width:210px;

}

.footer-cta-buttons .btn-outline{

    border:2px solid #d4af37;

    color:#ffffff;

    background:transparent;

}

.footer-cta-buttons .btn-outline:hover{

    background:#d4af37;

    color:#081a3d;

}



/*==================================
Responsive
==================================*/

@media(max-width:992px){

.footer-cta{

margin-bottom:-50px;

}

.footer-cta-box{

flex-direction:column;

text-align:center;

padding:45px;

}

.footer-cta-buttons{

justify-content:center;

}

}



@media(max-width:768px){

.footer-cta{

margin-bottom:-40px;

}

.footer-cta-box{

padding:35px 25px;

}

.footer-cta-content h2{

font-size:2rem;

}

.footer-cta-buttons{

flex-direction:column;

width:100%;

}

.footer-cta-buttons .btn{

width:100%;

max-width:300px;

}

}

/*==================================================
PREMIUM FOOTER
==================================================*/

.footer{

    background:#06142d;

    color:#ffffff;

    padding:90px 0 0;

    position:relative;

    overflow:hidden;

}

.footer::before{

    content:"";

    position:absolute;

    top:-180px;

    right:-180px;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(212,175,55,.05);

}

.footer::after{

    content:"";

    position:absolute;

    left:-140px;

    bottom:-140px;

    width:300px;

    height:300px;

    border-radius:50%;

    background:rgba(255,255,255,.03);

}

.footer .container{

    position:relative;

    z-index:2;

}



/*==================================
Footer Top
==================================*/

.footer-top{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:60px;

    padding-bottom:60px;

    border-bottom:1px solid rgba(255,255,255,.08);

}



/*==================================
Logo
==================================*/

.footer-logo{

    height:60px;

    margin-bottom:22px;

}



/*==================================
About
==================================*/

.footer-about p{

    color:rgba(255,255,255,.75);

    line-height:1.9;

    margin-bottom:28px;

    font-size:.96rem;

}

.footer-slogan{

    color:#d4af37;

    font-weight:600;

    margin-bottom:24px;

    letter-spacing:.5px;

}



/*==================================
Contact
==================================*/

.footer-contact{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.footer-contact a{

    color:rgba(255,255,255,.80);

    text-decoration:none;

    transition:.3s;

}

.footer-contact a i{

    color:#d4af37;

    width:24px;

}

.footer-contact a:hover{

    color:#d4af37;

}



/*==================================
Columns
==================================*/

.footer-column h4{

    color:#ffffff;

    margin-bottom:28px;

    font-size:1.15rem;

    position:relative;

}

.footer-column h4::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:45px;

    height:3px;

    background:#d4af37;

}

.footer-column ul{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-column ul li{

    margin-bottom:15px;

}

.footer-column ul li a{

    color:rgba(255,255,255,.75);

    text-decoration:none;

    transition:.3s;

}

.footer-column ul li a:hover{

    color:#d4af37;

    padding-left:6px;

}



/*==================================
Footer Bottom
==================================*/

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:25px;

    padding:30px 0;

}

.footer-copyright{

    color:rgba(255,255,255,.65);

    font-size:.9rem;

}

.footer-tagline{

    color:#d4af37;

    font-weight:600;

    text-align:center;

}

.footer-social{

    display:flex;

    gap:14px;

}

.footer-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

    color:#ffffff;

    text-decoration:none;

    transition:.35s;

}

.footer-social a:hover{

    background:#d4af37;

    color:#081a3d;

    transform:translateY(-4px);

}



/*==================================
Responsive
==================================*/

@media(max-width:992px){

.footer-top{

grid-template-columns:1fr 1fr;

gap:45px;

}

.footer-bottom{

flex-direction:column;

text-align:center;

}

}



@media(max-width:768px){

.footer{

padding-top:70px;

}

.footer-top{

grid-template-columns:1fr;

gap:40px;

}

.footer-logo{

height:54px;

}

.footer-column h4{

margin-bottom:22px;

}

.footer-column ul li{

margin-bottom:12px;

}

.footer-social{

justify-content:center;

}

}

/*==================================================
MOBILE NAVIGATION
==================================================*/

@media (max-width:992px){

    .header .container{

    position:relative;

}

.navbar{

    display:none;

}

.navbar.active{

    display:block;

}

    .navbar{

        position:fixed;

        top:90px;

        right:-100%;

        width:320px;

        height:calc(100vh - 90px);

        background:#06132B;

        transition:.35s ease;

        padding:40px 30px;

        overflow-y:auto;

        z-index:999;

    }

    .navbar.active{

        right:0;

    }

    .navbar ul{

        display:flex;

        flex-direction:column;

        align-items:flex-start;

        gap:28px;

    }

    .header-btn{

        display:none;

    }

    .mobile-menu{

    display:flex;

    align-items:center;

    justify-content:center;

    width:44px;

    height:44px;

    background:none;

    color:#ffffff;

    font-size:30px;

    z-index:1001;

}

}

/*==================================================
MOBILE MENU OVERLAY
==================================================*/

.mobile-overlay{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.55);

    backdrop-filter:blur(4px);

    opacity:0;

    visibility:hidden;

    transition:.35s ease;

    z-index:998;

}

.mobile-overlay.active{

    opacity:1;

    visibility:visible;

}

body.menu-open{

    overflow:hidden;

}