/*=========================
    GLOBAL
=========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#f4f8f5;

    color:#333;

    overflow-x:hidden;

}

/*=========================
        HEADER
=========================*/

header{

    width:100%;

    height:80px;

    background:#ffffff;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 8%;

    position:fixed;

    top:0;

    left:0;

    z-index:1000;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.logo{

    font-size:28px;

    font-weight:700;

    color:#1d6b3f;

}

nav{

    display:flex;

    gap:35px;

}

nav a{

    text-decoration:none;

    color:#333;

    font-weight:500;

    transition:.3s;

}

nav a:hover{

    color:#1d6b3f;

}

/*=========================
        HERO
=========================*/

.hero{

    min-height:100vh;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:120px 8% 60px;

    gap:50px;

}

.hero-text{

    flex:1;

}

.hero-text h1{

    font-size:60px;

    color:#1d6b3f;

    margin-bottom:25px;

}

.hero-text p{

    font-size:19px;

    line-height:1.8;

    margin-bottom:35px;

}

.btn{

    display:inline-block;

    background:#1d6b3f;

    color:white;

    text-decoration:none;

    padding:15px 40px;

    border-radius:8px;

    transition:.3s;

}

.btn:hover{

    background:#14502e;

}

.hero-image{

    flex:1;

    display:flex;

    justify-content:center;

}

.hero-image img{

    width:100%;

    max-width:650px;

    height:auto;

}

/*=========================
        ABOUT
=========================*/

.about{

    width:85%;

    margin:auto;

    padding:100px 0;

    text-align:center;

}

.about h2{

    font-size:40px;

    color:#1d6b3f;

    margin-bottom:25px;

}

.about p{

    font-size:18px;

    line-height:2;

}

/*=========================
        FEATURES
=========================*/

.features{

    padding:100px 8%;

    background:white;

}

.features h2{

    text-align:center;

    font-size:40px;

    margin-bottom:60px;

    color:#1d6b3f;

}

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.card{

    background:#f8f8f8;

    padding:35px;

    border-radius:15px;

    transition:.3s;

    box-shadow:0 8px 20px rgba(0,0,0,.05);

}

.card:hover{

    transform:translateY(-10px);

}

.card h3{

    color:#1d6b3f;

    margin-bottom:15px;

}

.card p{

    line-height:1.8;

}

/*=========================
        TABLE
=========================*/

.specs{

    width:85%;

    margin:auto;

    padding:100px 0;

}

.specs h2{

    text-align:center;

    margin-bottom:40px;

    color:#1d6b3f;

    font-size:40px;

}

table{

    width:100%;

    border-collapse:collapse;

}

th{

    background:#1d6b3f;

    color:white;

}

th,td{

    padding:18px;

    border:1px solid #ddd;

    text-align:center;

}

tr:nth-child(even){

    background:#f2f2f2;

}

/*=========================
        GALLERY
=========================*/

.gallery{

    padding:100px 8%;

    background:white;

    text-align:center;

}

.gallery h2{

    font-size:40px;

    color:#1d6b3f;

    margin-bottom:40px;

}

.gallery img{

    width:100%;

    max-width:900px;

    height:auto;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

/*=========================
        CONTACT
=========================*/

.contact{

    width:80%;

    margin:auto;

    padding:100px 0;

}

.contact h2{

    text-align:center;

    color:#1d6b3f;

    font-size:40px;

}
.contact h3{

    text-align:center;

    color:#2b2727;

    margin-bottom:40px;

    font-size:20px;

}

form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

input,textarea{

    padding:18px;

    border:1px solid #ccc;

    border-radius:8px;

    font-size:16px;

}

textarea{

    resize:none;

    height:180px;

}

button{

    padding:18px;

    background:#1d6b3f;

    color:white;

    border:none;

    border-radius:8px;

    font-size:18px;

    cursor:pointer;

    transition:.3s;

}

button:hover{

    background:#14502e;

}

/*=========================
        FOOTER
=========================*/

footer{

    background:#1d6b3f;

    color:white;

    text-align:center;

    padding:40px;

}

footer h3{

    margin-bottom:15px;

}

footer p{

    margin-top:10px;

}

/*=========================
      RESPONSIVE
=========================*/

@media(max-width:900px){

.hero{

flex-direction:column;

text-align:center;

}

.hero-text h1{

font-size:42px;

}

header{

flex-direction:column;

height:auto;

padding:20px;

}

nav{

margin-top:15px;

flex-wrap:wrap;

justify-content:center;

}

}
/*=========================
        ANIMATION
=========================*/

.hidden{

    opacity:0;

    transform:translateY(60px);

    transition:all .8s ease;

}

.show{

    opacity:1;

    transform:translateY(0);

}

.model3d{
    text-align:center;
    padding:60px 20px;
}


.bench-3d img{

    width:400px;

    transition:0.5s;

    cursor:pointer;

}


.bench-3d img:hover{

    transform:
    perspective(800px)
    rotateY(20deg)
    scale(1.05);

}

#languageBtn{

background:#2ecc71;

color:white;

border:none;

padding:10px 20px;

border-radius:20px;

cursor:pointer;

font-size:16px;

}


#languageBtn:hover{

opacity:0.8;

}

.video-section{

    text-align:center;

    padding:100px 20px;

    background:#fff;

}

.video-section h2{

    margin-bottom:30px;

    color:#1d6b3f;

}

.video-section video{

    width:90%;

    max-width:1000px;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.2);

}

/*======================================
        NEW FEATURES
======================================*/

/* Progress Bar */

#progressBar{

    position:fixed;

    top:0;

    left:0;

    width:0%;

    height:5px;

    background:#2ecc71;

    z-index:9999;

}


/* Header Tools */

.header-tools{

    display:flex;

    align-items:center;

    gap:15px;

}


/* Clock & Date */

.datetime{

    text-align:right;

    font-size:13px;

    line-height:1.3;

    color:#1d6b3f;

    font-weight:600;

}

#clock{

    font-size:16px;

}

#date{

    font-size:12px;

}


/* Dark Mode Button */

#darkModeBtn{

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#1d6b3f;

    color:white;

    cursor:pointer;

    font-size:18px;

    transition:.3s;

}

#darkModeBtn:hover{

    transform:scale(1.08);

}


/* Welcome Message */

#welcomeMessage{

    position:fixed;

    top:100px;

    right:30px;

    background:#1d6b3f;

    color:white;

    padding:15px 25px;

    border-radius:12px;

    box-shadow:0 10px 25px rgba(0,0,0,.2);

    z-index:9999;

    opacity:0;

    transform:translateX(100px);

    transition:.6s;

}

#welcomeMessage.show{

    opacity:1;

    transform:translateX(0);

}


/* Back To Top */

#topBtn{

    position:fixed;

    bottom:30px;

    right:30px;

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:#1d6b3f;

    color:white;

    font-size:22px;

    cursor:pointer;

    display:none;

    z-index:9999;

    box-shadow:0 8px 20px rgba(0,0,0,.2);

    transition:.3s;

}

#topBtn:hover{

    transform:translateY(-5px);

    background:#14502e;

}


/*==============================
        DARK MODE
==============================*/

body.dark-mode{

    background:#121212;

    color:#f1f1f1;

}


body.dark-mode header{

    background:#1d1d1d;

}


body.dark-mode nav a{

    color:#ffffff;

}


body.dark-mode .logo{

    color:#2ecc71;

}


body.dark-mode .hero h1,

body.dark-mode h2,

body.dark-mode h3{

    color:#2ecc71;

}


body.dark-mode .features,

body.dark-mode .gallery{

    background:#1b1b1b;

}


body.dark-mode .card{

    background:#2a2a2a;

    color:white;

}


body.dark-mode .about,

body.dark-mode .specs,

body.dark-mode .contact{

    color:white;

}


body.dark-mode table{

    color:white;

}


body.dark-mode td{

    border-color:#444;

}


body.dark-mode tr:nth-child(even){

    background:#2b2b2b;

}


body.dark-mode input,

body.dark-mode textarea{

    background:#222;

    color:white;

    border:1px solid #555;

}


body.dark-mode footer{

    background:#111;

}


body.dark-mode #welcomeMessage{

    background:#2ecc71;

    color:#111;

}


/*==============================
        RESPONSIVE
==============================*/

@media(max-width:900px){

.header-tools{

flex-direction:column;

gap:8px;

}

.datetime{

text-align:center;

}

#topBtn{

bottom:20px;

right:20px;

}

#welcomeMessage{

right:15px;

left:15px;

text-align:center;

}

}
/*=========================
 HEADER ALIGNMENT
=========================*/

.header-tools{

    display:flex;

    align-items:center;

    gap:25px;

    margin-left:40px;

}


#languageBtn{

    background:#2ecc71;

    color:white;

    border:none;

    padding:10px 22px;

    border-radius:20px;

    cursor:pointer;

}


#darkModeBtn{

    margin-left:5px;

}


.datetime{

    margin-left:35px;

}



/*=========================
        FAQ
=========================*/


.faq{

    width:85%;

    margin:auto;

    padding:100px 0;

}


.faq h2{

    text-align:center;

    color:#1d6b3f;

    font-size:40px;

    margin-bottom:40px;

}



.faq-box{

    background:white;

    margin-bottom:20px;

    padding:20px 30px;

    border-radius:12px;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

}


.faq-question{

    cursor:pointer;

    display:flex;

    align-items:center;

    gap:15px;

    color:#1d6b3f;

}


.arrow{

    font-size:18px;

    transition:.3s;

}


.faq-question.active .arrow{

    transform:rotate(90deg);

}



.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:.4s ease;

    line-height:1.8;

    margin-top:10px;

}


.faq-answer.show{

    max-height:200px;

}


/*=========================
        3D IMAGE
=========================*/


.hero-image{

    perspective:1000px;

}


#benchImage{

    width:100%;

    max-width:650px;

    transition:.2s ease;

    transform-style:preserve-3d;

    cursor:pointer;

    filter:drop-shadow(0 25px 25px rgba(0,0,0,.25));

}
