*{
margin:0; 
padding:0; 
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
    background:#267e32;
    color:#ffffff;
}

header{
position:fixed; 
top:0; 
width:100%;
background: transparent; 
color:white;
display:flex; 
justify-content:space-between;
padding:15px 40px; 
z-index:1000;
transition: background 0.3s ease;
}

header.scrolled {
    background: #267e32;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

header h1 {
    font-size: 24px;
    font-weight: 500;
}

header nav {
    display: flex;
    gap: 20px;
}

header a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

header a:hover {
    color: #ff9c2a;
}

.hero{
height:100vh;
background:radial-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)),url('/images/local/crowd.jpg') center/cover;
display:flex; 
align-items:center; 
justify-content:center;
color:rgb(255, 255, 255); 
text-align:center;
}


.hero button{
margin-top:50px;
padding:12px 25px; 
border:none; 
border-radius:30px;
background:#ff9c2a; 
color:rgb(255, 255, 255); 
cursor:pointer;
}

#aboutbtn:hover, #probtn:hover {
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}

#aboutbtn, #probtn {
    transition: all 0.3s ease-in-out;
    transform: scale(1);
}

#aboutbtn.clicked, #probtn.clicked {
    transform: scale(0.95);
}



section{padding:80px 40px;}

section{
    text-align:center; 
    margin-bottom:30px;
}

.center{
    text-align:center; 
    max-width:800px; 
    margin:auto;
    font-size:18px;}

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

.card{
background:radial-gradient(yellow,limegreen); 
padding:20px;
border-radius:15px;
box-shadow:0 8px 20px rgba(0,0,0,.1);
text-align:center;
}

.review{
background: #ffffff; 
color: #333;
padding: 25px;
border-radius: 15px;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
text-align: center;
border: 1px solid #e0e0e0;
position: relative;
}

.quote-icon {
    font-size: 40px;
    color: #ff9c2a;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    font-size: 16px;
    margin: 15px 0;
    color: #555;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 15px 0;
}

.stars ion-icon {
    color: #ffd700;
    font-size: 20px;
}

.reviewer-name {
    font-weight: bold;
    font-size: 14px;
    color: #267e32;
    margin-top: 10px;
}

.card img{
    width:100%; 
    height:200px; 
    object-fit:cover; 
    border-radius:10px;
}

.card:hover,.review:hover{
    transform:scale(1.05); 
    transition:transform .3s ease;
}

footer{
    background:#1b5e20; 
    color:white; 
    padding:20px 40px;
    margin-top:20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: white;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ff9c2a;
}

.social-links{
    margin-top:10px;
    color: #1b5e20;
}   

footer{
    background:#1b5e20; 
    color:white; 
    padding:20px 40px;
    margin-top:20px;
    text-align: center;
}

.footer-contact {
    margin-top: 10px;
    color: white;
}

.footer-contact a {
    color: white;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.gallery-carousel {
    overflow: hidden;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    height: 500px; /* Adjust based on content */
}

.gallery-inner {
    position: relative;
}

.gallery-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-item.active {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gallery-item h3 {
    font-size: 24px;
    color: #ff9c2a;
    margin: 10px 0;
}

.gallery-item p {
    font-size: 16px;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.gallery-btn:hover {
    background: rgba(0,0,0,0.8);
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.gallery-indicators {
    text-align: center;
    margin-top: 20px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #bbb;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #ff9c2a;
}

/* Mobile menu styles */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 300px;
        width: 50%;
        /* background: #267e3265; */
        padding: 10px;
        gap: 10px;
        text-decoration: underline;
        color: turquoise;
    }
    .nav-menu.active {
        display: flex;
    }
}