/*=========================================
            GOOGLE FONT
=========================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

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

html{
    scroll-behavior:smooth;
}

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

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

/*=========================================
            COLORS
=========================================*/

:root{

    --primary:#123524;      /* Dark Green */

    --secondary:#C89A2B;    /* Premium Gold */

    --light:#F8F8F3;        /* Warm White */

    --dark:#1B1B1B;

    --text:#5B5B5B;

    --white:#ffffff;

}

/*=========================================
            TOP BAR
=========================================*/

.top-bar{

    background:#0F2C20;
    color:#fff;

    font-size:14px;

    height:47px;

    display:flex;

    align-items:center;

}

.top-bar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.top-left{

    display:flex;

    gap:30px;

}

.top-left a{

    color:white;

    display:flex;

    align-items:center;

    gap:8px;

    transition:.3s;

}

.top-left a:hover{

    color:#7FB3FF;

}

.top-right{

    display:flex;

    align-items:center;

    gap:8px;

}

/*=========================================
            NAVBAR
=========================================*/

header{

    width:100%;


    background:white;

    position:sticky;

    top:0;

    z-index:999;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0;
}

.logo{
    flex:0 0 180px;
}

.logo img{
    width:240px;
    height:auto;
    object-fit:contain;
}

nav ul{

    display:flex;

    align-items:center;

    gap:35px;

}

nav ul li a{

    color:#222;

    font-size:20px;

    font-weight:600;

    position:relative;

    transition:.3s;

}

nav ul li a:hover{

    color:var(--secondary);

}

nav ul li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--secondary);

    transition:.3s;

}

nav ul li a:hover::after{

    width:100%;

}

.quote-btn{
    background:#C89A2B;
    color:#fff;
    padding:16px 34px;
    border-radius:10px;
    font-weight:600;
    transition:.35s;
}

.quote-btn:hover{

    background:#A97812;

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(200,154,43,.35);

}

.menu-btn{

    display:none;

    font-size:28px;

    cursor:pointer;

}

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

            =========================================*/

   

.hero{
    min-height:90vh;
    padding-top:110px;  
     background:
        url("../images/hero.png")
         right center/cover no-repeat;

    background-size:cover;
    background-position:center;
    position:relative;
    display:flex;
    align-items:center;
}


.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(18,53,36,.96) 0%,
        rgba(18,53,36,.82) 35%,
        rgba(18,53,36,.45) 65%,
        rgba(18,53,36,.05) 100%
    );
}

.hero-container{

    position:relative;

    z-index:2;

}

.hero-content{

    max-width:700px;

    color:white;

}

.hero-tag{

    display:inline-block;

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

    padding:10px 18px;

    border-radius:50px;

    margin-bottom:25px;

    font-size:14px;

    letter-spacing:1px;

}

.hero h1{

    font-size:64px;

    line-height:1.15;

    margin-bottom:25px;

    font-weight:800;

}

.hero h1 span{

    color:#E3B23C;

}

.hero p{
    
    max-width:600px;

    font-size:18px;

    color:#d6dce6;

    line-height:1.9;

    margin-bottom:35px;

}

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:30px;

    margin:35px 0;

}

.hero-features div{

    display:flex;

    align-items:center;

    gap:10px;

    color:white;

    font-size:16px;

    font-weight:500;

}

.hero-features i{

    color:#49D17D;

    font-size:18px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}
.hero-buttons{
    margin-top:20px;
}

.primary-btn{

    background:var(--secondary);

    color:white;

    padding:18px 35px;

    border-radius:8px;

    font-weight:600;

    transition:.35s;

}

.primary-btn:hover{

    transform:translateY(-5px);

   box-shadow:0 15px 35px rgba(200,154,43,.35);

}

.secondary-btn{

    border:2px solid white;

    color:white;

    padding:18px 35px;

    border-radius:8px;

    transition:.35s;

    font-weight:600;

}

.secondary-btn:hover{

    background:white;

    color:#111;

}

.scroll-down{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

    color:white;

    font-size:30px;

    animation:float 1.5s infinite;
}


@keyframes float{

    0%{

        transform:translate(-50%,0);

    }

    50%{

        transform:translate(-50%,12px);

    }

    100%{

        transform:translate(-50%,0);

    }
}
    /*=========================================
            COMMON SECTION
=========================================*/

section{
    padding:110px 0;
}

.section-header{
    text-align:center;
    margin-bottom:70px;
}

.section-title{
    display:inline-block;
    color:var(--secondary);
    font-weight:700;
    letter-spacing:2px;
    font-size:14px;
    margin-bottom:15px;
}

.section-header h2{
    font-size:46px;
    color:var(--primary);
    margin-bottom:15px;
}

.section-header p{
    width:700px;
    max-width:90%;
    margin:auto;
    color:var(--text);
    line-height:1.8;
}


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

.about{
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}
.about-content h2{
    font-size:44px;
    color:var(--primary);
    margin:18px 0;
    line-height:1.3;
}

.about-content p{
    color:var(--text);
    line-height:1.9;
    margin-bottom:20px;
}

.about-features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
    margin:35px 0;
}

.about-features div{
    background:#F8F8F3;
    padding:18px;
    border-radius:12px;
    font-weight:600;
    transition:.35s;
}

.about-features div:hover{
    background:#123524;
    color:white;
    transform:translateY(-8px);
}

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

.why-us{
    background:#F8FAFC;
}

.why-grid{

    display:grid;

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

    gap:30px;

    margin-top:50px;

}

.why-card{
    background:white;
    padding:40px 30px;
    border-radius:18px;
    text-align:center;
    transition:.35s;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.why-card i{
    width:80px;
    height:80px;
    background:#F8F8F3;
    color:var(--secondary);
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    border-radius:50%;
    font-size:30px;
    margin-bottom:25px;
}

.why-card h3{
    color:var(--primary);
    margin-bottom:15px;
    font-size:22px;
}

.why-card p{
    color:var(--text);
    line-height:1.8;
}



/*=========================================
                PRODUCTS
=========================================*/

.products{
    background:#F8F8F3;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(360px,1fr));
    gap:35px;
}
.product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.product-card img{
    width:100%;
    height:370px;
    object-fit:cover;
    display:block;
}

.product-content{
    padding:30px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.product-content h3{
    color:var(--primary);
    font-size:24px;
    margin-bottom:15px;
}

.product-content p{
    color:var(--text);
    line-height:1.8;
    flex:1;
}

.product-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:var(--secondary);
    font-weight:600;
    margin-top:20px;
}

.product-btn:hover{
    color:var(--primary);
}
/*=========================================
            INDUSTRIES
=========================================*/

.industries{
    background:#F8FAFC;
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.industry-box{
    background:white;
    padding:45px 20px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    transition:.35s;
    font-size:45px;
}

.industry-box:hover{
    background:var(--secondary);
    color:white;
    transform:translateY(-8px);
}

.industry-box h3{
    margin-top:20px;
    font-size:22px;
    font-weight:600;
}



/*=========================================
                CONTACT
=========================================*/

.contact{
    background:#F8F8F3;
}

.contact-wrapper{

    display:grid;

    grid-template-columns:42% 58%;

    gap:50px;

    margin-top:50px;

}

.contact-info{
    background:#fff;
    padding:50px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.contact-info h3{
    font-size:42px;
    line-height:1.2;
    color:var(--primary);
    margin:15px 0;
}
.contact-form h3{

    font-size:38px;

    color:var(--primary);

    margin-bottom:15px;

}

.form-text{

    color:#666;

    line-height:1.8;

    margin-bottom:35px;

}

.contact-text{

    color:#666;

    line-height:1.8;

    margin:20px 0 35px;

}

.contact-item{

    display:flex;

    align-items:flex-start;

    gap:20px;

}

.contact-icon{

    width:58px;

    height:58px;

    min-width:58px;

    border-radius:16px;

    background:var(--secondary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

}

.contact-item h4{

    margin-bottom:8px;

    color:var(--primary);

    font-size:20px;

}

.contact-item p{

    color:#666;

    line-height:1.8;

}

.contact-item a{

    color:var(--primary);

    font-weight:600;

    text-decoration:none;

}

.contact-item a:hover{

    color:var(--secondary);

}

.contact-divider{

    height:1px;

    background:#ECECEC;

    margin:30px 0;

}



.contact-form{

    background:#fff;

    padding:50px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:18px 20px;

    border:1px solid #E3E3E3;

    border-radius:12px;

    background:#FAFAFA;

    font-size:15px;

    transition:.3s;

    outline:none;

}

.contact-form input:focus,
.contact-form textarea:focus{
  
    border-color:#D4A11D;
background:#fff;
   box-shadow:0 0 0 4px rgba(200,154,43,.15);
}

.contact-form button{

    width:100%;

    background:#D4A11D;

    color:#fff;

    border:none;

    padding:18px;

    border-radius:12px;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

.contact-form button:hover{

    background:#0F3D2E;

    transform:translateY(-3px);

}


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

footer{

    background:#10291F;

    color:white;

    padding-top:80px;

}

.footer-grid{

    display:grid;

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

    gap:50px;

}

.footer-about img{

    width:220px;

    margin-bottom:25px;

}

.footer-about p{

    color:#d0d8e2;

    line-height:1.9;

}

.footer-links h3{

    margin-bottom:25px;

}

.footer-links a{

    display:block;

    color:#d0d8e2;

    margin-bottom:15px;

    transition:.3s;

}

.footer-links a{

    transition:.35s;

}

.footer-links a:hover{

    color:var(--secondary);

}

.footer-links p{

    color:#d0d8e2;

    margin-bottom:15px;

}

.copyright{

    margin-top:70px;

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

    padding:25px 0;

    text-align:center;

    color:#d0d8e2;

    font-size:14px;

}

/*=========================================
            CAREER HERO
=========================================*/

.hero .hero-content{

    max-width:700px;

}

/*=========================================
            CAREER OPENINGS
=========================================*/

.career-openings{

    background:#F8FAFC;

}

.opening-card{

    max-width:850px;

    margin:auto;

    background:#fff;

    padding:60px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.opening-card i{

    font-size:70px;

    color:var(--secondary);

    margin-bottom:25px;

}

.opening-card h3{

    color:var(--primary);

    font-size:32px;

    margin-bottom:20px;

}

.opening-card p{

    color:var(--text);

    line-height:1.9;

    margin-bottom:20px;

}

/*=========================================
        CAREER FORM
=========================================*/

.career-form-section{

    background:white;

}

.career-form-section .contact-info{

    background:#F8FAFC;

}

.career-form-section .contact-form{

    background:white;

}

.form-note{

    font-size:13px;

    color:#666;

    margin-top:-10px;

    margin-bottom:20px;

    line-height:1.7;

}

.form-note i{

    color:var(--secondary);

    margin-right:6px;

}

/*=========================================
            CAREER NOTE
=========================================*/

.career-note{

    padding:40px 0 80px;

    background:#F8FAFC;

}

.career-note-box{

    max-width:850px;

    margin:auto;

    background:white;

    border-radius:20px;

    padding:45px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.career-note-box i{

    font-size:50px;

    color:var(--secondary);

    margin-bottom:20px;

}

.career-note-box h2{

    color:var(--primary);

    margin-bottom:15px;

}

.career-note-box p{

    color:var(--text);

    line-height:1.9;

}