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

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;
    overflow-x:hidden;

}

body{

    overflow-x:hidden;
    background:#050505;
    color:#fff;
    font-family:"Manrope",sans-serif;

}

.container{

    width:min(92%,1200px);
    margin:auto;

}




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

.about-header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    padding:18px 0;

    transition:.4s;

}

.about-header.scrolled{

    background:rgba(5,5,5,.95);

    backdrop-filter:blur(16px);

}

.header-container{

    width:min(92%,1200px);

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo img{

    width:80px;

    display:block;

}

.desktop-nav ul{

    display:flex;

    align-items:center;

    gap:40px;

    list-style:none;

}

.desktop-nav a{

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.desktop-nav a:hover,

.desktop-nav a.active{

    color:#F9A106;

}

/* Dropdown */

.dropdown{

    position:relative;

}

.dropdown-menu{

    position:absolute;

    top:120%;

    left:0;

    min-width:220px;

    background:#111;

    border-radius:15px;

    list-style:none;

    padding:5px 0;

    opacity:0;

    visibility:hidden;

    transform:translateY(15px);

    transition:.3s;

}

.dropdown:hover .dropdown-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.dropdown-menu li{

    padding:10px 20px;

}

.dropdown-menu a{

    display:block;

}

/* Hamburger */

.menu-toggle{

    display:none;

    width:45px;

    height:45px;

    background:none;

    border:none;

    cursor:pointer;

}

.menu-toggle span{

    display:block;

    width:30px;

    height:3px;

    background:#fff;

    margin:6px auto;

    transition:.3s;

}

/*====================================
FULL SCREEN MOBILE MENU
====================================*/

.mobile-menu{

    position:fixed;

    inset:0;

    background:#050505;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    transform:translateX(100%);

    transition:.5s;

    z-index:2000;

}

.mobile-menu.active{

    transform:translateX(0);

}

.close-menu{

    position:absolute;

    top:30px;

    right:25px;

    font-size:2rem;

    color:#fff;

    background:none;

    border:none;

    cursor:pointer;

}

.mobile-menu ul{

    list-style:none;

    text-align:center;

}

.mobile-menu li{

    margin:25px 0;

}

.mobile-menu a{

    color:#fff;

    text-decoration:none;

    font-size:2rem;

    font-weight:700;

}

/* Mobile Submenu */

.submenu-btn{

    background:none;

    border:none;

    color:#fff;

    font-size:2rem;

    font-weight:700;

    cursor:pointer;

}

.mobile-submenu{

    display:none;

    margin-top:20px;

}

.mobile-submenu.active{

    display:block;

}

.mobile-submenu a{

    font-size:1.2rem;

    color:#bbb;

}

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

@media(max-width:992px){

.desktop-nav{

    display:none;

}

.menu-toggle{

    display:block;

}

.logo.hide{

    opacity:0;

    visibility:hidden;

}

}

html,
body{

    overflow-x:hidden;

}



/*====================================
ABOUT INTRO
====================================*/

.about-intro{

    position:relative;
    min-height:100vh;

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

    text-align:center;

    overflow:hidden;

    padding:120px 0;

    background:

    radial-gradient(circle at top left,#1565D820 0%,transparent 45%),

    radial-gradient(circle at bottom right,#F9A10620 0%,transparent 45%),

    #050505;

}

.intro-glow{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    opacity:.25;

}

.glow-left{

    width:320px;
    height:320px;

    background:#1565D8;

    top:-100px;
    left:-80px;

}

.glow-right{

    width:300px;
    height:300px;

    background:#F9A106;

    right:-80px;
    bottom:-100px;

}

.intro-label{

    display:inline-block;

    color:#F9A106;

    letter-spacing:4px;

    font-size:.85rem;

    margin-bottom:25px;

}

.about-intro h1{

    font-size:clamp(3rem,8vw,6.5rem);

    line-height:1;

    max-width:900px;

    margin:auto;

}

.about-intro h1 span{

    color:#1565D8;

}

.about-intro p{

    max-width:720px;

    margin:40px auto;

    color:#d8d8d8;

    line-height:1.9;

    font-size:1.08rem;

}

.intro-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:18px 40px;

    border-radius:60px;

    text-decoration:none;

    color:#fff;

    background:#1565D8;

    transition:.4s;

}

.intro-btn:hover{

    background:#F9A106;

    transform:translateY(-6px);

}

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

@media(max-width:992px){

.about-intro{

    padding:140px 30px;

}

}

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

@media(max-width:768px){

.about-intro{

    padding:120px 20px;

}

.about-intro h1{

    line-height:1.1;

}

.about-intro p{

    font-size:1rem;

}

.intro-btn{

    width:100%;

    max-width:320px;

    justify-content:center;

}

}




/*====================================
OUR STORY
====================================*/

.our-story{

    padding:120px 0;

    background:#080808;

    overflow:hidden;

}

.story-header{

    text-align:center;

    max-width:750px;

    margin:0 auto 80px;

}

.story-header h2{

    font-size:clamp(2.4rem,5vw,4.5rem);

    line-height:1.15;

    margin-top:20px;

}

.story-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:start;

}

.story-left p{

    color:#d6d6d6;

    line-height:2;

    margin-bottom:35px;

    font-size:1.05rem;

}

.story-right{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.story-card{

    padding:35px;

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

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    transition:.45s;

}

.story-card span{

    display:inline-block;

    font-size:2.8rem;

    color:#F9A106;

    font-weight:800;

    margin-bottom:15px;

}

.story-card h3{

    margin-bottom:15px;

    font-size:1.5rem;

}

.story-card p{

    color:#cfcfcf;

    line-height:1.8;

}

.story-card:hover{

    transform:translateY(-10px);

    border-color:#F9A106;

    box-shadow:0 20px 50px rgba(249,161,6,.12);

}

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

@media(max-width:992px){

.story-grid{

    grid-template-columns:1fr;

    gap:50px;

}

}

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

@media(max-width:768px){

.our-story{

    padding:90px 20px;

}

.story-header{

    margin-bottom:50px;

}

.story-card{

    padding:28px;

}

.story-card span{

    font-size:2.2rem;

}

}




/*====================================
WHAT DRIVES US
====================================*/

.drives-section{

    padding:120px 0;

    background:#050505;

    overflow:hidden;

}

.drives-header{

    text-align:center;

    max-width:760px;

    margin:0 auto 90px;

}

.drives-header h2{

    font-size:clamp(2.5rem,5vw,4.5rem);

    margin:20px 0;

    line-height:1.1;

}

.drives-header p{

    color:#cfcfcf;

    line-height:1.9;

}

.drive-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

    margin-bottom:120px;

}

.drive-row.reverse{

    direction:rtl;

}

.drive-row.reverse>*{

    direction:ltr;

}

.drive-image{

    overflow:hidden;

    border-radius:28px;

}

.drive-image img{

    width:100%;

    height:520px;

    object-fit:cover;

    display:block;

    transition:.8s;

}

.drive-image:hover img{

    transform:scale(1.08);

}

.drive-content{

    max-width:520px;

}

.drive-number{

    font-size:4rem;

    font-weight:800;

    color:#F9A106;

    display:block;

    margin-bottom:20px;

}

.drive-content h3{

    font-size:2rem;

    margin-bottom:20px;

}

.drive-content p{

    color:#d6d6d6;

    line-height:2;

}

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

@media(max-width:992px){

.drive-row,
.drive-row.reverse{

    grid-template-columns:1fr;

    direction:ltr;

    gap:40px;

    margin-bottom:90px;

}

.drive-content{

    max-width:100%;

}

.drive-image img{

    height:420px;

}

}

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

@media(max-width:768px){

.drives-section{

    padding:90px 20px;

}

.drive-image img{

    height:300px;

}

.drive-number{

    font-size:3rem;

}

.drive-content h3{

    font-size:1.8rem;

}

}




/*====================================
WHY SSOLIC
====================================*/

.why-ssolic{

    padding:120px 0;

    background:#080808;

    overflow:hidden;

}

.why-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.why-image{

    overflow:hidden;

    border-radius:30px;

}

.why-image img{

    width:100%;

    height:650px;

    object-fit:cover;

    display:block;

    transition:.8s;

}

.why-image:hover img{

    transform:scale(1.08);

}

.why-content h2{

    font-size:clamp(2.5rem,5vw,4.6rem);

    margin:20px 0;

    line-height:1.1;

}

.why-content>p{

    color:#d4d4d4;

    line-height:1.9;

    margin-bottom:45px;

}

.why-features{

    display:grid;

    gap:25px;

}

.feature{

    display:flex;

    gap:20px;

    padding:28px;

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

    border-radius:20px;

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;

}

.feature:hover{

    transform:translateX(10px);

    border-color:#F9A106;

}

.feature i{

    font-size:2rem;

    color:#F9A106;

    min-width:40px;

}

.feature h3{

    margin-bottom:8px;

}

.feature p{

    color:#cfcfcf;

    line-height:1.8;

}

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

@media(max-width:992px){

.why-grid{

    grid-template-columns:1fr;

}

.why-image img{

    height:500px;

}

}

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

@media(max-width:768px){

.why-ssolic{

    padding:90px 20px;

}

.why-image img{

    height:320px;

}

.feature{

    padding:22px;

}

.feature{

    flex-direction:column;

    text-align:center;

}

}



/*====================================
JOIN THE JOURNEY
====================================*/

.join-journey{

    position:relative;

    padding:140px 20px;

    overflow:hidden;

    background:#050505;

}

.journey-content{

    position:relative;

    z-index:2;

    max-width:850px;

    margin:auto;

    text-align:center;

}

.journey-content h2{

    font-size:clamp(2.8rem,6vw,5.5rem);

    line-height:1.05;

    margin:25px 0;

}

.journey-content p{

    max-width:720px;

    margin:0 auto 45px;

    color:#d8d8d8;

    line-height:2;

    font-size:1.05rem;

}

.journey-buttons{


            display:flex;
        
            justify-content:center;
        
            align-items:center;
        
            gap:20px;
        
            flex-wrap:wrap;
        
            background:#F9A106;
        
            border-radius:50px;
        
            padding:25px 35px;
        
            width:fit-content;
        
            max-width:100%;
        
            margin:0 auto;
        
        

}

.journey-buttons a{

    min-width:220px;

    text-align:center;

    color:#050505;

    text-decoration:none;

    font-size:1.5rem;

    font-style:oblique;

    font-weight:700;

}

.journey-glow{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    opacity:.22;

}

.glow-one{

    width:350px;

    height:350px;

    background:#1565D8;

    top:-120px;

    left:-100px;

}

.glow-two{

    width:320px;

    height:320px;

    background:#F9A106;

    right:-100px;

    bottom:-120px;

}

/*=========================
MOBILE
=========================*/
@media(max-width:768px){

    .join-journey{
    
        padding:100px 20px;
    
    }
    
    .journey-buttons{
    
        width:100%;
    
        max-width:360px;
    
        padding:20px;
    
        border-radius:30px;
    
        margin:0 auto;
    
    }
    
    .journey-buttons a{
    
        width:100%;
    
        min-width:unset;
    
        font-size:1.2rem;
    
    }
    
    }




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

.values-section{

    padding:120px 0;

    background:#080808;

    overflow:hidden;

}

.values-header{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.values-header h2{

    font-size:clamp(2.5rem,5vw,4.5rem);

    margin:20px 0;

    line-height:1.1;

}

.values-header p{

    color:#cfcfcf;

    line-height:1.9;

}

.values-grid{

    display:grid;

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

    gap:30px;

}

.value-card{

    position:relative;

    padding:40px 35px;

    border-radius:24px;

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

    border:1px solid rgba(255,255,255,.08);

    transition:.45s;

    overflow:hidden;

}

.value-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:#F9A106;

    transform:scaleX(0);

    transform-origin:left;

    transition:.45s;

}

.value-card:hover::before{

    transform:scaleX(1);

}

.value-card:hover{

    transform:translateY(-12px);

    border-color:#F9A106;

    box-shadow:0 25px 60px rgba(249,161,6,.15);

}

.value-card i{

    font-size:2.2rem;

    color:#1565D8;

    margin-bottom:25px;
  
}

.value-card h3{

    margin-bottom:15px;

    font-size:1.5rem;

}

.value-card p{

    color:#d5d5d5;

    line-height:1.9;

}

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

@media(max-width:992px){

.values-grid{

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

}

}

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

@media(max-width:768px){

.values-section{

    padding:90px 20px;

}

.values-grid{

    grid-template-columns:1fr;

}

.value-card{

    padding:32px 28px;

}

}






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

.footer{

    position:relative;

    background:#030303;

    color:#fff;

    padding:120px 0 40px;

    overflow:hidden;

}

.footer-watermark{

    position:absolute;

    top:30px;

    left:50%;

    transform:translateX(-50%);

    font-size:clamp(4rem,12vw,10rem);

    font-weight:800;

    color:rgba(255,255,255,.03);

    white-space:nowrap;

    pointer-events:none;

    user-select:none;

}

.footer-container{

    position:relative;

    z-index:2;

    width:min(92%,1200px);

    margin:auto;

    display:grid;

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

    gap:50px;

}

.footer-logo{

    width:180px;

    margin-bottom:20px;

}

.footer-brand p{

    color:#bdbdbd;

    line-height:1.8;

}

.footer h3{

    margin-bottom:20px;

    color:#F9A106;

}

.footer ul{

    list-style:none;

}

.footer ul li{

    margin-bottom:14px;

}

.footer a{

    color:#dcdcdc;

    text-decoration:none;

    transition:.3s;

}

.footer a:hover{

    color:#F9A106;

}

.social-icons{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

}

.social-icons a{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

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

    font-size:1.2rem;

    transition:.35s ease;

}

.social-icons a:hover{

    transform:translateY(-6px);

    background:#F9A106;

    color:#000;

}

.footer-bottom{

    margin-top:70px;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

    color:#999;

}




@media(max-width:768px){

    .footer{
    
        padding:80px 0 30px;
    
    }
    
    .footer-watermark{
    
        font-size:3.5rem;
    
        white-space:normal;
    
        text-align:center;
    
        width:100%;
    
    }
    
    .footer-container{
    
        grid-template-columns:1fr;
    
        gap:45px;
    
        text-align:center;
    
    }
    
    .footer-logo{
    
        margin:0 auto 20px;
    
        display:block;
    
    }
    
    .social-icons{
    
        justify-content:center;
    
    }
    
    }



