/* ==========================================
   Start: Navbar & Responsive UI Styling
   Includes styles for navbar layout, branding, nav links, 
   language selector, cart icon, and mobile responsiveness.
   ========================================== */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Arial', sans-serif;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
  }
  
  /* Body Styling */
  body {
    background-color: #f4f9f4; /* soft background for agro feel */
    color: #1f3b2e; /* deep green for text */
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.4s ease, color 0.4s ease;
  }
  
  /* General Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px; /* Slightly increased padding for a more spacious feel */
    background-color: #f8f1e9; /* Warmer beige with a hint of cream for a softer agro vibe */
    background-size: 200% 200%; /* Set size for gradient transition */
    background-position: left center; /* Start position of background */
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.15); /* Green-tinted shadow for depth */
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid #e0e8d5; /* Subtle green-tinted border for cohesion */
    animation: backgroundAnimation 5s linear infinite; /* Apply animation */
}

/* Add a hover effect for interactivity */
.navbar:hover {
    background-color: #f9f5ed; /* Slightly lighter on hover for a dynamic feel */
}

/* Optional: Shrink navbar on scroll for better usability */
.navbar.scrolled {
    padding: 10px 40px; /* Reduced padding when scrolled */
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.2); /* Tighter shadow when scrolled */
}

/* Background Animation */
@keyframes backgroundAnimation {
    0% {
        background-position: left center; /* Start position */
        background-color: #f8f1e9; /* Initial color */
    }
    50% {
        background-position: right center; /* End position */
        background-color: #e0e8d5; /* Change to a softer tone */
    }
    100% {
        background-position: left center; /* Return to original position */
        background-color: #f8f1e9; /* Back to original color */
    }
}


  
 /* Brand Section */
.brand-section {
    display: flex;
    align-items: center;
    gap: 12px; /* Slightly increased for better spacing */
    padding: 5px 0; /* Adds subtle vertical padding for balance */
}

/* Brand Logo */
.brand-logo {
    width: 100px; /* Slightly larger for prominence */
    height: auto;
    border-radius: 50%; /* Circular shape for a natural, organic feel */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Added shadow transition */
}

/* Enhanced hover effect */
.brand-logo:hover {
    transform: scale(1.12); /* Slightly more subtle scaling */
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3); /* Green-tinted glow */
}

/* Brand Name */
.brand-name {
    font-size: 1.6rem; /* Slightly reduced size for balance */
    color: #2e7d32; /* Retained deep green for agro theme */
    font-weight: 800; /* Bolder for emphasis */
    font-family: 'Poppins', sans-serif; /* Matches Google Fonts from HTML */
    letter-spacing: 1px; /* Slightly tighter for a cleaner feel */
    text-transform: uppercase; /* Uppercase for a bold, earthy statement */
    transition: color 0.3s ease, text-shadow 0.3s ease; /* Added shadow transition */
}

/* Enhanced hover effect */
.brand-name:hover {
    color: #4caf50; /* Lighter green retained */
    text-shadow: 1px 1px 4px rgba(76, 175, 80, 0.6); /* Subtle green glow */
}

/* Navigation Section */
.nav-section {
    display: flex;
    align-items: center;
    gap: 25px; /* Increased for better spacing */
    padding-right: 15px; /* Adds breathing room on the right */
    background: linear-gradient(to right, rgba(245, 245, 240, 0), rgba(224, 232, 213, 0.3)); /* Subtle green fade */
    border-radius: 10px; /* Softens edges for a natural feel */
    transition: background 0.3s ease, box-shadow 0.3s ease; /* Added box-shadow transition for smoother hover effect */
}

/* Hover effect for subtle interactivity */
.nav-section:hover {
    background: linear-gradient(to right, rgba(245, 245, 240, 0), rgba(224, 232, 213, 0.5)); /* Slightly stronger fade */
    box-shadow: 0 4px 8px rgba(46, 125, 50, 0.2); /* Soft green glow on hover */
}

/* Hamburger Menu */
.hamburger-menu {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px; /* Slightly larger for easier tapping */
    position: relative; /* For potential animation effects */
    transition: transform 0.3s ease; /* Smooth transition on activation */
}

/* Hamburger Lines */
.hamburger-line {
    display: block;
    width: 28px; /* Slightly wider for prominence */
    height: 4px; /* Thicker for a bolder look */
    background-color: #2e7d32; /* Deep green retained */
    margin: 6px 0; /* Increased spacing for clarity */
    border-radius: 2px; /* Subtle rounding for softness */
    transition: transform 0.3s ease-in-out, background-color 0.3s ease; /* Smoother transition */
}

/* Active state for hamburger menu (X shape) */
.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px); /* Adjusted for thicker lines */
    background-color: #4caf50; /* Lighter green for active state */
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0; /* Fades out middle line */
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px); /* Adjusted for thicker lines */
    background-color: #4caf50; /* Lighter green for active state */
}

/* Responsive Design: Show Hamburger Menu on smaller screens */
@media (max-width: 768px) {
    .hamburger-menu {
        display: block; /* Show hamburger on mobile */
    }
}
  
 /* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 25px; /* Spacing between nav items */
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #388e3c; /* Medium green */
    font-size: 1.1rem;
    font-weight: 500;
    padding: 8px 12px;
    transition: color 0.3s ease, transform 0.3s ease, padding 0.3s ease; /* Added padding transition */
}

/* Hover Effect */
.nav-link:hover {
    color: #1b5e20; /* Darker green */
    transform: translateY(-2px); /* Lift the link on hover */
    padding-bottom: 12px; /* Adds a bottom padding effect for a subtle expansion */
}

/* Underline Animation */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #4caf50; /* Green underline */
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.3s ease-in-out;
}

/* Expand underline on hover */
.nav-link:hover::after {
    width: 100%; /* Full width underline */
}

  /* Language Selector */
.language-selector {
    position: relative;
}

/* Language Dropdown */
.lang-dropdown {
    padding: 8px 12px;
    border: 1px solid #a5d6a7; /* Light green border */
    border-radius: 5px;
    background-color: #fff;
    color: #2e7d32;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none; /* Removes the default outline */
}

/* Hover and Focus Effect */
.lang-dropdown:hover,
.lang-dropdown:focus {
    border-color: #4caf50; /* Darker green on hover/focus */
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.6); /* Stronger glow effect */
    transform: scale(1.02); /* Slight scale effect for interactivity */
}

/* Optional: Active state for dropdown (open state) */
.lang-dropdown:active {
    background-color: #f1f8f4; /* Slightly different background for active state */
}

 /* Cart Menu */
.cart-menu {
    display: flex;
    align-items: center;
}

/* Cart Link */
.cart-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #388e3c;
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Cart Link Hover Effect */
.cart-link:hover {
    color: #1b5e20; /* Darker green */
    transform: scale(1.1);
}

/* Cart Count */
.cart-count {
    background-color: #e57373; /* Soft red for contrast */
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.9rem;
    transition: all 0.3s ease; /* Smooth transition for background-color and scale */
}

/* Cart Count Hover Effect */
.cart-count:hover {
    transform: scale(1.2); /* Slight scaling effect */
    background-color: #d32f2f; /* Darker red */
}

/* Cart Link Hover - Cart Count Effect */
.cart-link:hover .cart-count {
    background-color: #b71c1c; /* Deeper red for better contrast */
    transition: background-color 0.3s ease;
  }
  
  /* Cart Notification */
  .cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(-20px);
    animation: slideIn 0.4s forwards;
  }
  
  .cart-notification.success {
    background-color: #d8f5d1; /* Softer light green */
    color: #2e7d32; /* Material dark green */
  }
  
  .cart-notification.error {
    background-color: #fdecea; /* Softer light red */
    color: #c62828;
  }
  
  /* Slide in animation for notifications */
  @keyframes slideIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  
/* Responsive Design */
@media (max-width: 768px) {
    /* Show Hamburger Menu */
    .hamburger-menu {
        display: block;
        padding: 15px;
        cursor: pointer; /* Ensure it's clickable */
        transition: transform 0.3s ease; /* Smooth transformation for hamburger menu */
    }

    /* Nav Links Hidden by Default */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #f5f5f0;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-out, opacity 0.3s ease; /* Smooth transition */
        opacity: 0; /* Initially hide the nav links */
    }

    /* Show Nav Links when Active */
    .nav-links.active {
        display: flex;
        transform: translateY(0); /* Slide down effect */
        opacity: 1; /* Fade in effect */
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 10px 0; /* Add spacing between items */
    }

    .nav-link {
        display: block;
        padding: 15px;
        font-size: 1.2rem;
        color: #388e3c; /* Green text for clarity */
        font-weight: 500;
        text-transform: uppercase; /* For a more bold and clear look */
        transition: color 0.3s ease, transform 0.3s ease, letter-spacing 0.2s ease;
    }

    /* Hover effect for nav links */
    .nav-link:hover {
        color: #1b5e20; /* Darker green */
        transform: translateY(-2px); /* Slight lift effect */
        letter-spacing: 1px; /* Add spacing on hover for emphasis */
    }

    /* Remove underline animation on mobile */
    .nav-link::after {
        display: none;
    }

    /* Adjust Brand and Other Elements */
    .brand-section {
        justify-content: center; /* Center brand logo and title */
        gap: 15px; /* Add space between logo and name */
    }

    .brand-logo {
        width: 45px; /* Slightly larger logo for better visibility */
        transition: transform 0.3s ease; /* Smooth transformation for logo */
    }

    .brand-logo:hover {
        transform: scale(1.1); /* Slight zoom effect on hover */
    }

    .brand-name {
        font-size: 1.6rem;
        font-weight: bold;
        letter-spacing: 0.5px; /* Improved readability */
    }

    .language-selector,
    .cart-menu {
        margin-left: 10px;
        margin-top: 10px; /* Add spacing to avoid crowding */
    }

    .language-selector select,
    .cart-menu .cart-link {
        font-size: 1rem; /* Adjust font size for smaller screens */
    }
}

/* Hamburger Animation */
.hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* ==========================================
   End: Navbar & Responsive UI Styling
   All navbar interactions, animations, and responsive behaviors handled above.
   ========================================== */

/* ================== Hero Section Styles (Atiuttam Agro) Start ================== */
/* Includes header, product grid, and animated carousel with responsive design. */

/* Hero Section */
.hero {
    width: 100%;
    padding: 2rem 1rem;
    background-color: #f8f1e9; /* Warm beige from navbar */
    overflow: hidden;
    position: relative;
}

/* Header Styles */
.hero-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
  }
  
  /* Hero Title */
  .hero-title {
    font-size: 2.75rem;
    color: #2e7d32;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.75px;
    line-height: 1.3;
    text-transform: capitalize;
    word-spacing: 1px;
    animation: fadeSlideDown 1.2s ease-in-out both;
  }
  
  /* Animation Keyframes */
  @keyframes fadeSlideDown {
    0% {
      opacity: 0;
      transform: translateY(-30px) scale(0.95);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
  
.hero-box {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #4caf50; /* Brighter green for agro */
    color: #fff;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.hero-box:hover {
    background-color: #388e3c; /* Medium green on hover */
}

/* Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem; /* Slightly larger for breathing room */
    max-width: 1200px;
    margin: 0 auto;
}

.hero-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(46, 125, 50, 0.15); /* Green-tinted shadow */
}

.hero-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.hero-item:hover img {
    transform: scale(1.05);
}

/* Specific Item Sizes */
.large {
    grid-column: span 8;
    aspect-ratio: 16 / 9;
}

.small {
    grid-column: span 4;
    aspect-ratio: 1 / 1;
}

/* Carousel Styles */
.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.carousel-item.active {
    opacity: 1;
}

/* Auto-Change Animation for First Image */
.carousel-item:first-child.active {
    animation: fadeInOut 8s infinite; /* 8-second cycle */
}

@keyframes fadeInOut {
    0% { opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { opacity: 0; }
}

/* Carousel Controls */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(46, 125, 50, 0.5); /* Green-tinted */
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s ease;
    z-index: 10;
}

.carousel-control:hover {
    background: rgba(46, 125, 50, 0.8);
}

.prev { left: 15px; } /* Slightly more spacing */
.next { right: 15px; }

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2rem;
    }

    .large {
        grid-column: span 12;
    }

    .small {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 1.5rem 0.75rem; /* Adjusted for balance */
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-box {
        padding: 0.4rem 0.8rem;
    }

    .small {
        grid-column: span 6;
    }

    .carousel-control {
        padding: 0.4rem 0.8rem;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-grid {
        gap: 0.75rem; /* Adjusted for tighter fit */
    }

    .small {
        grid-column: span 12;
    }

    .carousel-control {
        padding: 0.3rem 0.6rem;
        font-size: 1rem;
    }
}



/* About Section */
.about-section {
  padding: 4rem 2rem;
  background-color: #fff;
}

.about-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 3rem;
  gap: 2rem;
}

.about-container.reverse {
  flex-direction: row-reverse;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.15);
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 2rem;
  color: #2e7d32;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 1rem;
}

/* Team Section */
.team-section {
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, #f9f5ee, #f1e9df);
  text-align: center;
}

.team-title {
  font-size: 2.5rem;
  color: #2e7d32;
  font-weight: 700;
  margin-bottom: 3rem;
}

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  flex: 1 1 300px;
  max-width: 350px;
  background-color: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.12);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.team-member h3 {
  font-size: 1.5rem;
  color: #2e7d32;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-role {
  font-size: 1rem;
  color: #388e3c;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.team-member p {
  font-size: 0.95rem;
  color: #555;
}


/* Responsive Design */
@media (max-width: 768px) {
  .hero-container { flex-direction: column; text-align: center; }
  .hero-btn { width: 100%; max-width: 300px; }
  .hero-title { font-size: 2rem; }
  .about-container { flex-direction: column; }
  .about-container.reverse { flex-direction: column; }
  .about-image img { max-width: 100%; }
  .team-title { font-size: 2rem; }
  .footer-container { text-align: center; gap: 30px; }
  .footer-social { justify-content: center; }
}

@media (max-width: 480px) {
  .hero { padding: 1.5rem 0.5rem; }
  .hero-title { font-size: 1.8rem; }
  .about-section, .team-section { padding: 2rem 1rem; }
  .about-content h2 { font-size: 1.5rem; }
  .team-member { padding: 1rem; }
}            


/* =================== Hero Section Styles (Atiuttam Agro) End =================== */

/* ================== Plants Section Styles (Atiuttam Agro) Start ================== */
/* Includes product cards, buttons, grid layout, and responsive plant showcase. */



/* 🌱 Plants Section */
.plants-section {
    width: 100%;
    padding: 3rem 1.5rem;
    background: linear-gradient(to bottom, #f9f5ee, #f1e9df); /* Smoother gradient transition */
}

/* 🌿 Plants Header */
.plants-header {
    text-align: center;
    margin-bottom: 3rem;
}

.plants-header h2 {
    font-size: 2.9rem;
    color: #2e7d32;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.plants-header h2:hover {
    color: #4caf50;
    transform: scale(1.02);
}

.plants-header p {
    font-size: 1.2rem;
    color: #388e3c;
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    max-width: 920px;
    margin: 0 auto;
}

/* 🪴 Plants Grid */
.plants-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1320px;
    margin: 0 auto;
}

/* 🪻 Plant Item Card */
.plant-item {
    flex: 1 1 320px;
    max-width: 360px;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.plant-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 22px rgba(46, 125, 50, 0.25);
}

/* 🌿 Plant Image */
.plant-image {
    width: 100%;
    height: px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.2rem;
    transition: transform 0.4s ease, filter 0.3s ease;
}

.plant-item:hover .plant-image {
    transform: scale(1.06);
    filter: brightness(1.05);
}

/* 🌼 Plant Title */
.plant-item h3 {
    font-size: 1.65rem;
    color: #2e7d32;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

/* 💲 Price */
.plant-price {
    font-size: 1.3rem;
    color: #4caf50;
    font-weight: 600;
    margin: 0.3rem 0;
}

/* ⭐ Rating */
.plant-rating {
    font-size: 1rem;
    color: #388e3c;
    font-style: italic;
    margin: 0.3rem 0;
}

/* 🔄 Availability */
.plant-availability {
    font-size: 1rem;
    color: #1b5e20;
    font-weight: 500;
    margin: 0.3rem 0;
}

.plant-availability.low-stock {
    color: #d32f2f;
    font-weight: 700;
}

/* 📝 Description */
.plant-description {
    font-size: 1rem;
    color: #555;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    margin: 0.8rem 0 1.5rem;
    flex-grow: 1;
}

/* 🌿 Add to Cart Button */
.add-to-cart {
    padding: 12px 24px;
    background-color: #0073ff; /* Fresh medium green */
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 14px;
    box-shadow: 0 4px 10px rgba(67, 160, 71, 0.15);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.add-to-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.4s ease;
    z-index: -1;
}

.add-to-cart:hover::before {
    left: 0;
}

.add-to-cart:hover {
    background-color: #0073ff;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 6px 16px rgba(56, 142, 60, 0.25);
}

.add-to-cart:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(56, 142, 60, 0.4);
}

.add-to-cart:active {
    transform: scale(0.96);
    box-shadow: 0 2px 6px rgba(56, 142, 60, 0.2);
}

/* 🌱 Book Now Button */
.book-now {
    display: inline-block;
    padding: 12px 24px;
    background-color: #2e7d32;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(46, 125, 50, 0.15);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.book-now::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: right 0.4s ease;
    z-index: -1;
}

.book-now:hover::before {
    right: 0;
}

.book-now:hover {
    background-color: #1b5e20;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 6px 16px rgba(46, 125, 50, 0.25);
}

.book-now:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.4);
}

.book-now:active {
    transform: scale(0.96);
    box-shadow: 0 2px 6px rgba(46, 125, 50, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .add-to-cart, .book-now {
        padding: 8px 16px; /* Slightly smaller */
        font-size: 0.95rem;
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    .add-to-cart, .book-now {
        padding: 7px 14px;
        font-size: 0.9rem;
        margin-right: 8px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .plants-header h2 {
        font-size: 2.25rem;
    }

    .plant-item {
        flex: 1 1 280px; /* Adjusted for tablets */
        max-width: 320px;
    }

    .plant-image {
        height: 330px;
    }
}

@media (max-width: 768px) {
    .plants-section {
        padding: 2rem 1rem;
    }

    .plants-header h2 {
        font-size: 2rem;
    }

    .plants-header p {
        font-size: 1.05rem;
    }

    .plants-grid {
        gap: 1.25rem;
    }

    .plant-item {
        flex: 1 1 100%;
        max-width: 450px; /* Slightly wider cap */
        padding: 1.5rem;
    }

    .plant-item h3 {
        font-size: 1.5rem;
    }

    .plant-image {
        height: 450px;
    }

    .add-to-cart, .book-now {
        padding: 8px 16px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .plants-section {
        padding: 1.5rem 0.75rem;
    }

    .plants-header h2 {
        font-size: 1.75rem;
    }

    .plants-header p {
        font-size: 0.95rem;
    }

    .plant-item {
        padding: 1.25rem;
    }

    .plant-item h3 {
        font-size: 1.4rem;
    }

    .plant-price {
        font-size: 1.15rem;
    }

    .plant-rating, .plant-availability, .plant-description {
        font-size: 0.9rem;
    }

    .plant-image {
        height: 330px;
    }

    .add-to-cart, .book-now {
        padding: 7px 14px;
        font-size: 0.9rem;
        margin-right: 8px;
    }
}

/* =================== Plants Section Styles (Atiuttam Agro) End =================== */
  /* About Section Styling */
.about-section {
    padding: 4rem 2rem;
    background-color: #f8f9f5; /* Light earthy tone */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  
  .about-image {
    flex: 1 1 300px;
    max-width: 500px;
  }
  
  .about-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  
  .about-content {
    flex: 1 1 400px;
    color: #2e4d25;
  }
  
  .about-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1c3b16;
  }
  
  .about-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .about-container {
      flex-direction: column;
      text-align: center;
    }
  
    .about-content h2 {
      font-size: 1.8rem;
    }
  
    .about-content p {
      font-size: 0.95rem;
    }
  }

 /* CATEGORY SECTION */
.category-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1f3b2e;
    font-family: 'Poppins', sans-serif;
    position: relative;
    font-weight: 600;
  }
  
  .section-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background-color: #6dcf81;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
  }
  
  .category-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
  }
  
  .category-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    flex: 1 1 300px;
    max-width: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  }
  
  .category-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  
  .category-card h3 {
    font-size: 1.5rem;
    margin: 20px 0 10px;
    color: #2c3e50;
  }
  
  .category-btn {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .category-btn:hover {
    background-color: #388e3c;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .category-container {
      flex-direction: column;
      align-items: center;
    }
  
    .category-card {
      width: 100%;
      max-width: 400px;
    }
  
    .section-title {
      font-size: 2rem;
      margin-bottom: 40px;
    }
  }
  
/* Full-width Footer Section */
/* Footer Base */
.footer {
    width: 100%;
    background-color: #1f3b2e;
    color: #ffffff;
    padding: 60px 20px 30px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    z-index: 10;
    margin-top: 80px;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  /* Footer Grid Layout */
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    transform: translateY(30px);
  }
  
  /* Logo Styling */
  .footer-logo {
    width: 130px;
    margin-bottom: 18px;
    transition: transform 0.4s ease-in-out, filter 0.4s ease-in-out;
    filter: brightness(0.95);
  }
  
  .footer-logo:hover {
    transform: scale(1.08) rotate(1.5deg);
    filter: brightness(1.1);
  }
  
  /* Footer Description */
  .footer-description {
    font-size: 15px;
    line-height: 1.7;
    color: #dbe7dc;
    max-width: 320px;
    transition: color 0.3s ease;
  }
  
  .footer-description:hover {
    color: #ffffff;
  }
  
  /* Entrance Animation */
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Tweaks */
  @media (max-width: 768px) {
    .footer-container {
      text-align: center;
      gap: 30px;
    }
  
    .footer-logo {
      margin: 0 auto 18px;
    }
  
    .footer-description {
      margin: 0 auto;
    }
  }
/* Footer Column Headings */
.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
  }
  
  .footer-column h4::after {
    content: '';
    width: 40px;
    height: 2px;
    background: #6dcf81;
    position: absolute;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
  }
  
  .footer-column:hover h4::after {
    width: 60px;
  }
  
  /* Lists Reset and Layout */
  .footer-links,
  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  /* List Items (Links + Contact) */
  .footer-links li,
  .footer-contact li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #cfdacf;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  /* Anchor Styling */
  .footer-links li a {
    color: #cfdacf;
    text-decoration: none;
    display: inline-block;
    padding-left: 0;
    position: relative;
    transition: color 0.3s ease, padding-left 0.3s ease;
  }
  
  .footer-links li a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: opacity 0.3s ease, left 0.3s ease;
  }
  
  .footer-links li a:hover::before {
    opacity: 1;
    left: -20px;
  }
  
  .footer-links li a:hover {
    color: #6dcf81;
    padding-left: 6px;
  }
  
  /* Contact Hover Effect */
  .footer-contact li:hover {
    transform: translateX(6px);
    color: #6dcf81;
  }
    
/* Social Media Icons */
.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: flex-start;
    margin-top: 10px;
  }
  
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0 transparent;
    text-decoration: none;
  }
  
  .footer-social a:hover {
    background: #6dcf81;
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 12px 4px rgba(109, 207, 129, 0.5);
  }
  
  /* Icon Style - always visible */
  .footer-social img,
  .footer-social i {
    width: 20px;
    height: 20px;
    object-fit: contain;
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  /* Keep icons visible on hover too */
  .footer-social a:hover img,
  .footer-social a:hover i {
    transform: rotate(-5deg) scale(1.05);
    color: #fff;
  }
  
  /* Footer Bottom */
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #cfdacf;
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
    animation-delay: 0.8s;
    line-height: 1.6;
    letter-spacing: 0.3px;
  }
  
  /* Smooth Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
    
  /* Responsive Footer Adjustments */
  @media (max-width: 768px) {
    .footer-container {
      gap: 30px;
      text-align: center;
    }
  
    .footer-logo {
      margin: 0 auto 15px;
    }
  
    .footer-description {
      margin: 0 auto;
    }
  
    .footer-social {
      justify-content: center;
    }
  
    .footer-column h4::after {
      left: 50%;
      transform: translateX(-50%);
    }
  
    .footer-column:hover h4::after {
      width: 60px;
    }
  }
