:root{
    --font-family: 'Poppins', sans-serif;
    --font-size: 18px;
    --primary-color: #293e2f;
    --secondary-color: #f3be1a;
    --background-color: #fff;
    --black-background: #000;
    --grey-background: #f4f4f4;
    --hover-color: #ff9900;
    --white-color: #fff;
    --black-color: #000;
    --box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

*{box-sizing: border-box;}
body {
    font-family: var(--font-family);
    font-weight: 400;
    margin: 0;
    padding: 0;
    padding-top: 70px;
}
h1, h2{
    color: var(--primary-color);
    font-weight: 700;
    font-size: 36px;
}
h3{
    color: var(--primary-color);
    font-weight: 700;
    font-size: 25px;
}
.btn-primary{
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    padding: 10px 20px;
    font-size: var(--font-size);
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: var(--box-shadow);
}
.btn-primary:focus{
    outline: none;
    box-shadow: none;
}
.btn-primary:hover{
    background: var(--hover-color);
}
.wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

header{
    background: var(--primary-color);
    height: 70px;
    top:0;
    left:0;
    width:100%;
    position: fixed;
    z-index: 120;
}
header .wrapper{
    height: 100%;
}
.logo { background: var(--primary-color);}
.logo a {
    position: absolute;
    padding: 7px;
    display: block;
    top: 0;
    left: 20px;
    background: var(--primary-color);
    border-radius: 0 0 7px 7px;
}
.logo img {
    height: 95px;
    width: auto;
    display: block;
}

nav ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
nav ul li a{
    color: var(--white-color);
    text-decoration: none;
    font-size: 18px;
    display: block;
    transition: background-color 0.3s ease;
    padding: 5px 10px;
    border-radius: 5px;
}
nav ul li a:hover{
    background-color: var(--hover-color);
    color: var(--white-color);
    padding: 5px 10px;
    border-radius: 5px;
}
nav ul li a.active{
    background-color: var(--hover-color);
    color: var(--white-color);
    padding: 5px 10px;
    border-radius: 5px;
}
/* slider */
.hero-slider .item{
    width: 100%;
    height: 88vh;
    position: relative;
    overflow: hidden;
}
.hero-slider .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}
.hero-slider .slick-dots{
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.hero-slider .slick-dots li button{display: none; text-indent: -99999px; overflow: hidden;}
.hero-slider .slick-dots li{ box-shadow: var(--box-shadow); cursor: pointer; height: 15px; width: 15px; background: var(--background-color); border-radius:50px; transition: width 0.4s ease-in-out;}
.hero-slider .slick-dots li.slick-active{background: var(--primary-color); width: 40px;}
.sub-title{
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}
.product-image{
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top;
    margin-bottom: 20px;
}
.sec-pad{ padding: 100px 0; }
.about-section{
    background-color: var(--grey-background);
}
.testimonials-section{
    background-color: #4c6252;
    color: var(--white-color)
}
.testimonials-section h2{
    color: var(--white-color);
}
.testimonials-section .slick-track{
    display: flex;
    gap: 20px;
}
.testimonials-section .testimonial-item{
    background: #314336;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    color: var(--white-color);
    float: none !important;
    height: 100%;
}
.testimonials-section .testimonial-item h4{
    font-size: var(--font-size);
    font-weight: 600;
    color: var(--secondary-color);
}
.testimonials-section .slick-dots{
    list-style: none;
    margin: 0;
    padding: 30px 0 0;
    position: static;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.testimonials-section .slick-dots li button{display: none; text-indent: -99999px; overflow: hidden;}
.testimonials-section .slick-dots li{ box-shadow: var(--box-shadow); cursor: pointer; height: 15px; width: 15px; background: var(--background-color); border-radius:50px; transition: width 0.4s ease-in-out;}
.testimonials-section .slick-dots li.slick-active{background: var(--secondary-color); width: 40px;}

.contact-section{
    background-color: var(--grey-background);
}
.contact-section .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}
.contact-section .social-icons a:hover {
    background-color: var(--hover-color);
}
footer{
    background: var(--primary-color);
    color: var(--white-color);
    padding: 20px 0;
}

.menu-btn{position: absolute; top: 50%; margin-top: -20px; right: 15px; width: 40px; height: 40px; 
    text-indent: -9999px; overflow: hidden; background: url('../img/menu.png') no-repeat var(--secondary-color); border: 0; cursor: pointer; display: none;}
.menu-btn.active-menu{ background: url('../img/close.png') no-repeat var(--secondary-color); }

.accordion-header .accordion-button{
    background: var(--secondary-color);
    color: var(--white-color);
    cursor: pointer;
    border: none;
    outline: none;
    transition: background-color 0.3s ease;
    font-size: var(--font-size);
}
.accordion-body{
    font-size: var(--font-size);
}
.accordion-button.collapsed{
    background: var(--primary-color);
}

@media (max-width:768px){
    .menu-btn{display: block;}
    nav{position: absolute; top: 70px; left: 0; width: 100%; background: #18241b; display: none;padding-top: 20px;}
    nav.active-nav{display: block;}
    nav ul{display: flex; flex-direction: column; align-items: flex-start !important; gap: 10px; padding: 20px 20px;}
    nav ul.align-items-center{align-items: flex-start !important;}
    .logo img{height: 80px;}
    .sec-pad{padding: 50px 0;}
    .logo{z-index: 110;}
}

/* Accordion Styles */
.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
}
.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

form input{
    height: 45px;
}
.faq-section img{
    display: block;
    width: 100%;
    height: auto;
}
.links{
    color: var(--white-color);
    text-decoration: none;
    transition: color 0.3s ease;
    text-decoration: underline;
}
.links:hover{
    color: var(--hover-color);
}
.accordion-button:focus{
    box-shadow: none;
}