/* ==========================================
        NEW DEX INDUSTRY
        FOUNDER & TEAM PAGE
========================================== */

/* RESET */

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

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

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

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:rgba(20,83,45,.95);
    backdrop-filter:blur(12px);
    box-shadow:0 8px 25px rgba(0,0,0,.12);
}

.navbar{
    width:90%;
    max-width:1400px;
    height:85px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    height:65px;
    transition:.35s;
}

.logo img:hover{
    transform:scale(1.05);
}

/*=============================
        NAVIGATION
==============================*/

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

.nav-links li{
    list-style:none;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:500;
    position:relative;
    transition:.35s;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:#d4af37;
    transition:.35s;
}

.nav-links a:hover{
    color:#d4af37;
}

.nav-links a:hover::after{
    width:100%;
}

/* ===========================
      PAGE HERO
=========================== */

.team-hero{
    background:linear-gradient(135deg,#14532d,#1f7a43);
    color:#fff;
    text-align:center;
    padding:140px 8% 100px;
}

.team-hero h1{
    font-size:52px;
    font-weight:700;
    margin-bottom:20px;
}

.team-hero p{
    max-width:750px;
    margin:auto;
    font-size:18px;
    line-height:1.9;
    color:#f1f1f1;
}

/* ===========================
      FOUNDER DETAIL
=========================== */

.founder-detail{
    width:90%;
    max-width:1300px;
    margin:100px auto;
    display:flex;
    gap:60px;
    align-items:center;
}

.founder-detail-image{
    flex:1;
    text-align:center;
}

.founder-detail-image img{
    width:100%;
    max-width:380px;
    border-radius:20px;
    box-shadow:0 20px 35px rgba(0,0,0,.15);
}

.founder-detail-content{
    flex:1.2;
}

.founder-detail-content h2{
    color:#14532d;
    font-size:40px;
    margin-bottom:8px;
}

.founder-detail-content .founder-role{
    color:#d4af37;
    font-weight:600;
    font-size:17px;
    margin-bottom:22px;
    display:block;
}

.founder-detail-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:18px;
}

.founder-quote{
    border-left:4px solid #d4af37;
    padding-left:20px;
    margin:25px 0;
    font-style:italic;
    color:#14532d;
    font-size:18px;
}

.founder-sign{
    margin-top:25px;
}

.founder-sign h4{
    color:#14532d;
    font-size:20px;
    margin-bottom:4px;
}

.founder-sign span{
    color:#d4af37;
    font-weight:600;
    font-size:15px;
}

/* ===========================
      TEAM SECTION
=========================== */

.team-section{
    background:#f8f8f8;
    padding:100px 8%;
}

.team-section-header{
    text-align:center;
    max-width:750px;
    margin:0 auto 60px;
}

.team-section-header h2{
    font-size:44px;
    color:#14532d;
    margin-bottom:18px;
}

.team-section-header p{
    color:#666;
    line-height:1.8;
    font-size:17px;
}

.team-grid{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:35px;
}

.team-card{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 15px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.team-card:hover{
    transform:translateY(-10px);
}

.team-avatar{
    width:90px;
    height:90px;
    margin:0 auto 22px;
    border-radius:50%;
    background:linear-gradient(135deg,#14532d,#1f7a43);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    font-weight:700;
}

.team-card h3{
    color:#14532d;
    font-size:21px;
    margin-bottom:6px;
}

.team-card .team-role{
    color:#d4af37;
    font-weight:600;
    font-size:14px;
    margin-bottom:15px;
    display:block;
}

.team-card p{
    color:#666;
    line-height:1.7;
    font-size:14.5px;
}

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

.team-cta{
    background:#14532d;
    color:#fff;
    text-align:center;
    padding:90px 8%;
}

.team-cta h2{
    font-size:38px;
    margin-bottom:20px;
}

.team-cta p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
    margin-bottom:35px;
}

.team-cta a{
    display:inline-block;
    padding:15px 40px;
    background:#d4af37;
    color:#14532d;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:.35s;
}

.team-cta a:hover{
    background:#fff;
}

/* ===========================
      Animation
=========================== */

.team-hero,
.founder-detail,
.team-section,
.team-cta{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ===========================
      Responsive
=========================== */

@media(max-width:992px){

.team-hero h1{
    font-size:38px;
}

.founder-detail{
    flex-direction:column;
    text-align:center;
}

.founder-detail-image img{
    max-width:300px;
}

.founder-quote{
    text-align:left;
}

.team-section-header h2{
    font-size:34px;
}

.team-cta h2{
    font-size:30px;
}

}

@media(max-width:768px){

.team-hero{
    padding:120px 20px 80px;
}

.team-hero h1{
    font-size:30px;
}

.team-hero p{
    font-size:16px;
}

.founder-detail-content h2{
    font-size:30px;
}

.team-section{
    padding:70px 20px;
}

.team-cta{
    padding:70px 20px;
}

}

@media(max-width:480px){

.team-hero{
    padding:130px 6% 55px;
}

.team-hero h1{
    font-size:26px;
}

.team-hero p{
    font-size:14.5px;
}

.founder-detail{
    margin:60px auto;
    gap:30px;
}

.founder-detail-content h2{
    font-size:26px;
}

.founder-detail-content p{
    font-size:15px;
}

.founder-quote{
    font-size:16px;
    padding-left:15px;
}

.team-section{
    padding:55px 6%;
}

.team-section-header h2{
    font-size:26px;
}

.team-section-header p{
    font-size:15px;
}

.team-grid{
    gap:22px;
}

.team-card{
    padding:30px 22px;
}

.team-cta{
    padding:55px 6%;
}

.team-cta h2{
    font-size:24px;
}

.team-cta p{
    font-size:14.5px;
}

.team-cta a{
    padding:13px 32px;
}

}

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

footer{
    background:linear-gradient(135deg,#0f3d23,#14532d);
    color:#fff;
    margin-top:100px;
    overflow:hidden;
    position:relative;
}

footer::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(212,175,55,.08);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.footer-container{
    width:90%;
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:60px;
    padding:80px 0;
    position:relative;
    z-index:2;
}

.footer-logo img{
    width:190px;
    margin-bottom:20px;
}

.footer-logo p{
    color:#ddd;
    line-height:1.8;
}

.footer-links{
    display:flex;
    flex-direction:column;
}

.footer-links h3,
.footer-contact h3{
    color:#d4af37;
    margin-bottom:20px;
    font-size:22px;
}

.footer-links a{
    color:#ddd;
    text-decoration:none;
    margin-bottom:12px;
    transition:.3s;
}

.footer-links a:hover{
    color:#d4af37;
    padding-left:8px;
}

.footer-contact p{
    color:#ddd;
    margin-bottom:14px;
}

.copyright{
    text-align:center;
    padding:22px;
    border-top:1px solid rgba(255,255,255,.15);
    color:#ccc;
}

/*==========================================
        MOBILE HAMBURGER MENU
==========================================*/

.menu-toggle{
    display:none;
    flex-direction:column;
    justify-content:center;
    gap:6px;
    cursor:pointer;
    z-index:1001;
}

.menu-toggle span{
    width:30px;
    height:3px;
    background:#fff;
    border-radius:2px;
    transition:.3s;
}

.menu-toggle.active span:nth-child(1){
    transform:rotate(45deg) translate(7px,7px);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:rotate(-45deg) translate(7px,-7px);
}

@media(max-width:992px){

    .navbar{
        position:relative;
    }

    .menu-toggle{
        display:flex;
    }

    .nav-links{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#14532d;
        flex-direction:column;
        align-items:center;
        gap:0;
        max-height:0;
        overflow:hidden;
        transition:.4s;
    }

    .nav-links.active{
        max-height:500px;
        padding:15px 0;
        box-shadow:0 15px 25px rgba(0,0,0,.2);
    }

    .nav-links li{
        width:100%;
        text-align:center;
    }

    .nav-links a{
        display:block;
        padding:14px 0;
    }

}
