/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
    /* display: flex;
    justify-content: center;
    align-items: center; */
    /* gap: 20%; */
}

/* Header Styles */
.header {
    /* background: #929c94; */
    padding: 0rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    /* height: 100px; */
}

.logo {
    color: rgb(21, 19, 19);
    /* font-size: 1rem; */
    font-weight: bold;
    text-align: center;
}

.navbar {
    display: flex;
    justify-content: center;
    /* background-color: #1B4332; */
    gap: 0rem;
    /* padding: 1rem 0; */
    border-radius: 10px;
}

.navbar a {
    color: rgb(206, 93, 93);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.3s;
}

.navbar a:hover {
    background: #1b5e20;
}

/* Slider Styles */
.slider-container {
    position: relative;
    height: 100vh;
    /* overflow: hidden; */
}

.slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    border: none;
    color: white;
    padding: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.5);
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

/* Profile Section */
.profile-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.profile-card {
    /* background: rgb(99, 40, 40); */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
    text-align: center;
}

.read-more-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #2e7d32;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 1rem;
    transition: background 0.3s;
}

.read-more-btn:hover {
    background: #1b5e20;
}

/* Products Section */
.products-section {
    padding: 4rem 0;
}

.product-item {
    background: white;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.product-item:hover {
    transform: translateY(-5px);
    border-color: #2e7d32;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.2);
}

/* Quote Section */
.quote-section {
    background: #2e7d32;
    color: white;
    padding: 4rem 0;
}

.quote-box {
    max-width: 40%;
    margin: 0 auto;
    text-align: center;
}
/* .userQuote{
    width: 200%;
} */

textarea {
    width: 100%;
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    border: none;
    height: 150px;
    resize: vertical;
}

.quote-btn {
    background: white;
    color: #2e7d32;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

.quote-btn:hover {
    transform: scale(1.05);
}

/* Update Product Items to links */
.product-item {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 1000;
}

.modal-content {
    position: relative;
    background: white;
    width: 80%;
    max-width: 600px;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    animation: modalSlide 0.3s ease-out;
}


@keyframes modalSlide {
    from { transform: translateY(-100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalSlide 0.3s ease-out;
}

.product-item {
    cursor: pointer;
    /* Your existing product item styles */
}

@keyframes modalSlide {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Footer */
.footer {
    background: #06a80e;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Responsive Design */
/* @media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .products-scroll {
        grid-template-columns: 1fr;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
} */




.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* background-color: rgba(0, 0, 0, 0.4); */
    z-index: 1;
}


.product-item img {
    opacity: 0.7;
    transition: opacity 0.3s;
}

.product-item:hover img {
    opacity: 0.9;
}




/* ===== Ratings Section ===== */
.ratings-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.ratings-container {
    max-width: 1200px;
    margin: 0 auto;
}

.rating-header {
    text-align: center;
    margin-bottom: 2rem;
}

.rating-overview {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.star-rating {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.rating-score {
    font-size: 3rem;
    color: #27ae60;
    display: block;
    margin-bottom: 1rem;
}

.stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.rating-breakdown {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.rating-bar {
    display: flex;
    align-items: center;
    margin: 1rem 0;
    gap: 1rem;
}

.bar {
    flex: 1;
    height: 8px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: #27ae60;
}

.user-reviews {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.review-card {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.product-name {
    color: #666;
    margin-bottom: 1rem;
}

.review-metrics {
    display: flex;
    gap: 2rem;
    color: #27ae60;
}

/* ===== Reach Us Section ===== */
.reach-us-section {
    padding: 4rem 0;
    background: #a3aba7;
    color: #000000;
}

.reach-us-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.address-card {
    padding: 2rem;
    background: rgba(255, 5, 5, 0.05);
    border-radius: 10px;
}

.get-directions {
    display: inline-block;
    background: #000000;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    margin-top: 1rem;
    text-decoration: none;
    transition: background 0.3s;
}

.get-directions:hover {
    background: #ffffff;
    color: #000000;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #000000;
    text-decoration: none;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.8;
}

.email-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #27ae60;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.email-btn:hover {
    background: #ffffff;
    
}

/* Responsive Design */
@media (max-width: 768px) {
    .rating-overview,
    .reach-us-container {
        grid-template-columns: 1fr;
    }
    
    .rating-breakdown {
        padding: 1.5rem;
    }
    
    .review-metrics {
        flex-direction: column;
        gap: 0.5rem;
    }
}




.quick-links-section {
    background-color: #f0fdf4;
    padding: 50px 0;
    border-top: 1px solid #ddd;
}

.quick-links-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: #2e7d32;
}

.quick-links-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.link-column {
    flex: 1;
    min-width: 250px;
    /* background-color: #c2eac4; */
    border-radius: 10px;
    height: 100%;
}

.link-column a{
    display: flex;
    align-items: center;
    justify-content: center;
    /* flex-direction: column; */
    font-family: "Poppins", sans-serif;
    /* margin: ; */
    /* background-color: #17a2b8; */
}
.link-column-2{
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    flex-direction: column;
}

.link-column h3 {
    font-size: 20px;
    margin-bottom: 15px;
    /* color: #ffffff; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    /* background-color: #eca8a8; */
    /* width: 100%; */
    border-radius: 3px;
    margin: 1rem;
    padding: 0 10px ;
    /* top: 20px; */
}

.link-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-column ul li {
    margin-bottom: 10px;
    /* background-color: #ffffff; */
    width: 100%;
    border-radius: 1rem;
    /* padding: 0.3rem; */
}

.link-column ul li a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
    /* width: 100%; */
    opacity: 0.9;
    /* background-color: #17a2b8; */
}

.link-column ul li a:hover {
    color: #ffffff;
    /* text-decoration: underline; */
    background-color: #73ccda;
}

.view-all-links {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.view-all-links a {
    color: #020602;
    margin-right: 10px;
    text-decoration: none;
    font-weight: 500;
}

.view-all-links a:hover {
    text-decoration: underline;
}





.link-column-1 ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    /* max-height: 200px; adjust based on desired height */
    gap: 0.5rem 2rem;
    /* background-color: #a63232; */
    /* margin-right: 10px; */
    /* width: 100%; */
    /* padding: 1rem; */
    list-style: none;
    /* margin: 2px; */
}

/* Ensure each item gets 50% of the width */
.link-column-1 ul li {
    width: 45%;
    color: white;
    /* margin: 2px; */
}
.link-column-2 ul li {
    /* width: 100%; */
    color: white;
    /* margin: 2px; */ 
}
































































/* ===== Improved Products Section ===== */
.products-section {
    padding: 4rem 0;
    background-color: #f0fdf4;
}

.products-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 2rem;
}

.products-scroll {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* Creates 5 equal columns */
    grid-template-rows: repeat(2, 1fr);    /* Creates 2 equal rows */
    gap: 1rem;
    padding: 0rem;
    margin:0px;
    background-color: #ffffff;
    border-radius: 12px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); */

    /* Layout constraint: 2 rows only */
    max-height: none; /* allow full height */
}

.product-item {
    width: 200px;                   /* Fixed width to control wrapping */
    height: 160px;                  /* Fixed height for consistency */
    background: #ffffff;
    padding: 1rem;
    border: 1px solid #d4e9d4;
    border-radius: 12px;
    text-align: center;
    font-size: 1rem;
    color: #2e7d32;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.product-item::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0%;
    left: 0;
    bottom: 0;
    background: rgba(46, 125, 50, 0.1);
    z-index: 0;
    transition: height 0.3s ease;
}

.product-item:hover::after {
    height: 100%;
}

.product-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.15);
    border-color: #2e7d32;
    background: #ecfef1;
    z-index: 1;
}

.product-item:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.3);
}

/* Scrollbar customization */
.products-scroll::-webkit-scrollbar {
    width: 8px;
}

.products-scroll::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.products-scroll::-webkit-scrollbar-thumb {
    background-color: #c2e5c4;
    border-radius: 10px;
}

/* Responsive Tweaks */
@media (max-width: 600px) {
    .products-section h2 {
        font-size: 2rem;
    }

    .product-item {
        font-size: 1rem;
        padding: 1rem;
    }
}

.product-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10%;
    margin-bottom: 0.5rem;
}





.product-item {
    width: 160px; /* Adjust to control how many items per row */
    height: 160px;
    background: #ffffff;
    padding: 1rem;
    border: 1px solid #d4e9d4;
    border-radius: 12px;
    text-align: center;
    font-size: 1rem;
    color: #2e7d32;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* font-family: "Open Sans", sans-serif; */
}
.product-item span{
    font-family: "Open Sans", sans-serif;
    display: inline-block; /* or block */
    width: 80%;
    text-align: center;
    white-space: normal; /* allows wrapping */
    word-wrap: break-word; /* optional: breaks long words */
    font-size: 14px; /* adjust for better line fit */
}
/* Image style inside each product */
.product-item img {
    width: 63%;
    height: 70%;
    object-fit: cover;
    border-radius: 0%;
    margin-bottom: 0.5rem;
}

@media (max-width: 600px) {
    .product-item {
        width: 45%;
        height: 150px;
    }
}



.quote-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}



.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.modal-content input {
    width: 100%;
    padding: 0.7rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.modal-content button {
    padding: 0.6rem 1.2rem;
    background-color: #2e7d32;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.modal-content button:hover {
    background-color: #256429;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.4rem;
    color: #333;
    cursor: pointer;
}


.modal-content-success-popup{
    color: rgb(22, 21, 21);
    background-color: #c4bac1;
    width: 50%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.modal-content-success-popup h3 p{
    color: rgb(17, 17, 17);
    background-color: #ffffff;
    width: 50%;
    height: 40%;
}




.logo {
    display: flex;
    align-items: center;
    font-size: 2rem;
    color: #2e7d32;
    /* gap: 0.8rem; */
}

.logo-img {
    width: 10px;
    height: 10px;
    object-fit: contain;
    /* border-radius: 50%; */
}


.navbar-container{
    max-width: 120px;
    margin: 0 auto;
    padding: 0 20px;
    /* gap: 40%; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #ffffff; */
}



.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* optional: helps on smaller screens */
    padding: 0.5rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.6rem;
    font-weight: bold;
    color: #e7f4e9;
    font-family: Verdana, sans-serif;
}
.logo h1{
    font-family: "Ubuntu", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    /* padding: 10px; */
}

.navbar {
    display: flex;
    /* gap: 1.5rem; */
}

.navbar a {
    text-decoration: none;
    color: #e7f4e9;
    font-weight: 500;
    transition: color 0.3s;
}



.hero{
    /* max-height: 10%; */
    height: 10%;
}

.hero-content {
    /* text-align: center; */
    padding: 2rem;
    color: white;
    /* width: 170%; */
    font-size: 1.5rem;
    display: flex; 
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* margin-top: 12%; */
}

.hero-content h2 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideIn 1s ease forwards;
    animation-delay: 0.2s;
    /* font-family: "Ubuntu", sans-serif; */
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2rem;
}

.hero-content p {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;
    /* font-size: 2rem; */
}
.hero-content .tagline {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideIn 1s ease forwards;
    animation-delay: 2s; /* Delayed after h2 */
}

/* Keyframes for smooth entrance */
@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideIn {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}


.hero-subtext {
    font-size: 1.1rem;
    color: #f0f0f0;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s;
    font-family: "Ubuntu", sans-serif;
    font-weight: 200;
}

.btn-primary {
    background: #395a49;
    color: #ffffff;
}

.btn-primary:hover {
    background: #616761;
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: rgb(255, 255, 255);
}

.btn-secondary:hover {
    background: #ffffff;
    color: #2e7d32;
}



.stat-box {
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem 2rem;
    border-radius: 10px;
}
.counter {
    /* font-size: 2rem; */
    font-weight: bold;
    color: #ffffff;
    display: inline-block;
}




.stat-box {
    background: #DAD7CD;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.2rem;
}

.counter {
    font-size: 2rem;
    font-weight: bold;
    color: #081C15;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 0.5s ease;
}

.slide.active {
    display: block;
}



.profile-section {
    padding: 4rem 0;
    background-color: #d7ebe8;
}

.profile-grid {
    display: flex;
    /* flex-wrap: wrap; */
    align-items: center;
    gap: 2rem;
    /* background-color: #d7f2e4; */
    width: 100%;
}

.profile-image {
    flex: 1 1 50%;
    background-color: #395a49;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    padding: 2%;
    opacity: 0.7;
    /* background-color: #219d55; */
}

.profile-card {
    flex: 1 1 50%;
    /* background: #982a2a; */
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 7px 8px rgba(0, 0, 0, 0.05);
    height: 360px;
    background-color: #ffffff;
    /* font-family: "Poetsen One", sans-serif; */
    font-weight: 300;
}

.profile-card p{
    margin: 4%;
    font-family: "Ubuntu", sans-serif;
}
.read-more-btn {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.6rem 1.2rem;
    background-color: #395a49;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.read-more-btn:hover {
    background-color: #616761;
}
@media (max-width: 768px) {
    .profile-grid {
        flex-direction: column;
    }

    .profile-image,
    .profile-card {
        flex: 1 1 100%;
    }
}



.two-column-quote {
    /* display: flex; */
    /* flex-wrap: wrap; */
    gap: 2rem;
    background-color: #f5fff5;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.quote-features {
    flex: 1 1 50%;
}

.quote-features h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #2e7d32;
}

.features-list {
    list-style: none;
    padding-left: 0;
}

.features-list li {
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: #333;
}

.features-list i {
    color: #2e7d32;
    font-size: 1.2rem;
}

.quote-box {
    /* flex: 1 1 50%; */
    background: #e65454;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.quote-box textarea {
    width: 100%;
    height: 120px;
    margin-top: 1rem;
    padding: 0.8rem;
    border-radius: 5px;
    border: 1px solid #2a509c;
    resize: vertical;
}

.quote-btn {
    margin-top: 1rem;
    padding: 0.6rem 1.4rem;
    background-color: #0ec817;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}

.quote-btn:hover {
    background-color: #256429;
}

.quote-container{
    display: flex;
    align-items: center;
    justify-content: center;
}


.quote-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.quote-container {
    display: flex;
    /* flex-wrap: nowrap; */
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 2rem;
    max-width: 1200px;
    margin: 0px;
    padding: 0px;    
    background-color: #ffffff;
    box-shadow: none;
}

.quote-features,
.quote-box {
    flex: 1 1 50%;
    /* background-color: #ffffff; */
    width: 40%;
    height: 100%;
    /* display: flex; */
    /* align-items: left;
    justify-content: center; */
}

.quote-features h2 {
    font-size: 1.8rem;
    color: #2B3C2C;
    margin-bottom: 1.5rem;
    align-items: center;
    justify-content: center;
    display: flex;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}
.quote-features span {

    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.features-list {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: left;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
}

.features-list li {
    margin-bottom: 1rem;
    margin-left: 1rem;
    font-size: 1rem;    
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #444;
}

.features-list i {
    color: #2e7d32;
    font-size: 1.2rem;
}

.quote-box {
    background: #DFEAD1;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: #000000;
    font-weight: 400;
}
.quote-box h2{
    font-weight: 700;
    color: #2B3C2C;
}
.quote-box p{
    font-weight: 500;
    color: #2B3C2C;
}

.quote-box textarea {
    width: 100%;
    height: 120px;
    padding: 0.8rem;
    margin-top: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    resize: vertical;
}

.quote-btn {
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    background-color: #2B3C2C;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}

.quote-btn:hover {
    background-color: #256429;
}


.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #66ac69;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-item i {
    font-size: 1.8rem;
    color: #2e7d32;
    flex-shrink: 0;
}

.feature-item:hover{
    background: #1B4332;
}
/* Animation on text only */
.slide-text {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInText 0.6s ease forwards;
}

/* Add staggered delay per item */
.feature-item:nth-child(1) .slide-text { animation-delay: 0.2s; }
.feature-item:nth-child(2) .slide-text { animation-delay: 0.4s; }
.feature-item:nth-child(3) .slide-text { animation-delay: 0.6s; }
.feature-item:nth-child(4) .slide-text { animation-delay: 0.8s; }
.feature-item:nth-child(5) .slide-text { animation-delay: 1s; }

@keyframes slideInText {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.contact-methods a {
    display: inline-flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    color: #fff;
    background-color: #000000;
    transition: background-color 0.3s ease;
}

.contact-methods a i {
    margin-right: 8px;
}

/* Email Button */
.email-btn {
    background-color: #000000; /* green */
}

.email-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

/* ✅ SMS Button */
.sms-btn {
    background-color: #000000; /* cyan/blue */
}

.sms-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Phone Link */
.phone-link {
    background-color: #ffffff; /* amber */
}

.phone-link:hover {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.social-links a {
    color: #000000;
    /* font-size: 3rem; */
    background-color: #ffffff;
    /* transition: color 0.3s ease; */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    padding-left: 4%;
    /* border-radius: 80px; */
}
.social-links a i{
    /* color: #247389;
    font-size: 2rem;
    background-color: #ffffff; */
    /* transition: color 0.3s ease; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 3rem;
    height: 3rem; */
} 
.social-links a:hover {
    color: #ffffff;
    background-color: rgb(0, 0, 0);
}


.container h1{
    font-family: "Poetsen One", sans-serif;
    font-weight: 500;
    font-style: normal;
}
.container h2{
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.header {
    position: relative;
    z-index: 1; /* ensures it's above the background image */
    background-color: #081C15; /* optional white tint background */
}

/* Background Image behind Header */
.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* background-image: url('/assets/images/logo1.jpg'); 🔁 your background image path */
    background-size: cover;
    background-position: center;
    opacity: 0.3; /* Adjust this for visibility */
    z-index: -1; /* places it behind header content */
    pointer-events: none; /* allows clicks to pass through */
}



/* Main Section */
.ratings-section {
    background-color: #f0fdf4;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* Container Alignment */
.ratings-container {
    max-width: 1000px;
    margin: auto;
}

/* Header */
.rating-header h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

/* Overview Block */
.rating-overview {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
}

/* Star Rating Block */
.star-rating {
    flex: 1 1 300px;
    text-align: center;
}

.star-rating .rating-score {
    font-size: 36px;
    font-weight: 700;
    color: #4CAF50;
}

.star-rating .stars {
    font-size: 24px;
    color: #FFD700;
    margin: 5px 0;
}

.star-rating .review-count {
    font-size: 14px;
    color: #777;
}

/* Breakdown Bars */
.rating-breakdown {
    flex: 1 1 300px;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin: 8px 0;
    font-size: 14px;
    color: #555;
}

.rating-bar span:first-child {
    width: 30px;
}

.bar {
    flex: 1;
    height: 8px;
    background-color: #e0e0e0;
    margin: 0 10px;
    border-radius: 4px;
    overflow: hidden;
}

.bar .fill {
    height: 100%;
    background-color: #4CAF50;
    border-radius: 4px 0 0 4px;
    transition: width 0.3s ease;
}

/* User Reviews Section */
.user-reviews {
    margin-top: 50px;
}

.user-reviews h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Review Cards */
.review-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.review-card:hover {
    transform: translateY(-3px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-header .stars {
    color: #FFD700;
    font-size: 18px;
}

.review-date {
    font-size: 13px;
    color: #888;
}

.reviewer-info {
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
}

.product-name {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 8px;
    color: #111;
}

.review-metrics span {
    margin-right: 15px;
    font-size: 13px;
    color: #555;
}





.link-column{
    height: 300px;
}

.alpha1 a{
    color: #ffffff;
}


.link-column h3 {
    /* width: auto; */
    align-items: center;
    /* display: inline-block; Adjusts width according to the content */
    justify-content: center;
    /* margin: 0; Optional: Removes default margin */

}





















.social-links {
    display: flex;
    justify-content: center; /* Centers icons horizontally */
    align-items: center; /* Centers icons vertically */
    width: auto;
  }
  
  .social-links i {
    font-size: 32px; /* Adjust the size of the icons */
  }
  




























/* =============== Media Queries for Header and Hero Section =============== */

/* For devices with height less than 700px (shorter screens like small laptops, tablets) */
@media screen and (max-height: 760px) {
    .header .logo-img {
        height: 2rem;
        width: 2rem;
    }
    .header h1 {
        font-size: 20px;
    }
    .navbar a {
        padding: 8px 12px;
        font-size: 14px;
    }
    .hero-content h2 {
        font-size: 28px;
    }
    .hero-content .tagline {
        font-size: 16px;
    }
    .hero-content .hero-subtext {
        font-size: 14px;
    }
    .hero-buttons a {
        padding: 10px 20px;
        font-size: 14px;
    }
    .hero-stats .stat-box {
        font-size: 14px;
    }
}

/* For devices with height less than 500px (tiny screens or landscape phones) */
@media screen and (max-height: 500px) {
    .header .container {
        flex-direction: column;
        align-items: center;
    }
    .header h1 {
        text-align: center;
        margin-bottom: 10px;
    }
    .navbar {
        flex-direction: column;
        align-items: center;
    }
    .navbar a {
        display: block;
        margin: 5px 0;
    }
    .hero-content {
        padding: 20px;
    }
    .hero-content h2 {
        font-size: 24px;
    }
    .hero-content .tagline,
    .hero-content .hero-subtext {
        font-size: 12px;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons a {
        margin-bottom: 10px;
        width: 80%;
        text-align: center;
    }
    .hero-stats {
        flex-direction: column;
        gap: 10px;
        background-color: #ffffff;
        opacity: 1;
    }
}


/* Default styles */
.menu-icon {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

/* Navbar styles for mobile (below 768px) */




/* =================== Media Queries for Quick Links Section =================== */

/* Tablet View (width <= 768px) */
@media screen and (max-width: 768px) {
    .quick-links-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .link-column {
        width: 80%;
        text-align: center;
    }

    .link-column h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .link-column ul li {
        margin-bottom: 10px;
    }

    .view-all-links a {
        display: block;
        margin: 8px 0;
    }

    .two-column-quote{
        flex-direction: column;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .quote-box{
        width: 100%;
        max-width: 100%;
        /* background-color: #06a80e; */
    }
    .quote-features h2{
        font-size: 1rem;
        /* padding: 20px; */
    }

    .feature-item{
        /* background-color: #2a509c; */
        /* width: 200%; */
        /* max-width: 200%; */
        padding: 0px;
        margin: 0px;
    }

    .feature-item{
        padding: 1rem;
        font-size: 0.7rem;
    }
}

/* Mobile View (width <= 480px) */
@media screen and (max-width: 480px) {
    .quick-links-grid {
        gap: 20px;
    }

    .link-column {
        width: 100%;
    }

    .link-column h3 {
        font-size: 20px;
    }

    .link-column ul li a {
        font-size: 16px;
    }

    .view-all-links a {
        font-size: 16px;
    }
}










/* Default layout: Side-by-side */
/* .hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
} */

/* Stat box style */
.stat-box {
    font-size: 2px;
    text-align: center;
}

/* Mobile layout: Column direction */
@media screen and (max-width: 768) {

    .hero-stats {
        flex-direction: column; 
        gap: 10px; /* Reduce gap for mobile */
        width: 20px;
        font-size: 1px;
        height: 20px;
        /* width: 100px; */
    }

    .counter {
        font-size: 30px;
        font-weight: bold;
        padding: 0px;
    }
    
    .stat-label {
        font-size: 1px;
        display: block;
        /* margin-top: 5px; */
    }
    .hero-content {

        margin-top: 12%;
    }
}








/* HERO SECTION BASE */
.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
}

.hero-content {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    text-align: center;
}

.hero-buttons {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons a {
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 5px;
    text-decoration: none;
    /* background-color: #28a745; */
    /* color: #fff; */
}

/* HERO STATS DEFAULT */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
    /* background-color: #000000; */
}

.stat-box {
    /* background: rgba(255, 255, 255, 0.15); */
    padding: 20px;
    min-width: 180px;
    text-align: center;
    border-radius: 10px;
    font-size: 24px;
    backdrop-filter: blur(4px);
}

/* TABLET VIEW */
@media screen and (max-width: 768px) {
    .hero-content h2 {
        font-size: 20px;
    }

    .hero-content .tagline {
        font-size: 15px;
    }

    .hero-content .hero-subtext {
        font-size: 16px;
    }

    .hero-buttons a {
        font-size: 16px;
        padding: 10px 20px;
    }

    .stat-box {
        /* min-width: 140px; */
        font-size: 1rem;
        padding: 15px;
    }

    .stat-box br{
        min-width: 220px;
        font-size: 1rem;
        /* padding: 0px;
        margin: 0px; */
    }
    .counter{
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: row;
        gap: 15px;
        align-items: center;
        margin-top: 1rem;
    }
}

/* MOBILE VIEW */
@media screen and (max-width: 500px) {
    .hero-content h2 {
        font-size: 24px;
    }

    .hero-content .tagline {
        font-size: 16px;
    }

    .hero-content .hero-subtext {
        font-size: 14px;
    }

    .hero-buttons {
        /* flex-direction: column; */
        align-items: center;
    }

    .hero-buttons a {
        width: 100%;
    }

    .hero-stats {
        flex-direction: row;
        gap: 15px;
        align-items: center;
        margin-top: 1rem;
    }

    .stat-box br{
        min-width: 220px;
        /* font-size: 20px; */
        padding: 12px;
    }
    .counter{
        font-size: 1rem;
    }
}









@media screen and (max-width: 500px) {
    .product-item {
        width: 100px; /* Smaller item */
        padding: 8px;
        margin: 5px;
    }

    .product-item img {
        width: 100%;
        height: auto;
    }

    .product-item span {
        font-size: 12px; /* Smaller text */
    }
}



.features-grid {
    display: flex;
    /* flex-wrap: wrap; */
    /* justify-content: center; center horizontally */
    align-items: center;      /* center vertically if needed */
    gap: 1rem;                /* space between feature items */
    /* margin-top: 30px; */
    flex-direction: column;
    width: 100%;
    /* background-color: #020602; */
    
}

.feature-item {
    text-align: center; /* center text + icon inside each box */
    width: 25rem;        /* optional: fix width if needed */
    background-color: #DFEAD1;
    margin: 0px;
    padding: 0.5rem;
    
}

.feature-item span{
    color: #2B3C2C;
}

.feature-item i {
    font-size: 36px;
    color: #2B3C2C; /* icon color (optional) */
    width: 20%;
    /* margin-bottom: 10px; */
}

.slide-text {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    color: #333;
}





@media (max-width: 768px) {
    .quote-container.two-column-quote {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .quote-features {
        width: 100%;
    }

    .features-grid {
        display: flex;
        flex-direction: column;
        gap: 20px; /* Adds spacing between feature items */
        align-items: center;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 10px; /* Space between icon and text */
        font-size: 1.2rem; /* Adjust font size for better readability */
        
    }

    .feature-item i {
        font-size: 1.5rem; /* Adjust icon size */
        color: white;
    }

    .slide-text {
        font-size: 1rem;
        text-align: center;
    }
    .slide-text:hover{
        color: white;
    }
}




















































/* Hero Section Layout */
.hero {
    width: 100%;
    padding: 0px;
    margin: 0px;
    background-color: #EAF4E8;
}

.hero-inner {
    display: flex;
    max-width: 1200px;
    margin: 0px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Left Side: Slider */
.slider-container {
    width: 50%;
    min-height: 400px;
    overflow: hidden;
    /* border-radius: 2rem; */
    position: relative;
    padding: 1rem;
    opacity: 0.9;
    background-color: #EAF4E8;
}

.slider {
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.5s ease-in-out;
    border-radius: 2rem;
}

.slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    filter: brightness(2);
}

/* Right Side: Content */
.hero-content {
    width: 50%;
    padding-left: 30px;
    right: 0px;
}

.hero-content h2 {
    font-size: 2rem;
    color: #2B3C2C;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2B3C2C;
    margin: 10px 0;
}

.hero-subtext {
    font-size: 1rem;
    color: #2B3C2C;
    margin-bottom: 20px;
}

.hero-buttons {
    margin-bottom: 20px;
}

.btn-primary,
.btn-secondary {
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 600;
    margin-right: 10px;
}

.btn-primary {
    background-color: #2B3C2C;
    color: white;
}

.btn-secondary {
    /* background-color: #e0f5dd; */
    color: #2B3C2C;
    opacity: 1;
}

.hero-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.stat-box {
    text-align: center;
    font-size: 0.9rem;
    color: #2e3d2e;
}

.counter {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Responsive (Stacked) for smaller screens */
@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column;
    }

    .slider-container,
    .hero-content {
        width: 100%;
        padding: 0;
    }

    .hero-content {
        margin-top: 20px;
    }
}
















.stat-box{
    background-color: #dfead1;
}



.profile-card {
    text-align: center;  /* Centers the text within this container */
    padding: 20px;       /* Adjust padding as needed */
}

.profile-section {
    display: flex;
    justify-content: center; /* Centers the content horizontally */
    align-items: center;     /* Centers the content vertically (if needed) */
    height: 100vh;           /* Optional: ensures the section takes the full height of the viewport */
    background-color: #ffffff;
}

.profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;  /* Adjust spacing between image and text */
    width: 80%;  /* Adjust width as needed */
    background-color: #fdfdfd;
}


.profile-card{
    color: #2B3C2C;
    background-color: #EAF4E8;
}


.read-more-btn{
    background-color: #353535;
}



.products-section{
    background-color: #EAF4E8;
}

.products-scroll{
    background-color: #EAF4E8;
}

.products-section h2{
    color: #2B3C2C;
    font-weight: 700;
}

/* Center the entire .products-scroll grid */
.products-scroll-container {
    display: flex;
    justify-content: center;   /* Center horizontally */
    align-items: center;       /* Center vertically */
    min-height: 100vh;          /* Ensure the container takes up the full height of the viewport */
}

.products-scroll {
    /* display: grid; 
    grid-template-columns: repeat(5, 1fr); 
    grid-template-rows: repeat(2, 1fr);      */
    gap: 3.8rem;                             /* Adjust the space between boxes (increase/decrease this value) */
    /* width: 80%;                             Control the width of the grid */
    /* max-width: 1200px;                      Optional: Set a max-width for larger screens */
    margin: 0px;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Style for product boxes */
.product-box {
    border: 1px solid #ccc;  /* Optional border for the boxes */
    padding: 20px;            /* Optional padding */
    text-align: center;       /* Centers text inside the product boxes */
    background-color: #f8f8f8; /* Optional background for the boxes */
}



.product-item{
    margin: 0px;
    padding: 0px;
    gap: 1rem;
    /* background-color: #06a80e; */
    width: 17rem;
    height: 17rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2%;
    box-shadow: 0.3rem 0.3rem 1.5rem 0.25rem rgba(0, 0, 0, 0.5);
}

.product-item span{
    margin: 0px;
    padding: 0px;
    color: #2B3C2C;
}







































































.ratings-section{
    background-color: #EAF4E8;
}


.rating-header h2{
    color: #2B3C2C;
    font-weight: 700;
    font-size: 3rem;
}




.rating-score{
    color: #2B3C2C;
    /* background-color: #06a80e; */
}


.star-rating span{
    color: #2B3C2C;
    
}
















.read-more-btn{
    /* padding-top: 0px; */
    margin-top: -0.3rem;
}


@media (max-width: 768px) {
    .profile-grid{
        display: flex;
        flex-direction: column;
        /* background-color: #06a80e; */
/*         margin: 0px;
        padding: 0px; */
        /* height: 20rem; */
    }

    .profile-card p{
        font-size:1rem ;
        /* overflow: hidden; */
        margin: 0px;
        /* padding: 0px; */
    }
    

    .profile-section{
        padding: 0px;
    }


    .profile-image{
/*         margin-top: 5rem; */
        /* display: none; */
    }
}
