/* =========================
   GLOBAL SETTINGS
========================= */

:root{
    --primary:#081625;
    --secondary:#0f2138;
    --gold:#b9975b;
    --white:#ffffff;
    --light:#f5f7fa;
    --dark:#000000;
}

html{
    scroll-behavior:smooth;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height:1.7;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

/* =========================
   NAVBAR
========================= */

.custom-nav{
    background:rgba(8,22,37,.92);
    backdrop-filter:blur(12px);
    padding:15px 0;
    transition:all .3s ease;
}

.navbar-brand{
    font-weight:700;
    letter-spacing:1px;
}

.nav-link{
    color:white !important;
    margin-left:15px;
}

.nav-link:hover{
    color:var(--gold) !important;
}

.navbar-brand img{
    height:50px;
    width:auto;
}

.navbar-brand{
    font-weight:700;
    display:flex;
    align-items:center;
}

/* =========================
   HERO SECTION
========================= */

.hero-section{
    height:100vh;
    background:url('../images/hero.jpg');
    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    align-items:center;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.65);
}

.hero-content{
    position:relative;
    z-index:2;
    color:white;
}

.hero-content h1{
    font-size:4rem;
    font-weight:700;
    margin-bottom:20px;
}

.hero-content p{
    font-size:1.3rem;
    max-width:700px;
}

/* =========================
   BUTTONS
========================= */

.btn-gold{
    background:var(--gold);
    color:white;
    padding:14px 35px;
    border-radius:5px;
    display:inline-block;
    margin-top:20px;
}

.btn-gold:hover{
    background:#987744;
    color:white;
}

/* =========================
   SECTIONS
========================= */

.section-padding{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-weight:700;
    color:var(--primary);
}

/* =========================
   CARDS
========================= */

.feature-card{
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    height:100%;
    transition:all .3s ease;
}

.feature-card:hover{
    transform:translateY(-8px);
}

.feature-card h4{
    color:var(--primary);
}

/* =========================
   CTA
========================= */

.cta-section{
    background:var(--primary);
    color:white;
    padding:80px 0;
}

/* =========================
   FOOTER
========================= */

footer{
    background:black;
    color:white;
    padding:50px 0;
}

footer h5{
    margin-bottom:15px;
}

footer p{
    color:#d3d3d3;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

.hero-content h1{
    font-size:2.5rem;
}

.hero-content p{
    font-size:1rem;
}

}
/* LEADERSHIP IMAGE */

.leader-image{
    width:100%;
    max-width:380px;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    transition:all .3s ease;
}

.leader-image:hover{
    transform:translateY(-8px);
}

/* ===================================
   PREMIUM HERO SECTION
=================================== */

.video-hero{
    position:relative;
    height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
}

.video-hero video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.video-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:linear-gradient(
        to right,
        rgba(8,22,37,.92),
        rgba(8,22,37,.70)
    );
}

.hero-inner{
    position:relative;
    z-index:10;
    color:white;
}

.hero-tag{
    display:inline-block;
    padding:10px 18px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.20);
    backdrop-filter:blur(10px);
    border-radius:50px;
    margin-bottom:20px;
}

.hero-inner h1{
    font-size:5rem;
    font-weight:700;
    line-height:1.1;
    max-width:900px;
}

.hero-inner p{
    max-width:700px;
    font-size:1.2rem;
    margin-top:25px;
}

.hero-buttons{
    margin-top:35px;
}

.btn-outline-light-custom{
    border:1px solid white;
    color:white;
    padding:14px 35px;
    margin-left:15px;
}

.btn-outline-light-custom:hover{
    background:white;
    color:black;
}

.scroll-indicator{
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
    color:white;
    z-index:10;
    animation:bounce 2s infinite;
}

@keyframes bounce{
    0%,20%,50%,80%,100%{
        transform:translateX(-50%) translateY(0);
    }

    40%{
        transform:translateX(-50%) translateY(-10px);
    }

    60%{
        transform:translateX(-50%) translateY(-5px);
    }
}

@media(max-width:768px){

.hero-inner h1{
    font-size:2.7rem;
}

.hero-inner p{
    font-size:1rem;
}

.btn-outline-light-custom{
    display:block;
    margin-left:0;
    margin-top:15px;
}

}

.service-image{
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
}

.dropdown-menu{
    border:none;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
}

.dropdown-item{
    padding:10px 20px;
}

.dropdown-item:hover{
    background:#f5f5f5;
}

/* ==========================
   STATS SECTION
========================== */

.stats-section{
    background:#081625;
    color:white;
    padding:80px 0;
}

.stat-card{
    text-align:center;
}

.stat-number{
    font-size:3rem;
    font-weight:700;
    color:#b9975b;
}

/* ==========================
   GLOBAL PRESENCE
========================== */

.presence-card{
    background:white;
    padding:35px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    height:100%;
}

/* ==========================
   PARTNER LOGOS
========================== */

.logo-box{
    background:white;
    border:1px solid #eee;
    padding:25px;
    text-align:center;
    border-radius:10px;
    font-weight:600;
    height:100%;
}

/* ==========================
   LEADERSHIP PREVIEW
========================== */

.executive-preview{
    background:#f5f7fa;
}

/* =================================
   ABOUT PAGE PREMIUM COMPONENTS
================================= */

.page-banner{
    background:linear-gradient(
        135deg,
        #081625,
        #10263f
    );
    color:white;
    padding:100px 40px;
    border-radius:20px;
    text-align:center;
}

.page-banner h1{
    font-size:3.5rem;
    margin-bottom:20px;
}

.value-card{
    background:white;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
    transition:.3s;
}

.value-card:hover{
    transform:translateY(-8px);
}

.timeline-card{
    background:#f5f7fa;
    padding:30px;
    border-left:5px solid #b9975b;
    margin-bottom:20px;
    border-radius:10px;
}

/* =================================
   SERVICES PAGE
================================= */

.service-process{
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    text-align:center;
    height:100%;
    transition:.3s;
}

.service-process:hover{
    transform:translateY(-8px);
}

.process-number{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#081625;
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.5rem;
    font-weight:bold;
    margin:0 auto 20px;
}

.trust-badge{
    background:#f5f7fa;
    padding:25px;
    border-radius:12px;
    text-align:center;
    height:100%;
}

/* CTA SECTION */

.cta-section{
    background: linear-gradient(
        135deg,
        #0b1f3a,
        #132f57
    );

    color:white;

    padding:100px 0;

    text-align:center;
}

.cta-section h2{
    font-size:2.5rem;
    font-weight:700;
    margin-bottom:20px;
}

.cta-section p{
    max-width:800px;
    margin:auto;
    margin-bottom:35px;
    opacity:0.9;
}

footer a{
    color:#d3d3d3;
}

footer a:hover{
    color:#b9975b;
}