/* ==========================================
        NEW DEX INDUSTRY
            ABOUT 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%;

}

/* Active Menu */

.nav-links a.active{

    color:#d4af37;

}

.nav-links a.active::after{

    width:100%;

}





/* About Hero */

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

.about-content{
    max-width:850px;
    margin:auto;
}

.about-content h1{
    font-size:58px;
    font-weight:700;
    margin-bottom:25px;
}

.about-content p{
    font-size:18px;
    line-height:1.9;
    color:#f1f1f1;
}

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

.our-story{
    width:90%;
    max-width:1400px;
    margin:100px auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
}

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

.story-image img{
    width:100%;
    max-width:450px;
    transition:.4s;
    filter:drop-shadow(0 20px 35px rgba(0,0,0,.18));
}

.story-image img:hover{
    transform:scale(1.05);
}

.story-content{
    flex:1;
}

.story-content h2{
    font-size:42px;
    color:#14532d;
    margin-bottom:25px;
}

.story-content p{
    color:#666;
    line-height:1.9;
    font-size:17px;
    margin-bottom:20px;
}

/* ===========================
      Mission & Vision
=========================== */

.mission{
    background:#f8f8f8;
    padding:90px 8%;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

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

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

.mission-card h2{
    color:#14532d;
    margin-bottom:18px;
    font-size:30px;
}

.mission-card p{
    color:#666;
    line-height:1.8;
}

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

.why-about{
    width:90%;
    max-width:1400px;
    margin:100px auto;
}

.why-about h2{
    text-align:center;
    font-size:44px;
    color:#14532d;
    margin-bottom:55px;
}

.about-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.about-box{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 12px 25px rgba(0,0,0,.08);
    transition:.35s;
    border-top:5px solid #14532d;
}

.about-box:hover{
    background:#14532d;
    transform:translateY(-10px);
}

.about-box h3{
    color:#14532d;
    margin-bottom:15px;
    font-size:24px;
    transition:.3s;
}

.about-box p{
    color:#666;
    line-height:1.8;
    transition:.3s;
}

.about-box:hover h3,
.about-box:hover p{
    color:#fff;
}

/* ===========================
      Company Stats
=========================== */

.stats{
    background:linear-gradient(135deg,#14532d,#1f7a43);
    padding:90px 8%;
    color:#fff;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.stat-box{
    text-align:center;
}

.stat-box h2{
    font-size:52px;
    color:#d4af37;
    margin-bottom:12px;
}

.stat-box p{
    font-size:18px;
}

/* ===========================
      Founder Section
=========================== */

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

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

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

.founder-content{
    flex:1;
}

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

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

.founder-btn{
    display:inline-block;
    padding:14px 32px;
    background:#14532d;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    margin-top:10px;
    transition:.35s;
}

.founder-btn:hover{
    background:#d4af37;
    color:#14532d;
}

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

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

.about-cta h2{
    font-size:42px;
    margin-bottom:20px;
}

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

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

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

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

.about-hero,
.our-story,
.mission,
.why-about,
.stats,
.founder,
.about-cta{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

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

@media(max-width:992px){

.about-content h1{
    font-size:42px;
}

.our-story,
.founder{
    flex-direction:column;
    text-align:center;
}

.story-image img,
.founder-image img{
    max-width:320px;
}

.why-about h2{
    font-size:36px;
}

.about-cta h2{
    font-size:34px;
}

}

@media(max-width:768px){

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

.about-content h1{
    font-size:34px;
}

.about-content p{
    font-size:16px;
}

.story-content h2{
    font-size:32px;
}

.mission{
    padding:70px 20px;
}

.stats{
    padding:70px 20px;
}

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

.stat-box h2{
    font-size:40px;
}

}

@media(max-width:480px){

.about-hero{
    padding:130px 6% 60px;
}

.about-content h1{
    font-size:27px;
}

.about-content p{
    font-size:14.5px;
}

.our-story,
.founder{
    margin:60px auto;
    gap:35px;
}

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

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

.mission{
    padding:55px 6%;
    gap:22px;
}

.mission-card{
    padding:32px 22px;
}

.mission-card h2{
    font-size:24px;
}

.why-about{
    margin:60px auto;
}

.why-about h2{
    font-size:28px;
    margin-bottom:35px;
}

.about-box{
    padding:30px 20px;
}

.stats{
    padding:55px 6%;
}

.stats-grid{
    gap:22px;
}

.stat-box h2{
    font-size:32px;
}

.stat-box p{
    font-size:15px;
}

.founder-btn{
    padding:12px 26px;
}

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

.about-cta h2{
    font-size:26px;
}

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

.about-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;
    }

}
