html {
    /* background-color: #dbdde077; */
    min-height: 100vh;
    scroll-behavior: smooth;

}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;

}

header {
    text-align: center;
    padding: 10px 50px 0px 80px;
    /* top right bottom left */
    background: #32743c;
    position: sticky;
    top: 0;
    z-index: 1000;

}

@media (max-width: 768px) {
    header {
        padding: 15px;
    }
}

/* header h1 {
    margin: 0;
    padding: 0;
    font-size: 15px;
   
} */

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.logo {
    /* max-width: 80px; */
    height: 80px;
    display: block;
    image-rendering: crisp-edges;
    object-fit: contain;
}

/* Adjust logo size on smaller screens */
@media (max-width: 768px) {


    .header {
        padding: 0px 0px 0px 10px;

    }

    .logo {
        max-width: 140px;
        height: 50px;
        display: block;
    }
}


.menu-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    color: #000000;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 20px;
    }
}


nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        gap: 10px;
        position: absolute;
        top: 60px;
        right: 0;
        background: #32743c;
        width: 100%;
        text-align: center;
        padding: 20px 0;
        border-top: 1px solid rgb(0, 0, 0);
    }

    nav ul.active {
        display: flex;
    }
}

nav ul li:not(#contact-btn) {
    display: inline;
}

nav ul a:not(#contact-btn) {
    text-decoration: none;
    /* color: #333; */
    color: #ffffff;
    font-weight: 500;
    /* Made the font bolder */
    font-size: 1.1rem;
    font-family: 'Raleway', sans-serif;
    transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
    position: relative;
    padding: 5px 10px;
    display: inline-block;
}

/* Underline animation effect */
nav ul a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 3px;
    background: #5ddb23;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

/* Hover effect */
nav ul a:hover {
    color: #5ddb23;
    /* Change text color on hover */
    transform: translateY(-2px);
    /* Slight upward movement */
}

nav ul a:hover::after {
    transform: scaleX(1);
    /* Animate the underline */
}

/* Click effect */
nav ul a:active {
    color: #5ddb23;
    transform: scale(0.95);
    /* Slight shrink effect when clicked */
}

nav ul li a.active {
    color: #5ddb23;
    /* Highlight color */
    font-weight: bold;
    border-bottom: 2px solid #5ddb23;
}

#contact-btn {
    border-radius: 20px;
    /* border: 1px solid rgb(112, 175, 30); */

}

#contact-btn a {
    text-decoration: none;
    padding: 5px 15px;
}




section {
    /* padding: 20px; */
    background: transparent;

}

@media (max-width: 768px) {
    section {
        padding: 15px;
    }
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    background:
        linear-gradient(to bottom, rgba(27, 27, 27, 0.253), rgba(0, 0, 0, 0.055)),
        url(./assets/images/real-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    align-items: center;
    padding: 30px 4%;
    height: 90vh;
}

/* Text Content */
.hero-content {
    width: 50%;
    height: 100%;


}

.hero-contentbefore {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(83, 83, 83, 0.5), rgba(0, 0, 0, 0.5));
    z-index: -1;
}

.hero h1 {
    font-size: 3rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    /* font-family: 'Nunito', sans-serif; */
    margin-bottom: 15px;
    text-align: left;
    color: #32743C;
}

.hero p {
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    text-align: left;
    margin-bottom: 25px;
    color: #000000;
    max-width: 600px;
    width: 80%;
    margin-left: 0;
    text-shadow: 0px 0px 15px #b1b0b0;

}

span {
    /* color: #3e6606; */
    color: #FFCC00;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: start;
    cursor: pointer;

}

.hero-buttons a {
    text-decoration: none;

}

.btn-green {
    background: #8dca3c;
    color: rgb(0, 0, 0);
    border: none;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 25px;
    transition: background 0.3s ease-in-out;
}





/* Responsive Design */
/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        /* Adjust background image sizing for small screens */
        background-size: cover;
        background-position: center top;
        min-height: 400px;
        height: 60vh;
        padding: 20px 0;
    }

    .hero-content {
        width: 100%;
        padding-top: 40px;
        margin: 0 auto;
        /* Remove side margin for small screens */
    }

    .hero h1 {
        font-size: 30px;
        font-weight: 700;
        font-family: 'Nunito', sans-serif;
        text-shadow: 0px 0px 15px #2524241e;
        margin-top: 40px;
        margin-bottom: 16px;
        text-align: center;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.6;
        color: #ffffff;
        max-width: 95vw;
        width: 100%;
        text-shadow: 0px 0px 15px #000000;
        margin: 0 auto 18px auto;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
        margin-bottom: 20px;
    }

    .btn-green {
        border: none;
        font-size: 13px;
        font-weight: 700;
        padding: 10px 16px;
        margin-top: 5px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero {
        min-height: 250px;
        height: 45vh;
        background-size: cover;
        background-position: center top;
        padding: 10px 0;
    }

    .hero-content {
        padding-top: 50px;
        padding-top: 20px;
    }

    .hero h1 {
        font-size: 1.3rem;
        margin-top: 25px;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 0.9rem;
        max-width: 98vw;
        margin-bottom: 12px;
    }
}

/* About Section */
#about {
    height: 600px;
    padding: 50px 20px 50px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #dbdde077;
    /* background-color: #f8f8f8; */
    /* border: 1px solid #d43f00; */
}

.about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1600px;
    width: 80%;
    height: 100%;
    gap: 40px;
    margin: 0 auto;
    /* border: 1px solid #c6d400; */
}

.image-container {
    flex: 1;
    width: 100%;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 5px solid #ffcc00;   */
    border-radius: 23px;
    /* box-shadow: 5px 5px 15px rgba(0, 205, 212, 0.5); */
    padding-top: 50px;

}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;

}

.text-content {
    flex: 1;
    width: 50%;
    padding: 20px;
    text-align: center;
    position: relative;
    /* border-bottom: 3px solid #3e6606; */

}


.text-content::after {
    content: "";
    display: block;
    width: 50%;
    /* Adjust this to control the length of the border */
    height: 3px;
    background-color: #3e6606;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.text-content h2 {
    color: #32743c;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 10px;
}

.text-content p {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.3;
    color: #333;
    text-align: left;
    justify-self: end;
}

@media (max-width: 768px) {

    #about {
        height: fit-content;
        padding: 20px 20px 20px 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #dbdde077;
        /* background-color: #f8f8f8; */
        /* border: 1px solid #d43f00; */
    }

    /* Other sections keep their normal flex behavior */
    .about {
        flex-direction: column;
        text-align: center;
        height: max-content;
        gap: 5px;
    }

    .image-container {
        width: 100%;
        max-width: 100%;
        height: 50%;
    }

    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;

    }


    .text-content {
        width: 100%;
        max-width: 100%;
        height: 50%;
    }

    .text-content h2 {
        color: #32743c;
        font-family: 'Raleway', sans-serif;
        font-weight: 700;
        font-size: 1.2rem;

    }

    .text-content p {
        font-family: 'Libre Baskerville', serif;
        font-size: 0.9rem;
        line-height: 1.5;
        color: #333;
        text-align: left;
    }

    .text-content::after {
        display: none;
    }



}

/* Meet the Team Section */
#team-section {
    padding: 50px 30px;
    align-items: center;
    justify-content: center;
    background-color: #dbdde077;
}

#team-section h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.0rem;
    color: #32743c;
    text-align: center;
    margin-bottom: 30px;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1600px;
    margin: 0 auto;
    justify-content: center;
}

.team-card {
    flex: 0 0 300px;
    background-color: #faf7f7;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.card-image {
    width: 100%;
    height: 220px;
}

#top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 10px 10px 0 0;
}

#small {
    object-position: top;
}

/* #small2 {
    height: 220px;
} */

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

.card-content {
    padding: 20px;
    text-align: center;
    position: relative;
}

.card-content span {
    font-size: 15px;
    color: #000;
}

/* .card-content::after {
    content: "";
    display: block;
    width: 50%;
    height: 3px;
    background-color: #3e6606;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
} */

.card-content h3 {
    color: #32743c;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.card-content p {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
    color: #333;
    text-align: left;
    padding: 5px;
}

@media (max-width: 768px) {
    #team-section {
        padding: 20px;
        height: fit-content;
    }

    #team-section h2 {
        font-size: 1.5rem;
    }

    .team-container {
        gap: 35px;
    }

    .team-card {
        flex: 0 0 250px;
        
    }

    .card-image {
        height: 150px;
    }

    .card-content h3 {
        font-size: 1.2rem;
    }

    .card-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .card-content::after {
        display: none;
    }
}

#services {
    height: 70vh;
    text-align: center;
    padding: 60px 20px;
    background-color: #EEEFF1;
    /* Keep it clean */
}

#services h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.0rem;
    color: #32743c;
    /* Black text */
    margin-bottom: 10px;
}

.services {
    margin-top: 70px;
    /* border: 2px solid red; */
}

.services-para {
    font-family: 'Nunito', sans-serif;
    font-size: 1.3rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.services-image-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.services-divs {
    flex: 1;
    max-width: 400px;
    text-align: center;
}

.services-divs img {
    width: 70px;
    margin-bottom: 15px;
}

.services-divs p {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    color: #000000;
    line-height: 1.5;
    max-width: 250px;
    margin: 0 auto;
}

/* 🔽 Mobile Responsive Layout */
@media (max-width: 768px) {

    #services {
        height: max-content;

    }

    .services-image-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    #services h2 {
        font-size: 1.3rem;
        /* Black text */
        margin-bottom: 10px;
    }

    .services-para {
        font-family: 'Nunito', sans-serif;
        font-size: 1.1rem;
        color: #555;
        max-width: 700px;
        margin: 0 auto 40px;
        line-height: 1.6;
    }

    .services-divs {
        max-width: 90%;
        /* Stretch to fit screen */
    }

    .services-divs img {
        width: 60px;
        /* Slightly bigger on mobile */
    }

    .services-divs p {
        font-size: 18px;
    }
}

/* Product Section */
#product-showcase {
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

#product-showcase h2 {
    font-size: 2rem;
    font-family: 'Raleway', sans-serif;
    color: #000000;
    margin-bottom: 40px;
}

.product-showcase {
    display: flex;
    justify-content: space-around;
    /* gap: 40px; */
    flex-wrap: wrap;
}

.flip-card {
    background-color: transparent;
    width: 450px;
    height: 350px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card:focus-within .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.flip-card-front {
    background: #f9f9f9;
}

.flip-card-front img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.flip-card-front h3 {
    color: #10642c;
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    text-align: center;
}

.flip-card-back {
    background-color: #e9f7ef;
    color: #1b1b1b;
    transform: rotateY(180deg);
    font-size: 14px;
    line-height: 1.5;
}

.flip-card-back p {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    #product-showcase {
        padding: 60px 10px;
        max-width: 500px;
        margin: 0 auto;
    }

    #product-showcase h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .product-showcase {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }

    .flip-card {
        width: 90%;
        max-width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .flip-card-front h3 {
        font-size: 1rem;
    }

    .flip-card-back {
        font-size: 13px;
        padding: 15px;
    }

    /* Disable hover-based flip on mobile */
    .flip-card:hover .flip-card-inner {
        transform: none;
    }

    /* Enable JS-controlled flip on mobile */
    .flip-card-inner.flipped {
        transform: rotateY(180deg);
    }
}

/* 🔹 Testimonials Section */
#testimonials {
    height: 70vh;
    text-align: center;
    background: #EFF8F9;
    padding: 50px 20px;
    color: white;
    background: linear-gradient(rgba(0, 0, 0, 0.493), rgba(0, 0, 0, 0.5)), url('./assets/images/test-back.svg') no-repeat center center/cover;
}

#testimonials h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 2.0rem;
    margin-bottom: 60px;
    color: #000;
    text-shadow: 0px 0px 3px #ffffff;
}

/* 🔹 Carousel Container */
.testimonial-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    max-width: 800px;
    margin: auto;
    min-height: 200px;
}

/* 🔹 Testimonial Content */
.testimonial-content {
    width: 100%;
    max-width: 600px;
    min-height: 200px;
    background: #209E31;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.5s ease-in-out;
}

/* 🔹 Testimonial Cards */
.testimonial-card {
    display: none;
}

.testimonial-card.active {
    display: block;
}

/* 🔹 Text & Footer */
.testimonial-text {
    font-family: 'Nunito', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.testimonial-name {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
}

/* 🔹 Navigation Buttons (Only for Desktop) */
.nav-btn {
    background: #00A859;
    color: white;
    font-size: 18px;
    padding: 10px 15px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.nav-btn:hover {
    background: #008748;
}

/* 🔹 Slide Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 8px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    background: #484b49;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.testimonial-dots .dot.active {
    background: #fff;
    width: 12px;
    height: 12px;
}


/* @media (min-width: 769px) {
    .testimonial-dots {
        display: none;
    }
} */



/* 🔽 Mobile View */
@media (max-width: 768px) {

    #testimonials {
        min-height: 500px;

    }


    .testimonial-container {
        flex-direction: column;
        width: 80%;
        margin-top: 50px;

    }

    #testimonials h2 {
        font-family: 'Libre Baskerville', serif;
        font-size: 1.3rem;
        margin-bottom: 60px;

    }

    .testimonial-content {
        min-height: 280px;
        max-width: 400px;

    }

    /* Hide arrows on mobile */
    .nav-btn {
        display: none;
    }
}



/* Contact Section Layout */
.contact-section {
    /* background: linear-gradient(rgba(0, 0, 0, 0.493), rgba(0, 0, 0, 0.5)), url('./assets/images/form-bg.webp') no-repeat center center/cover; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding: 20px 20px;
    gap: 30px;
    background-color: #ffffff77;
    height: 70vh;
}

/* Contact Info Side */
.contact-info {
    flex: 1;
    min-width: 300px;
    max-width: 30%;
    padding: 60px;
    background: linear-gradient(rgba(0, 0, 0, 0.493), rgba(0, 0, 0, 0.5)), url('./assets/images/testimonialbg-2.png') no-repeat center center/cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* border: 1px solid #0056b3; */
}

.contact-info h2 {
    margin-bottom: 10px;
    color: #ffffff;
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.contact-info p {
    margin-bottom: 10px;
    color: #c7b0b0;
    font-family: 'Fraunces', serif;
    font-weight: 300;
    font-size: 1.1rem;
}

.info-item {
    margin: 15px 0;
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    /* Keeps it readable */
    font-size: 1.1rem;
}

.social-links {
    margin-top: 15px;
    font-size: 1.3rem;
}

.social-links a {
    display: inline-block;
    margin-right: 10px;
    text-decoration: none;
    color: #3e6606;
    font-weight: bold;
}

.social-links img {
    width: 40px;
    /* Adjust size */
    height: auto;

}

/* Contact Form Side */
.contact-form {
    flex: 1;
    min-width: 300px;
    max-width: 35%;
    /* Make it occupy more space */
    padding: 30px;
    background: linear-gradient(rgba(0, 0, 0, 0.493), rgba(0, 0, 0, 0.5)), url('./assets/images/testimonialbg-2.png') no-repeat center center/cover;
    /* background: #ffffffee; */
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    /* Increased shadow for a "lifted" effect */
}


.contact-form h2 {
    margin-bottom: 10px;
    color: #ffffff;
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    font-size: 1.5rem;

}

/* Ensure the form fills its container */
.contact-form form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Styling for form fields */
.contact-form label {
    margin-top: 12px;
    font-family: 'Libre Baskerville', serif;
    font-weight: 300;
    font-size: 0.8rem;
    color: #ffffff;
    text-align: left;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 5px;
    /* Added padding for a better feel */
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Button Styling */
.contact-form button {
    margin-top: 20px;
    padding: 8px;
    width: 50%;
    align-self: center;
    background: #3e6606;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.contact-form button:hover {
    background: #a6bd27;
    transform: translateY(-2px);
    /* Subtle lift effect */
}

/* Tablets & Small Laptops */
@media (max-width: 1024px) {
    .contact-section {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
        gap: 25px;
    }

    .contact-info,
    .contact-form {
        max-width: 80%;
    }
}

/* Tablets & Large Mobile Screens */
@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
        text-align: center;
        padding: 30px 15px;
        height: fit-content;
    }

    .contact-info,
    .contact-form {
        max-width: 40%;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 10px;
        font-size: 0.3rem;
    }

    .contact-info h2 {
        margin-bottom: 10px;
        color: #ffcc00;
        font-family: 'Fraunces', serif;
        font-weight: 700;
        font-size: 1.0rem;
    }

    .contact-info p {
        margin-bottom: 10px;
        color: #ffcc00;
        font-family: 'Fraunces', serif;
        font-weight: 300;
        font-size: 0.9rem;
    }

    .info-item {
        margin: 15px 0;
        font-family: 'Libre Baskerville', serif;
        font-weight: 400;
        line-height: 1.7;
        color: #d6cbcb;
        /* Keeps it readable */
        font-size: 0.7rem;
    }

    .social-links {
        margin-top: 15px;
        font-size: 0.7rem;
    }

    .social-links a {
        display: inline-block;
        margin-right: 10px;
        text-decoration: none;
        color: #87be2e;
        font-weight: bold;
    }

    .social-links img {
        width: 30px;
        /* Adjust size */
        height: auto;

    }

    .contact-form h2 {
        font-size: 0.5rem;
    }

    .contact-form form {
        display: flex;
        flex-direction: column;
        width: 90%;
    }

    .contact-form label {
        margin-top: 12px;
        font-family: 'Libre Baskerville', serif;
        font-weight: 300;
        font-size: 0.5rem;
        color: #333;
        text-align: left;
    }



    .contact-form button {
        width: 40%;
        /* Slightly larger button for touch-friendliness */
    }
}

/* Mobile Screens */
@media (max-width: 480px) {

    .contact-info,
    .contact-form {
        padding: 20px;
        max-width: 100%;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 0.9rem;
        /* Slightly smaller font for compact view */
    }

    .contact-info h2 {
        margin-bottom: 10px;
        color: #ffcc00;
        font-family: 'Fraunces', serif;
        font-weight: 700;
        font-size: 1.0rem;
    }

    .contact-info p {
        margin-bottom: 10px;
        color: #ffcc00;
        font-family: 'Fraunces', serif;
        font-weight: 300;
        font-size: 0.9rem;
    }

    .info-item {
        margin: 15px 0;
        font-family: 'Libre Baskerville', serif;
        font-weight: 400;
        line-height: 1.7;
        color: #d6cbcb;
        /* Keeps it readable */
        font-size: 0.7rem;
    }

    .social-links {
        margin-top: 15px;
        font-size: 0.7rem;
    }

    .social-links a {
        display: inline-block;
        margin-right: 10px;
        text-decoration: none;
        color: #87be2e;
        font-weight: bold;
    }

    .contact-form h2 {
        font-size: 1.4rem;
    }

    .contact-form label {
        font-size: 0.9rem;
    }

    .contact-form button {
        padding: 12px;
        width: 100%;
        /* Full-width for better accessibility */
        font-size: 0.95rem;
    }
}



footer {
    /* background: #333; */
    background: #32743c;
    color: white;
    padding: 20px 10px;
    text-align: center;
    /* border: 1px solid #d43f00; */
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    /* border: 1px solid #d43f00; */
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 10px;
    padding: 10px;
}

.footer-section img {
    width: 100%;
    height: 40%;
    /* object-fit: cover; */

}

/* .footer-section-about {
    border-left: 1px solid #d43f00;
    padding-left: 10px;
}

.footer-section-social {
    border-right: 1px solid #d43f00;
    padding-right: 10px;
} */

.footer-section h4 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-family: 'Poppins', sans-serif;
    color: #000000;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    /* text-align: left; */
    justify-self: center;
}

.footer-section ul li {
    margin-bottom: 8px;

}

.footer-section ul a {
    color: rgb(255, 255, 255);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul a:hover {
    color: #ffcc00;
}


.footer-section p {
    color: rgb(255, 255, 255);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;

}


.social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-icons img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease-in-out;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.copyright {
    margin-top: 20px;
    font-size: 1.0rem;
    font-weight: 500;
    color: #d6cbcb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }


    .footer-section ul {
        list-style: none;
        padding: 0;
        text-align: center;
        justify-self: center;
    }


    .footer-section ul a {
        color: white;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        font-weight: 300;
        font-size: 15px;
        text-decoration: none;
        transition: color 0.3s;
    }

    .footer-section p {
        color: white;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        font-weight: 300;
        font-size: 15px;

    }

    .footer-section {
        min-width: 100%;
        margin: 10px 0;
    }

    .footer-section img {
        width: 100%;
        height: 90%;
        /* object-fit: cover; */

    }
    .info-item {
        font-size: 14px;
        color: white;

    }


    .contact-form h2 {
        font-size: 15px;
    }
    

    .social-icons {
        gap: 8px;
    }

    .social-icons img {
        width: 28px;
        height: 28px;
    }

    .copyright {
        margin-top: 20px;
        font-size: 0.8rem;
        font-weight: 400;
    }
}

#scrollUpBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #182407;
    /* Match your theme */
    color: white;
    border: none;
    border-radius: 50%;
    /* Circular button */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s, transform 0.2s ease-in-out;
}

#scrollUpBtn:hover {
    background-color: #2a4604;
    /* Darker shade for hover */
    transform: translateY(-3px);
    /* Subtle lift effect */
}

#scrollUpBtn.show {
    opacity: 1;
}

@media (min-width: 768px) {
    #scrollUpBtn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    #scrollUpBtn {
        width: 35px;
        height: 35px;
        font-size: 18px;
        bottom: 15px;
        right: 15px;
    }
}