/* 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;
}

/* Header Styles */
.header {
    background: #06a80e;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 500;
}

.logo {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}

.navbar {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 0;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background 0.3s;
}

.navbar a:hover {
    background: #1b5e20;
}

/* .navbar .active {
    background: #1b5e20;
} */

/* Products Grid */
.products-main {
    padding: 4rem 0;
    background: #f8f9fa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #06a80e;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 600px;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    animation: modalOpen 0.3s;
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 1.5rem;
    cursor: pointer;
}

.quote-section {
    background: #6fa3a6;
    color: white;
    padding: 4rem 0;
    display: flex;
    /* justify-content: end; */
    align-items: end;
    right: 0px;
} 

.quote-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.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);
}



.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    /* display: flex; */
    justify-content: center;
    align-items: flex-start; /* Align to top */
    padding-top: 40px; /* Add top margin */
    overflow-y: auto; /* Enable scrolling for tall modals */
}


.plant-specs {
    padding: 1rem;
}


.care-instructions {
    padding: 1rem;
    background: #e8f5e9;
    border-radius: 8px;
    margin-top: 1.5rem;
}



/* Modal Grid Structure */
.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-height: 80vh;
    overflow-y: auto;
}

.image-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1rem;
}

.image-details {
    padding: 1rem 0;
    font-size: 0.9em;
}

.info-column {
    padding: 0 1rem;
}





/* Modal Container */
.modal-content {
    max-width: 800px;
    width: 90%;
    padding: 2rem;
    background-color: #747a67;
}

.general-info {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #eee;
}

.image-detail-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
    align-items: start;
}

.image-column {
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
}

.image-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-column {
    padding: 1rem;
    background: #cccbcb;
    border-radius: 8px;
    width: 100%;
    height: 100%;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    margin: 0.5rem 0;
    padding: 0.5rem;
    background: white;
    border-radius: 4px;
}

.spec-key {
    font-weight: 600;
    color: #2c3e50;
}

.spec-value {
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .image-detail-pair {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .image-column {
        height: 200px;
    }
}



@media (max-width: 768px) {
    .modal-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-images {
        grid-template-columns: 1fr;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
}

@keyframes modalOpen {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

























/* ===== 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: #2c3e50;
    color: #fff;
}

.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,255,255,0.05);
    border-radius: 10px;
}

.get-directions {
    display: inline-block;
    background: #27ae60;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    margin-top: 1rem;
    text-decoration: none;
    transition: background 0.3s;
}

.get-directions:hover {
    background: #219d55;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    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: #219d55;
}

/* 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: #f9f9f9;
    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;
}

.link-column h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #444;
}

.link-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-column ul li {
    margin-bottom: 10px;
}

.link-column ul li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-column ul li a:hover {
    color: #2e7d32;
    text-decoration: underline;
}

.view-all-links {
    margin-top: 15px;
}

.view-all-links a {
    color: #2e7d32;
    margin-right: 10px;
    text-decoration: none;
    font-weight: 500;
}

.view-all-links a:hover {
    text-decoration: underline;
}










/* Modal image styling */
.modal-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    background-color: #a6385f;
    height: auto;
    object-position: center center;
    border-radius: 15px;
}

.modal-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* or 'contain' for full image display */
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

/* For multiple images in modal */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.gallery-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.03);
}


/* Ensure images scale properly on mobile */
@media (max-width: 768px) {
    .product-image-container {
        height: 180px;
    }
    
    .modal-image-container {
        height: 300px;
    }
    
    .gallery-image {
        height: 150px;
    }
}



/* Target the image column in your modal grid */
.image-detail-pair .image-column {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background-color: #daded3;
    border-radius: 30%;
  }
  
  /* Center the image inside its container */
  .image-column img {
    max-width: 100%;
    height: auto;
    object-fit: contain; /* Ensures full image visibility */
    object-position: center;
    /* border-radius: 10%; */
  }
















/* 1. header */
  .header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; 
    padding: 0.5rem 2rem;
}

.header {
    background: #929c94;
    padding: 0rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
 
    position: relative;
    z-index: 1; 
    background-color: #081C15; 
}

/* 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 */
}


.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;
}

.logo {
    color: rgb(21, 19, 19);
    /* font-size: 1rem; */
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    font-size: 2rem;
    color: #2e7d32;
    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: 10px;
    height: 10px;
    object-fit: contain;
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    /* padding: 10px; */
}



.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;
    text-decoration: none;
    color: #e7f4e9;
    font-weight: 500;
    transition: color 0.3s;
}

.navbar a:hover {
    background: #1b5e20;
}

.navbar a:hover,
.navbar a.active {
    color: #e7f4e9;
    background-color: #000000;
}





















/* 2.  */

.container-12 h2{
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #000000 */
}
.container-12 h4{
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #000000 */
}





/* Styling the grid container */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Responsive grid layout */
    gap: 20px; /* Adds space between items */
    padding: 20px; /* Optional: Adds padding to the grid */
  }
  
  /* Styling individual product items */
  .product-item {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    justify-content: center; /* Centers content vertically */
    align-items: center; /* Centers content horizontally */
    background-color: #f9f9f9; /* Optional: Background color for product items */
    padding: 20px;
    border-radius: 8px; /* Optional: Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional: Adds shadow for better visuals */
  }
  
  /* Styling for the product image container */
  .product-image-container {
    width: 100%; /* Ensures the image container takes full width */
    display: flex;
    justify-content: center; /* Centers the image horizontally */
    align-items: center; /* Centers the image vertically */
  }
  
  .product-image {
    max-width: 100%; /* Ensures the image scales properly */
    height: auto;
    display: block;
    width: 10rem; /* Fixed width, adjust as needed */
    height: 10rem; /* Fixed height, adjust as needed */
    object-fit: cover; /* Ensures the image covers the area without distortion */
    display: block; /* Removes any extra space below the image */
  }
  
  /* Styling for the product title and price */
  .product-title, .product-price {
    text-align: center; /* Ensures text is centered */
    margin-top: 10px; /* Optional: Adds margin between image and text */
    margin-bottom: 5px; /* Optional: Adds margin below the price */
    color: #333; /* Optional: Adjusts text color */
  }
  

  .product-title {
    font-size: 1rem; /* Sets text size to 1.5rem */
    font-weight: bold; /* Makes the title bold */
    text-align: center; /* Centers the title text */
    margin-top: 10px; /* Adds space between the image and the title */
    color: #333; /* Sets a dark color for the text */
  }


























/* 3.  */
.quote-box {
    max-width: 70%;
    margin: 0 auto;
    text-align: center;
    background: #e65454;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

    background: #c1d2d3;
    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: 600;
}

.quote-box textarea {
    width: 100%;
    height: 120px;
    margin-top: 1rem;
    padding: 0.8rem;
    border-radius: 5px;
    border: 1px solid #2a509c;
    resize: vertical;
    width: 100%;
    height: 120px;
    padding: 0.8rem;
    margin-top: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    resize: vertical;
}

.quote-features,
.quote-box {
    flex: 1 1 50%;
    /* background-color: #ffffff; */
    width: 40%;
    height: 100%;
    /* display: flex; */
    /* align-items: left;
    justify-content: center; */
}





.ratings-section {
    background-color: #f0fdf4;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.ratings-container {
    max-width: 1000px;
    margin: auto;
}

.rating-header {
    text-align: center;
    margin-bottom: 2rem;
}
.rating-header h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}


.rating-overview {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 3rem;
    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 {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}
.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;
}

.rating-score {
    font-size: 3rem;
    color: #27ae60;
    display: block;
    margin-bottom: 1rem;
}

.star-rating .review-count {
    font-size: 14px;
    color: #777;
}

.stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.review-header .stars {
    color: #FFD700;
    font-size: 18px;
}


.rating-breakdown {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    flex: 1 1 300px;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin: 1rem 0;
    gap: 1rem;
}

.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: #eee;
    border-radius: 4px;
    overflow: hidden;
    flex: 1;
    height: 8px;
    background-color: #e0e0e0;
    margin: 0 10px;
    border-radius: 4px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: #27ae60;
}
.bar .fill {
    height: 100%;
    background-color: #4CAF50;
    border-radius: 4px 0 0 4px;
    transition: width 0.3s ease;
}

.user-reviews {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}
.user-reviews {
    margin-top: 50px;
}

.user-reviews h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.review-card {
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.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: 1rem;
}

.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 {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}
.reviewer-info {
    font-size: 14px;
    color: #444;
    margin-bottom: 8px;
}

.product-name {
    color: #666;
    margin-bottom: 1rem;
}
.product-name {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 8px;
    color: #111;
}

.review-metrics {
    display: flex;
    gap: 2rem;
    color: #27ae60;
}

.review-metrics span {
    margin-right: 15px;
    font-size: 13px;
    color: #555;
}

.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;
}

.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;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #000000;
    text-decoration: none;
    font-size: 1.2rem;
}
.phone-link {
    background-color: #ffffff; /* amber */
}

.phone-link:hover {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
}

.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;
    
}

.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;
}


.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;
}

.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);
}


.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 */
}

.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;
}

.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; */ 
}

.link-column{
    height: 300px;
}

.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 */

}


.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;
}

.footer {
    background: #06a80e;
    color: white;
    padding: 2rem 0;
    text-align: center;
}
























































































































/* 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;
    }
}

/* 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;
    }
}































/* Responsive Design */
@media (max-width: 768px) {
    .rating-overview,
    .reach-us-container {
        grid-template-columns: 1fr;
        flex-direction: column;
        /* display: flex; */
        /* background-color: #06a80e; */
    }
    
    .rating-breakdown {
        padding: 1.5rem;
    }
    
    .review-metrics {
        flex-direction: column;
        gap: 0.5rem;
    }
}




@media (max-width: 768px) {
    .products-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Two products per row */
        gap: 15px;
    }

    .product-item {
        height: 220px; /* Decreased height */
        padding: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        background-color: #f9f9f9;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }

    .product-image-container {
        height: 120px; /* Adjust image container height */
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .product-image {
        height: 100%;
        width: auto;
        object-fit: cover;
    }

    .product-title {
        font-size: 1rem;
        margin: 5px 0;
        text-align: center;
    }

    .product-price {
        font-size: 0.9rem;
        color: #333;
        font-weight: bold;
        text-align: center;
    }


    .section-subtitl{
        background-color: #06a80e;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        padding-left: 15px;
        flex-wrap: wrap;
    }


    .section-subtitle{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}
}




@media (max-width: 769px) {
    .section-subtitle {
        text-align: center;
        margin: 0 auto;
        max-width: 800px; /* optional */
        /* background-color: #020602; */
    }
}








.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;
}
.modal-overlay.active {
    display: flex;
}
























































































































.cart-actions {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.add-to-cart-btn {
    background-color: #4CAF50;
    color: white;
    padding: 6px 12px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}





/* Addede By Sajal Start----- */

.cart-actions {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}
.cart-actions input[type="number"] {
  padding: 4px;
  text-align: center;
}


/* Added By Sajal End  */
























































#plantModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay effect */
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000; /* Ensure it appears on top of other content */
}

.modal-content {
    background-color: white;
    /* padding: 20px; */
    border-radius: 8px;
    max-width: 70%; /* Prevent the modal from being too wide */
    max-height: 95%; /* Prevent the modal from overflowing the viewport */
    overflow-y: auto; /* Allow scrolling inside the modal if necessary */
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    cursor: pointer;
}


























/* Modal Overlay */
#plantModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Darker overlay effect */
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000; /* Ensure it appears on top of other content */
}

/* Modal Content */
.modal-content {
    background-color: white;
    padding: 10px; /* Reduced padding */
    border-radius: 8px;
    max-width: 70%; /* Prevent the modal from being too wide */
    max-height: 95%; /* Prevent the modal from overflowing the viewport */
    overflow-y: auto; /* Allow scrolling inside the modal if necessary */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

/* Plant Images and Details */
.image-detail-pair {
    display: flex;
    gap: 10px;
    margin-bottom: 10px; /* Reduced margin */
    align-items: flex-start; /* Align images and details properly */
    flex-wrap: wrap; /* Allow wrapping of items */
}

.image-column {
    flex: 1 1 45%; /* Flex item takes up 45% width, allowing two items per row */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px; /* Reduced margin */
}

.image-column img {
    width: 100%;
    max-width: 230px; /* Reduced max-width */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.image-column img:hover {
    transform: scale(1.05); /* Zoom effect on hover */
}

.detail-column {
    flex: 1 1 45%; /* Flex item takes up 45% width, allowing two items per row */
    display: flex;
    flex-direction: column;
    gap: 5px; /* Reduced gap */
}

.spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #555;
    margin: 0; /* Set margin to 0 */
}

.spec-key {
    font-weight: bold;
}

.spec-value {
    font-style: italic;
}

/* Cart Actions */
.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px; /* Reduced margin */
}

.cart-actions label {
    font-size: 1rem;
    color: #333;
    margin: 0; /* Set margin to 0 */
}

.cart-actions input {
    width: 60px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    text-align: center;
    outline: none;
}

.cart-actions button {
    background-color: #4CAF50;
    color: white;
    padding: 8px 18px; /* Reduced padding */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.cart-actions button:hover {
    background-color: #45a049; /* Slightly darker on hover */
}

/* Modal Container for Plant Info */
.modal-container {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Reduced gap */
}

.general-info {
    font-size: 1rem;
    color: #333;
    margin: 0; /* Set margin to 0 */
}

.general-info h2 {
    margin-bottom: 5px; /* Reduced margin */
    font-size: 1.4rem;
    font-weight: bold;
    color: #222;
}

.price {
    color: #e74c3c;
    font-size: 1.1rem; /* Reduced font size */
    font-weight: bold;
    margin-bottom: 5px; /* Reduced margin */
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Display two columns */
    gap: 10px; /* Reduced gap */
    margin-bottom: 15px; /* Reduced margin */
}

.spec-item {
    font-size: 0.9rem;
    margin: 0; /* Set margin to 0 */
}

.spec-item span {
    display: block;
}


































