/*====================================
GOOGLE FONT & RESET
====================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

body{
    background:#ffffff;
    color:#222;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

section{
    padding:100px 8%;
}

a{
    text-decoration:none;
}

/*====================================
NAVBAR
====================================*/

header{
    width:100%;
    height:80px;
    background:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 90px;
    position:fixed;
    top:0;
    left:0;
    z-index:9999;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.logo{
    display:flex;
    flex-direction:column;
    line-height:1;
}

.logo h2{
    font-size:34px;
    font-weight:800;
    color:#163c8c;
}

.logo span{
    font-size:14px;
    letter-spacing:5px;
    font-weight:600;
    color:#163c8c;
}

nav ul{
    display:flex;
    list-style:none;
    gap:45px;
}

nav a{
    text-decoration:none;
    color:#222;
    font-weight:500;
    transition:.35s;
}

nav a:hover,
nav .active{
    color:#d4a22c;
}

/*====================================
HERO
====================================*/

.about-hero{

    margin-top:80px;
    height:75vh;

    background:linear-gradient(rgba(10,20,50,.15), rgba(10,20,50,.15)),
    url("../images/about-banner.jpg") center center/cover no-repeat;
    background-color:#0e1b3f;

    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;
}

.overlay{

    position:absolute;
    inset:0;

    background:rgba(10,20,50,.55);

}

.hero-content{

    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
    width:800px;
    max-width:90%;

}

.hero-content h4{

    letter-spacing:3px;
    color:#d4a22c;
    margin-bottom:15px;

}

.hero-content h1{

    font-size:70px;
    margin-bottom:20px;

}

.hero-content p{

    font-size:20px;
    line-height:1.8;
    color:#eef1f8;

}

/*====================================
ABOUT COMPANY
====================================*/

.about-company{

display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;

}

.about-left small{

color:#d4a22c;
font-weight:600;
letter-spacing:2px;

}

.about-left h2{

font-size:48px;
margin:20px 0;

color:#163c8c;

}

.about-left p{

font-size:18px;
line-height:1.9;
margin-bottom:25px;
color:#666;

}

.about-right{

display:flex;
justify-content:center;

}

.about-right img{

width:100%;
max-width:600px;

border-radius:20px;

box-shadow:0 25px 60px rgba(0,0,0,.18);

transition:.4s;

}

.about-right img:hover{

transform:scale(1.03);

}

/*====================================
BUTTON
====================================*/

.btn{

display:inline-flex;

align-items:center;
justify-content:center;

width:220px;
height:60px;

background:linear-gradient(135deg,#e8bb4c,#d4a22c);

color:#18163d;

text-decoration:none;

font-weight:700;

border-radius:50px;

box-shadow:0 10px 25px rgba(212,162,44,.3);

transition:.35s;

}

.btn:hover{

transform:translateY(-3px);

box-shadow:0 14px 30px rgba(212,162,44,.42);

}

/*====================================
STATS
====================================*/

.stats{

    background:#f7f8fb;
    text-align:center;

}

.stats .title small{

    color:#d4a22c;
    font-weight:600;
    letter-spacing:2px;

}

.stats .title h2{

    color:#163c8c;
    font-size:36px;
    margin:16px auto 50px;
    max-width:650px;
    line-height:1.4;

}

.stats-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;

}

.stats-grid .card{

    background:#fff;
    border-radius:16px;
    padding:40px 24px;
    box-shadow:0 12px 30px rgba(0,0,0,.06);
    transition:.35s;

}

.stats-grid .card:hover{

    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.1);

}

.stats-grid .card i{

    font-size:34px;
    color:#d4a22c;
    margin-bottom:18px;

}

.stats-grid .card h2{

    font-size:34px;
    color:#163c8c;
    margin-bottom:8px;

}

.stats-grid .card p{

    color:#666;
    font-size:15px;
    font-weight:500;

}

/*====================================
WHY US
====================================*/

.why{

    display:flex;
    align-items:center;
    gap:70px;

}

.why-image{

    flex:1;

}

.why-image img{

    width:100%;
    border-radius:20px;
    box-shadow:0 25px 60px rgba(0,0,0,.15);

}

.why-content{

    flex:1;

}

.why-content small{

    color:#d4a22c;
    font-weight:600;
    letter-spacing:2px;

}

.why-content h2{

    font-size:36px;
    color:#163c8c;
    margin:16px 0;
    line-height:1.35;

}

.why-content > p{

    color:#666;
    font-size:16px;
    line-height:1.8;
    margin-bottom:36px;

}

.features{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;

}

.features > div{

    background:#f7f8fb;
    border-radius:14px;
    padding:26px 22px;
    transition:.3s;

}

.features > div:hover{

    background:#fff;
    box-shadow:0 12px 28px rgba(0,0,0,.08);
    transform:translateY(-4px);

}

.features i{

    font-size:26px;
    color:#163c8c;
    margin-bottom:12px;
    display:block;

}

.features h3{

    font-size:17px;
    color:#18163d;
    margin-bottom:8px;

}

.features p{

    font-size:14px;
    color:#777;
    line-height:1.6;

}

/*====================================
TEAM
====================================*/

.team{

    text-align:center;
    background:#f7f8fb;

}

.team > small{

    color:#d4a22c;
    font-weight:600;
    letter-spacing:2px;

}

.team > h2{

    font-size:36px;
    color:#163c8c;
    margin:16px 0 50px;

}

.team-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:35px;

}

.member{

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;

}

.member:hover{

    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.14);

}

.member img{

    width:100%;
    height:280px;
    object-fit:cover;

}

.member h3{

    margin-top:22px;
    font-size:20px;
    color:#163c8c;

}

.member span{

    display:block;
    margin:8px 0 26px;
    color:#999;
    font-size:14px;
    font-weight:500;

}

/*====================================
PARTNERS
====================================*/

.partners{

    text-align:center;
    padding-top:60px;
    padding-bottom:60px;

}

.partners h3{

    color:#163c8c;
    font-size:22px;
    margin-bottom:36px;
    font-weight:600;

}

.logos{

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:50px;

}

.logos span{

    font-size:18px;
    font-weight:700;
    letter-spacing:2px;
    color:#b7bcce;
    transition:.3s;

}

.logos span:hover{

    color:#163c8c;

}

/*====================================
FOOTER
====================================*/

footer{

    background:#10163a;
    color:#c7cbdd;
    padding:70px 8% 0;

}

.footer-grid{

    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
    padding-bottom:50px;
    border-bottom:1px solid rgba(255,255,255,.08);

}

.footer-grid h2{

    color:#fff;
    font-size:22px;
    margin-bottom:16px;
    letter-spacing:1px;

}

.footer-grid h3{

    color:#fff;
    font-size:16px;
    margin-bottom:18px;

}

.footer-grid > div > p{

    line-height:1.8;
    font-size:14px;
    color:#a8adc4;

}

.footer-grid > div a{

    display:block;
    color:#a8adc4;
    font-size:14px;
    margin-bottom:12px;
    transition:.25s;

}

.footer-grid > div a:hover{

    color:#d4a22c;

}

.copyright{

    text-align:center;
    padding:24px 0;
    font-size:13px;
    color:#8087a3;

}

/*====================================
RESPONSIVE
====================================*/

@media (max-width:900px){

    header{

        padding:0 24px;

    }

    nav ul{

        gap:20px;

    }

    .hero-content h1{

        font-size:44px;

    }

    .hero-content p{

        font-size:16px;

    }

    section{

        padding:60px 6%;

    }

    .about-company{

        grid-template-columns:1fr;

    }

    .about-right{

        order:-1;

    }

    .why{

        flex-direction:column;

    }

    .features{

        grid-template-columns:1fr;

    }

}

@media (max-width:600px){

    header{

        padding:0 16px;

    }

    .logo{

        flex-shrink:0;

    }

    .logo h2{

        font-size:20px;

    }

    .logo span{

        font-size:9px;
        letter-spacing:2px;

    }

    nav{

        flex:1;
        overflow-x:auto;
        -webkit-overflow-scrolling:touch;
        scrollbar-width:none;
        margin-left:12px;

    }

    nav::-webkit-scrollbar{

        display:none;

    }

    nav ul{

        gap:16px;
        flex-wrap:nowrap;
        width:max-content;

    }

    nav ul li{

        flex-shrink:0;

    }

    nav ul li a{

        font-size:13px;
        white-space:nowrap;

    }

    .about-hero{

        height:60vh;

    }

    .hero-content h1{

        font-size:32px;

    }

    .about-left h2{

        font-size:32px;

    }

    .stats-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .footer-grid{

        grid-template-columns:1fr;

    }

    .logos{

        gap:26px;

    }

}

