/* ========================================= */
/* RESET */
/* ========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#07111f;
    color:white;
    overflow-x:hidden;
}

/* ========================================= */
/* INTRO */
/* ========================================= */

.intro{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100vh;
    background:#07111f;
    z-index:99999;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    animation:fadeOut 2s ease forwards;
    animation-delay:4s;
}

.intro-content{
    animation:zoomIn 2s ease;
}

.intro-logo{
    width:140px;
    margin-bottom:20px;
    filter:drop-shadow(0 0 20px rgba(200,169,107,0.5));
}

.intro h1{
    font-family:'Cinzel',serif;
    font-size:55px;
    color:#c8a96b;
    letter-spacing:4px;
}

.intro-tagline{
    margin-top:15px;
    font-size:18px;
    opacity:.8;
}

/* ========================================= */
/* TOPBAR */
/* ========================================= */

.topbar{
    width:100%;
    padding:10px 8%;
    background:rgba(255,255,255,0.03);
    border-bottom:1px solid rgba(255,255,255,0.05);
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:14px;
    backdrop-filter:blur(10px);
}

/* ========================================= */
/* NAVBAR */
/* ========================================= */

nav{
    width:100%;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:sticky;
    top:0;
    z-index:999;
    backdrop-filter:blur(12px);
    background:rgba(7,17,31,0.7);
    border-bottom:1px solid rgba(255,255,255,0.05);
}

.logo-area{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-area img{
    width:60px;
}

.logo-text{
    font-family:'Cinzel',serif;
    font-size:24px;
    color:#c8a96b;
}

nav ul{
    display:flex;
    gap:35px;
    list-style:none;
}

nav ul li a{
    text-decoration:none;
    color:white;
    transition:.3s;
    position:relative;
}

nav ul li a:hover{
    color:#c8a96b;
}

nav ul li a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0%;
    height:2px;
    background:#c8a96b;
    transition:.3s;
}

nav ul li a:hover::after{
    width:100%;
}

/* ========================================= */
/* LANGUAGE */
/* ========================================= */

.language-selector{
    display:flex;
    gap:10px;
}

.language-selector button{
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.1);
    color:white;
    padding:10px 14px;
    border-radius:10px;
    cursor:pointer;
    transition:.3s;
    backdrop-filter:blur(10px);
}

.language-selector button:hover{
    background:#c8a96b;
    color:#07111f;
    transform:translateY(-3px);
}

/* ========================================= */
/* HERO */
/* ========================================= */

.hero{
    position:relative;
    width:100%;
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    padding:0 8%;
    overflow:hidden;
    background:
    linear-gradient(rgba(7,17,31,.85),rgba(7,17,31,.9)),
    url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:
    radial-gradient(circle at center,
    rgba(200,169,107,0.15),
    transparent 70%);
}

.hero-content{
    max-width:800px;
    position:relative;
    z-index:2;
}

.mini-title{
    color:#c8a96b;
    letter-spacing:4px;
    margin-bottom:25px;
    font-size:14px;
}

.hero h1{
    font-size:75px;
    line-height:1.1;
    margin-bottom:30px;
    font-weight:700;
}

.hero-desc{
    font-size:20px;
    line-height:1.8;
    opacity:.85;
    max-width:700px;
}

/* ========================================= */
/* BUTTON */
/* ========================================= */

.hero-buttons{
    margin-top:40px;
    display:flex;
    gap:20px;
}

.btn-primary,
.btn-secondary{
    padding:18px 35px;
    border-radius:12px;
    text-decoration:none;
    transition:.4s;
    font-weight:600;
}

.btn-primary{
    background:#c8a96b;
    color:#07111f;
}

.btn-primary:hover{
    transform:translateY(-5px);
    box-shadow:0 0 30px rgba(200,169,107,.5);
}

.btn-secondary{
    border:1px solid rgba(255,255,255,0.2);
    color:white;
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(10px);
}

.btn-secondary:hover{
    background:white;
    color:#07111f;
}

/* ========================================= */
/* ECOSYSTEM */
/* ========================================= */

.ecosystem{
    padding:120px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title p{
    color:#c8a96b;
    letter-spacing:4px;
    margin-bottom:15px;
}

.section-title h2{
    font-size:50px;
}

.ecosystem-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.eco-card{
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.06);
    border-radius:25px;
    padding:40px;
    transition:.4s;
    backdrop-filter:blur(10px);
}

.eco-card:hover{
    transform:translateY(-10px);
    border-color:#c8a96b;
    box-shadow:0 0 40px rgba(200,169,107,.15);
}

.eco-card h3{
    margin-bottom:20px;
    font-size:28px;
    color:#c8a96b;
}

.eco-card p{
    line-height:1.8;
    opacity:.8;
}

/* ========================================= */
/* QUOTE */
/* ========================================= */

.quote-section{
    padding:150px 8%;
    text-align:center;
    background:
    linear-gradient(rgba(7,17,31,.9),rgba(7,17,31,.95)),
    url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
}

.quote-content h2{
    font-size:50px;
    line-height:1.6;
    font-family:'Cinzel',serif;
    color:#c8a96b;
}

/* ========================================= */
/* FOOTER */
/* ========================================= */

footer{
    padding:80px 8%;
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.05);
}

footer img{
    width:90px;
    margin-bottom:20px;
}

footer h3{
    font-size:35px;
    color:#c8a96b;
    margin-bottom:15px;
}

footer p{
    opacity:.7;
}

.footer-bottom{
    margin-top:40px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,0.05);
    opacity:.5;
}

/* ========================================= */
/* ANIMATION */
/* ========================================= */

@keyframes fadeOut{
    to{
        opacity:0;
        visibility:hidden;
    }
}

@keyframes zoomIn{
    from{
        opacity:0;
        transform:scale(.8);
    }
    to{
        opacity:1;
        transform:scale(1);
    }
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width:1100px){

    nav ul{
        display:none;
    }

    .hero h1{
        font-size:55px;
    }

    .section-title h2{
        font-size:38px;
    }

    .quote-content h2{
        font-size:35px;
    }

}

@media(max-width:768px){

    .topbar{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }

    nav{
        flex-direction:column;
        gap:25px;
    }

    .hero{
        text-align:center;
        justify-content:center;
    }

    .hero h1{
        font-size:42px;
    }

    .hero-desc{
        font-size:17px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
    }

    .quote-content h2{
        font-size:28px;
    }

}

/* ========================================= */
/* PARTICLES */
/* ========================================= */

.particle{
    position:fixed;
    top:-10px;
    background:#c8a96b;
    border-radius:50%;
    opacity:.15;
    pointer-events:none;
    z-index:1;
    animation:floatParticle linear infinite;
}

@keyframes floatParticle{

    from{
        transform:translateY(0);
        opacity:.2;
    }

    to{
        transform:translateY(120vh);
        opacity:0;
    }

}

/* ========================================= */
/* SCROLL REVEAL DEFAULT */
/* ========================================= */

.eco-card,
.section-title,
.quote-content{
    opacity:0;
    transform:translateY(40px);
    transition:all 1s ease;
}
/* ========================================= */
/* LEADERSHIP */
/* ========================================= */

.leadership{
    padding:140px 8%;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    position:relative;
}

.leadership::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(
    rgba(200,169,107,0.15),
    transparent 70%);
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:-1;
}

.leadership-image{
    position:relative;
}

.leadership-image img{
    width:100%;
    border-radius:30px;
    object-fit:cover;
    box-shadow:
    0 0 60px rgba(200,169,107,0.15);
    transition:.5s;
}

.leadership-image img:hover{
    transform:scale(1.02);
}

.leader-mini{
    color:#c8a96b;
    letter-spacing:4px;
    margin-bottom:20px;
}

.leadership-content h2{
    font-size:60px;
    line-height:1.2;
    margin-bottom:30px;
}

.leader-desc{
    font-size:20px;
    line-height:1.9;
    opacity:.85;
    margin-bottom:40px;
}

.leader-quote{
    border-left:4px solid #c8a96b;
    padding-left:25px;
    font-size:22px;
    font-style:italic;
    color:#c8a96b;
    line-height:1.8;
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width:992px){

    .leadership{
        grid-template-columns:1fr;
    }

    .leadership-content{
        text-align:center;
    }

    .leader-quote{
        border:none;
        padding-left:0;
    }

    .leadership-content h2{
        font-size:45px;
    }

}
/* ========================================= */
/* STATS */
/* ========================================= */

.stats{
    padding:140px 8%;
    position:relative;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:70px;
}

.stat-box{
    background:
    linear-gradient(
    145deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.02)
    );

    border:1px solid rgba(255,255,255,0.06);

    padding:50px 30px;

    border-radius:25px;

    text-align:center;

    transition:.4s;

    backdrop-filter:blur(10px);

    position:relative;

    overflow:hidden;
}

.stat-box::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:
    radial-gradient(
    rgba(200,169,107,0.15),
    transparent 70%);
    top:-120px;
    right:-120px;
}

.stat-box:hover{
    transform:translateY(-10px);
    border-color:#c8a96b;
    box-shadow:
    0 0 50px rgba(200,169,107,0.12);
}

.stat-box h3{
    font-size:60px;
    color:#c8a96b;
    margin-bottom:20px;
    font-weight:700;
}

.stat-box p{
    font-size:18px;
    opacity:.85;
}
/* ========================================= */
/* HERO VIDEO */
/* ========================================= */

.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:0;
    opacity:.35;
    filter:
    brightness(.5)
    contrast(1.1)
    saturate(1.1);
}

/* ========================================= */
/* HERO CONTENT */
/* ========================================= */

.hero-content{
    position:relative;
    z-index:5;
}

/* ========================================= */
/* HERO GLOW */
/* ========================================= */

.hero::before{
    content:'';
    position:absolute;
    width:700px;
    height:700px;

    background:
    radial-gradient(
    rgba(200,169,107,0.15),
    transparent 70%);

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    z-index:1;

    animation:pulseGlow 5s ease infinite;
}

@keyframes pulseGlow{

    0%{
        transform:translate(-50%,-50%) scale(1);
    }

    50%{
        transform:translate(-50%,-50%) scale(1.08);
    }

    100%{
        transform:translate(-50%,-50%) scale(1);
    }

}