/* ==========================================
   RESET
========================================== */

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

body{
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
}

/* ==========================================
   HEADER
========================================== */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#0B5ED7;
    box-shadow:0 5px 20px rgba(0,0,0,.25);
    z-index:1000;
}

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

.navbar{
    max-width:1400px;
    margin:auto;
    height:80px;
    padding:0 60px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* ==========================================
   LOGO
========================================== */

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.logo-circle{
    width:52px;
    height:52px;

    border-radius:50%;

    background:#FFFFFF;

    border:3px solid #D4AF37;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#0B5ED7;

    font-size:22px;
    font-weight:700;

    transition:.35s;
}

.logo:hover .logo-circle{
    transform:rotate(360deg);
}

.logo-text h2{
    color:#FFFFFF;
    font-size:20px;
    line-height:1.2;
}

.logo-text p{
    color:#F4C542;
    font-size:12px;
    letter-spacing:1px;
}

/* ==========================================
   NAV LINKS
========================================== */

.nav-links{
    display:flex;
    align-items:center;
    gap:35px;
    list-style:none;
}

.nav-links a{
    color:#FFFFFF;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    position:relative;
    transition:.3s;
}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:3px;

    background:#D4AF37;

    transition:.35s;

}

.nav-links a:hover,
.nav-links a.active{

    color:#F4C542;

}

.nav-links a:hover::after,
.nav-links a.active::after{

    width:100%;

}

/* ==========================================
   HAMBURGER
========================================== */

.hamburger{

    width:35px;

    display:none;

    cursor:pointer;

}

.hamburger span{

    display:block;

    width:100%;

    height:4px;

    background:#FFFFFF;

    margin:6px 0;

    border-radius:20px;

    transition:.3s;

}

/* ==========================================
   TABLET
========================================== */

@media(max-width:992px){

.navbar{

padding:0 25px;

}

.nav-links{

position:fixed;

top:80px;

right:-100%;

width:300px;

height:calc(100vh - 80px);

background:#050505;

display:flex;

flex-direction:column;

justify-content:flex-start;

align-items:flex-start;

padding:40px 30px;

gap:30px;

transition:.4s;

}

.nav-links.active{

right:0;

}

.nav-links a{

font-size:17px;

color:#FFFFFF;

}

.hamburger{

display:block;

}

}

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

@media(max-width:768px){

.navbar{

height:70px;

padding:0 18px;

}

.logo-circle{

width:46px;

height:46px;

font-size:20px;

}

.logo-text h2{

font-size:16px;

}

.logo-text p{

font-size:10px;

}

.nav-links{

top:70px;

height:calc(100vh - 70px);

width:100%;

}

}

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

@media(max-width:430px){

.logo{

gap:8px;

}

.logo-circle{

width:42px;

height:42px;

font-size:18px;

}

.logo-text h2{

font-size:14px;

}

.logo-text p{

font-size:9px;

}

.hamburger{

width:30px;

}

}

/* ==========================================
   ABOUT HERO
========================================== */

.about-hero{

    position:relative;

    width:100%;

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:140px 8% 80px;

    background:
    linear-gradient(
        rgba(0,0,0,.75),
        rgba(0,0,0,.85)
    ),
    url("../images/about/about-banner.jpg");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

/* ==========================================
   HERO OVERLAY
========================================== */

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.15);

}

/* ==========================================
   HERO CONTENT
========================================== */

.hero-content{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

}

.hero-tag{

    display:inline-block;

    padding:12px 28px;

    background:#0B5ED7;

    color:#FFFFFF;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

    margin-bottom:25px;

}

.hero-content h1{

    font-size:62px;

    color:#FFFFFF;

    line-height:1.2;

    margin-bottom:25px;

    font-weight:700;

}

.hero-content p{

    max-width:750px;

    margin:0 auto 40px;

    color:#D8D8D8;

    font-size:18px;

    line-height:1.9;

}

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

.hero-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary{

    display:inline-block;

    background:#D4AF37;

    color:#FFFFFF;

    text-decoration:none;

    padding:16px 36px;

    border-radius:10px;

    font-weight:600;

    transition:.35s;

}

.btn-primary:hover{

    background:#FFFFFF;

    color:#050505;

}

.btn-secondary{

    display:inline-block;

    border:2px solid #FFFFFF;

    color:#FFFFFF;

    text-decoration:none;

    padding:16px 36px;

    border-radius:10px;

    font-weight:600;

    transition:.35s;

}

.btn-secondary:hover{

    background:#0B5ED7;

    border-color:#0B5ED7;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px){

.hero-content h1{

font-size:48px;

}

}

@media(max-width:768px){

.about-hero{

min-height:85vh;

padding:120px 20px 70px;

}

.hero-tag{

font-size:13px;

padding:10px 20px;

}

.hero-content h1{

font-size:36px;

}

.hero-content p{

font-size:16px;

}

.hero-buttons{

flex-direction:column;

width:100%;

}

.btn-primary,
.btn-secondary{

width:100%;

text-align:center;

}

}

@media(max-width:480px){

.about-hero{

padding:100px 20px 60px;

}

.hero-content h1{

font-size:30px;

}

.hero-content p{

font-size:15px;

}

.hero-tag{

font-size:12px;

}

}

/* ==========================================
   WHY CHOOSE US
========================================== */

.why-us{

    padding:100px 8%;

    background:#080808;

}

.section-heading{

    text-align:center;

    max-width:800px;

    margin:0 auto 70px;

}

.section-heading span{

    color:#D4AF37;

    font-size:15px;

    font-weight:600;

    letter-spacing:2px;

}

.section-heading h2{

    margin:15px 0;

    font-size:42px;

    color:#FFFFFF;

}

.section-heading p{

    color:#CFCFCF;

    line-height:1.8;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.why-card{

    background:#111111;

    border-radius:18px;

    padding:35px;

    text-align:center;

    border:1px solid rgba(212,175,55,.15);

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:0 15px 35px rgba(212,175,55,.18);

}

.icon{

    width:75px;

    height:75px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#0B5ED7;

    display:flex;

    justify-content:center;

    align-items:center;

}

.icon i{

    color:#FFFFFF;

    font-size:28px;

}

.why-card h3{

    color:#FFFFFF;

    margin-bottom:15px;

}

.why-card p{

    color:#CFCFCF;

    line-height:1.8;

}

@media(max-width:992px){

.why-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.why-us{

padding:80px 20px;

}

.section-heading h2{

font-size:32px;

}

.why-grid{

grid-template-columns:1fr;

}

}

/* ==========================================
   WHO WE ARE
========================================== */

.who-we-are{

    background:#0A0A0A;

    padding:100px 8%;

}

.who-container{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

/* ==========================================
   IMAGE
========================================== */

.who-image{

    overflow:hidden;

    border-radius:20px;

    border:2px solid rgba(212,175,55,.20);

    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.who-image img{

    width:100%;

    display:block;

    transition:.5s;

}

.who-image:hover img{

    transform:scale(1.05);

}

/* ==========================================
   CONTENT
========================================== */

.who-content span{

    display:inline-block;

    color:#D4AF37;

    font-size:14px;

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:15px;

}

.who-content h2{

    color:#FFFFFF;

    font-size:42px;

    line-height:1.2;

    margin-bottom:25px;

}

.who-content p{

    color:#CFCFCF;

    font-size:16px;

    line-height:1.9;

    margin-bottom:20px;

}

/* ==========================================
   FEATURES
========================================== */

.who-features{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

    margin:35px 0;

}

.feature{

    display:flex;

    align-items:center;

    gap:12px;

    background:#121212;

    padding:16px;

    border-radius:12px;

    border:1px solid rgba(212,175,55,.12);

    transition:.3s;

}

.feature:hover{

    border-color:#D4AF37;

    transform:translateY(-4px);

}

.feature i{

    color:#0B5ED7;

    font-size:20px;

}

.feature span{

    color:#FFFFFF;

    font-size:15px;

    font-weight:500;

    margin:0;

}

/* ==========================================
   BUTTON
========================================== */

.who-content .btn-primary{

    display:inline-block;

    padding:15px 35px;

    background:#0B5ED7;

    color:#FFFFFF;

    text-decoration:none;

    border-radius:8px;

    font-weight:600;

    transition:.3s;

}

.who-content .btn-primary:hover{

    background:#D4AF37;

    color:#050505;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px){

    .who-container{

        grid-template-columns:1fr;

        gap:50px;

    }

    .who-content{

        text-align:center;

    }

    .who-features{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .who-we-are{

        padding:80px 20px;

    }

    .who-content h2{

        font-size:32px;

    }

    .who-content p{

        font-size:15px;

    }

}

@media(max-width:480px){

    .who-content h2{

        font-size:28px;

    }

    .feature{

        padding:14px;

    }

    .feature span{

        font-size:14px;

    }

}

/* ==========================================
   OUR CORE VALUES
========================================== */

.core-values{

    padding:100px 8%;

    background:#050505;

}

/* ==========================================
   SECTION TITLE
========================================== */

.section-title{

    max-width:800px;

    margin:0 auto 70px;

    text-align:center;

}

.section-title span{

    display:inline-block;

    color:#D4AF37;

    font-size:15px;

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:15px;

}

.section-title h2{

    color:#FFFFFF;

    font-size:42px;

    margin-bottom:20px;

    line-height:1.3;

}

.section-title p{

    color:#CFCFCF;

    font-size:17px;

    line-height:1.9;

}

/* ==========================================
   VALUES GRID
========================================== */

.values-grid{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

/* ==========================================
   VALUE CARD
========================================== */

.value-card{

    background:#101010;

    padding:40px 30px;

    border-radius:18px;

    border:1px solid rgba(212,175,55,.15);

    text-align:center;

    transition:.35s ease;

}

.value-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:0 15px 35px rgba(212,175,55,.15);

}

/* ==========================================
   ICON
========================================== */

.value-icon{

    width:75px;

    height:75px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#0B5ED7;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.35s;

}

.value-card:hover .value-icon{

    background:#D4AF37;

}

.value-icon i{

    color:#FFFFFF;

    font-size:30px;

}

/* ==========================================
   CARD CONTENT
========================================== */

.value-card h3{

    color:#FFFFFF;

    font-size:24px;

    margin-bottom:18px;

}

.value-card p{

    color:#CFCFCF;

    font-size:15px;

    line-height:1.8;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px){

    .values-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .core-values{

        padding:80px 20px;

    }

    .section-title h2{

        font-size:32px;

    }

    .section-title p{

        font-size:15px;

    }

    .values-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:480px){

    .section-title h2{

        font-size:28px;

    }

    .value-card{

        padding:30px 20px;

    }

    .value-icon{

        width:65px;

        height:65px;

    }

    .value-icon i{

        font-size:26px;

    }

}

/* ==========================================
   COMPANY STATISTICS
========================================== */

.company-stats{

    background:#0B0B0B;

    padding:100px 8%;

}

.stats-header{

    max-width:800px;

    margin:auto;

    text-align:center;

    margin-bottom:70px;

}

.stats-header span{

    color:#D4AF37;

    font-size:15px;

    letter-spacing:2px;

    font-weight:600;

}

.stats-header h2{

    color:#FFFFFF;

    font-size:42px;

    margin:18px 0;

}

.stats-header p{

    color:#CCCCCC;

    line-height:1.9;

}

.stats-grid{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-card{

    background:#141414;

    border:1px solid rgba(212,175,55,.15);

    border-radius:18px;

    padding:45px 20px;

    text-align:center;

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:0 20px 40px rgba(212,175,55,.15);

}

.stat-card i{

    font-size:42px;

    color:#0B5ED7;

    margin-bottom:20px;

}

.stat-card h3{

    font-size:46px;

    color:#FFFFFF;

    margin-bottom:10px;

}

.stat-card p{

    color:#CFCFCF;

    font-size:17px;

}

@media(max-width:992px){

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.company-stats{

padding:80px 20px;

}

.stats-header h2{

font-size:32px;

}

.stats-grid{

grid-template-columns:1fr;

}

.stat-card h3{

font-size:38px;

}

}

/* ==========================================
   LEADERSHIP TEAM
========================================== */

.leadership{

    background:#080808;

    padding:100px 8%;

}

.leadership-grid{

    max-width:1400px;

    margin:70px auto 0;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.leader-card{

    background:#121212;

    border:1px solid rgba(212,175,55,.15);

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

}

.leader-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:0 20px 40px rgba(212,175,55,.15);

}

.leader-card img{

    width:160px;

    height:160px;

    object-fit:cover;

    border-radius:50%;

    border:4px solid #0B5ED7;

    margin-bottom:25px;

}

.leader-card h3{

    color:#FFFFFF;

    font-size:24px;

    margin-bottom:8px;

}

.leader-card h4{

    color:#D4AF37;

    font-size:16px;

    margin-bottom:20px;

    font-weight:600;

}

.leader-card p{

    color:#CFCFCF;

    line-height:1.8;

    margin-bottom:25px;

}

.leader-social{

    display:flex;

    justify-content:center;

    gap:15px;

}

.leader-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#0B5ED7;

    color:#FFFFFF;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    transition:.3s;

}

.leader-social a:hover{

    background:#D4AF37;

    color:#050505;

}

@media(max-width:992px){

    .leadership-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .leadership{

        padding:80px 20px;

    }

    .leadership-grid{

        grid-template-columns:1fr;

    }

}

/* ==========================================
   CALL TO ACTION
========================================== */

.about-cta{

    padding:110px 8%;

    background:linear-gradient(
        rgba(11,94,215,.95),
        rgba(6,43,108,.95)
    );

}

.cta-container{

    max-width:900px;

    margin:auto;

    text-align:center;

}

.cta-container span{

    display:inline-block;

    background:rgba(255,255,255,.12);

    color:#FFFFFF;

    padding:10px 22px;

    border-radius:30px;

    font-size:14px;

    letter-spacing:1px;

    margin-bottom:25px;

}

.cta-container h2{

    color:#FFFFFF;

    font-size:48px;

    line-height:1.3;

    margin-bottom:25px;

}

.cta-container p{

    color:#F2F2F2;

    font-size:18px;

    line-height:1.9;

    max-width:700px;

    margin:0 auto 45px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-buttons a{

    text-decoration:none;

    padding:16px 35px;

    border-radius:10px;

    font-weight:600;

    transition:.35s;

}

/* Primary */

.cta-primary{

    background:#D4AF37;

    color:#050505;

}

.cta-primary:hover{

    background:#FFFFFF;

}

/* Secondary */

.cta-secondary{

    background:#FFFFFF;

    color:#0B5ED7;

}

.cta-secondary:hover{

    background:#D4AF37;

    color:#050505;

}

/* Outline */

.cta-outline{

    border:2px solid #FFFFFF;

    color:#FFFFFF;

}

.cta-outline:hover{

    background:#FFFFFF;

    color:#0B5ED7;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:768px){

.about-cta{

padding:80px 20px;

}

.cta-container h2{

font-size:34px;

}

.cta-container p{

font-size:16px;

}

.cta-buttons{

flex-direction:column;

}

.cta-buttons a{

width:100%;

text-align:center;

}

}

@media(max-width:480px){

.cta-container h2{

font-size:28px;

}

}

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

.footer{

    background:#050505;

    padding:80px 8% 25px;

    border-top:2px solid #0B5ED7;

}

.footer-container{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.5fr;

    gap:45px;

}

.footer-box h3{

    color:#D4AF37;

    margin-bottom:20px;

    font-size:22px;

}

.footer-box p{

    color:#CCCCCC;

    line-height:1.9;

}

.footer-box ul{

    list-style:none;

}

.footer-box ul li{

    margin-bottom:14px;

}

.footer-box ul li a{

    color:#CCCCCC;

    text-decoration:none;

    transition:.3s;

}

.footer-box ul li a:hover{

    color:#D4AF37;

    padding-left:8px;

}

/* Logo */

.footer-logo{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:25px;

}

.footer-logo-circle{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#FFFFFF;

    border:3px solid #D4AF37;

    color:#0B5ED7;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:bold;

    font-size:22px;

}

.footer-logo h2{

    color:#FFFFFF;

}

.footer-logo p{

    color:#D4AF37;

}

/* Contact */

.footer-box i{

    color:#0B5ED7;

    margin-right:10px;

}

/* Social */

.footer-social{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.footer-social a{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#111111;

    color:#FFFFFF;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.35s;

    text-decoration:none;

}

.footer-social a:hover{

    background:#0B5ED7;

    transform:translateY(-5px);

}

/* Bottom */

.footer hr{

    border:none;

    height:1px;

    background:#222;

    margin:50px 0 25px;

}

.footer-bottom{

    text-align:center;

}

.footer-bottom p{

    color:#AAAAAA;

}

/* Responsive */

@media(max-width:992px){

.footer-container{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.footer{

padding:70px 20px 25px;

}

.footer-container{

grid-template-columns:1fr;

}

.footer-box{

text-align:center;

}

.footer-logo{

justify-content:center;

}

.footer-social{

justify-content:center;

}

}