
        :root {
            --primary: #2c6e49;
            --secondary: #4c956c;
            --accent: #ffc857;
            --light: #f7f7f2;
            --dark: #2b2d42;
            --gray: #8d99ae;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }
        
        header {
            background-color: var(--primary);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            display: flex;
            align-items: center;
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: bold;
        }
        
        .logo-icon {
            margin-right: 10px;
            height: 40px;
            width: 40px;
            border-radius: 50%;
            overflow: hidden;
            display: inline-block;
        }
        
        .logo-icon img {
            height: 100%;
            width: 100%;
            object-fit: cover;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 1.5rem;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        nav ul li a:hover {
            background-color: var(--secondary);
        }
        
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/api/placeholder/1200/600') center/cover no-repeat;
            min-height: 80vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
            padding: 3rem 0;
        }
        
        .hero-content {
            max-width: 1000px;
            margin-bottom: 2rem;
        }
        
        /* Swiper styles */
        .swiper-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            padding: 20px 0;
        }
        
        .swiper-slide {
            display: flex;
            justify-content: center;
        }
        
        .slider-card {
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 8px;
            overflow: hidden;
            width: 250px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: transform 0.5s ease;
        }
        
        .slider-card:hover {
            transform: translateY(-10px);
        }
        
        .slider-card img {
            width: 100%;
            height: 300px;
            object-fit: contain;
        }
        
        .slider-info {
            padding: 1rem;
            text-align: center;
            color: var(--dark);
        }
        
        .slider-info h4 {
            margin-bottom: 0.5rem;
            color: var(--primary);
        }
        
        .slider-info p {
            color: var(--accent);
            font-weight: bold;
        }
        
        .swiper-button-prev, .swiper-button-next {
            color: var(--accent);
        }
        
        .swiper-pagination-bullet-active {
            background-color: var(--accent);
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--accent);
            color: var(--dark);
            padding: 0.8rem 1.5rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .btn:hover {
            background-color: #e6b54d;
            transform: translateY(-3px);
        }
        
        section {
            padding: 5rem 0;
        }
        
        .section-heading {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-heading h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .section-heading p {
            max-width: 700px;
            margin: 0 auto;
            color: var(--gray);
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .services-section {
            background-color: #f9f9f9;
            padding: 60px 0;
            font-family: Arial, sans-serif;
          }
          
          .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
          }
          
          .section-heading {
            text-align: center;
            margin-bottom: 50px;
          }
          
          .section-heading h2 {
            font-size: 36px;
            color: #222;
            margin-bottom: 10px;
          }
          
          .section-heading p {
            color: #666;
            font-size: 18px;
            line-height: 1.6;
          }
          
          .services-section {
            padding: 60px 20px;
            background-color: #f9f9f9;
            color: #333;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
          }
          
          .container {
            max-width: 1000px;
            margin: auto;
          }
          
          .section-heading h2 {
            font-size: 32px;
            margin-bottom: 10px;
            color: #004d40;
          }
          
          .section-heading p {
            font-size: 16px;
            margin-bottom: 15px;
            line-height: 1.6;
          }
          
          
          
          .services-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
          }
          
          .service-box {
            background: #ffffff;
            padding: 25px;
            border-left: 5px solid #00695c;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s ease;
          }
          
          .service-box:hover {
            transform: translateY(-5px);
          }
          
          .service-box h3 {
            color: #00695c;
            margin-bottom: 10px;
            font-size: 22px;
          }
          
          .service-box p {
            font-size: 15px;
            line-height: 1.6;
          }
          
          .services-note {
            margin-top: 50px;
            text-align: center;
          }
          
          .services-note p {
            font-size: 20px;
            font-weight: 600;
            color: #222;
            margin-bottom: 20px;
          }
          
          .cta-button {
            display: inline-block;
            background-color: #0077cc;
            color: #fff;
            padding: 12px 24px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease, transform 0.2s ease;
          }
          
          .cta-button:hover {
            background-color: #005fa3;
            transform: translateY(-2px);
          }
          
          .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            padding: 10px;
            box-sizing: border-box;
          }
          
          .modal-content {
            background-color: #fff;
            padding: 20px 25px;
            width: 100%;
            max-width: 420px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
            position: relative;
            overflow-y: auto;
            max-height: 90vh;
            transition: transform 0.3s ease;
            border-radius: 0; /* removed border radius */
          }
          
          .close-btn {
            position: absolute;
            top: 12px;
            right: 16px;
            font-size: 22px;
            color: #666;
            cursor: pointer;
            font-weight: bold;
          }
          
          .modal-content h2 {
            font-size: 20px;
            margin-bottom: 8px;
            color: #222;
          }
          
          .modal-content p {
            font-size: 13px;
            color: #555;
          }
          
          .request-form {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 16px;
          }
          
          .request-form input,
          .request-form textarea {
            width: 100%;
            padding: 8px 12px;
            border: 1px solid #ccc;
            font-size: 14px;
          }
          
          .request-form button {
            background-color: #0077cc;
            color: #fff;
            padding: 10px;
            font-size: 14px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: background 0.3s ease;
          }
          
          .request-form button:hover {
            background-color: #005fa3;
          }
          
          .contact-info {
            margin-top: 16px;
            font-size: 12px;
            color: #666;
            line-height: 1.5;
          }
          
          @media (max-width: 480px) {
            .modal-content {
              padding: 20px;
              max-width: 90%;
            }
          
            .modal-content h2 {
              font-size: 20px;
            }
          
            .request-form input,
            .request-form textarea {
              font-size: 14px;
            }
          
            .request-form button {
              font-size: 14px;
              padding: 10px;
            }
          }
          

        
        .products-container {
            background-color: white;
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .product-category {
            margin-bottom: 2rem;
        }
        
        .product-category h3 {
            color: var(--primary);
            border-bottom: 2px solid var(--accent);
            padding-bottom: 0.5rem;
            margin-bottom: 1rem;
        }
        
        .product-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        
        .product-card {
            background-color: var(--light);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .product-img {
            height: 150px;
            background-color: var(--gray);
        }
        
        .product-info {
            padding: 1rem;
        }
        
        .product-info h4 {
            margin-bottom: 0.5rem;
        }

        .product-img {
  width: 100%;
  height: 400px; /* adjust height as needed */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* maintains aspect ratio, crops if needed */
  display: block;
}
@media (max-width: 1024px) {
  .products-container {
    padding: 1.5rem;
  }

  .product-img {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .products-container {
    padding: 1rem;
  }

  .product-list {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .product-img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .product-list {
    grid-template-columns: 1fr; /* Single column on small devices */
  }

  .product-img {
    height: 300px;
  }
}
        
        .price {
            color: var(--primary);
            font-weight: bold;
        }
        
        .about-section {
            background-color: #f7f9fa;
            padding: 60px 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #2d2d2d;
          }
          
          .container {
            max-width: 1100px;
            margin: 0 auto;
          }
          
          .section-title {
            text-align: center;
            font-size: 2.4em;
            font-weight: 700;
            margin-bottom: 40px;
            color: #1a3c34;
          }
          
          .about-intro p {
            font-size: 1.05em;
            margin-bottom: 20px;
            line-height: 1.8;
          }
          
          .about-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
          }
          
          .about-block {
            background-color: #ffffff;
            padding: 25px;
            border-left: 4px solid #2c5e3d;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
          }
          
          .about-block h3 {
            font-size: 1.2em;
            margin-bottom: 10px;
            color: #2c5e3d;
          }
          
          .core-values {
            margin-top: 60px;
          }
          
          .core-values h3 {
            font-size: 1.5em;
            margin-bottom: 20px;
            color: #1a3c34;
          }
          
          .core-values ul {
            columns: 2;
            -webkit-columns: 2;
            list-style: none;
            padding: 0;
            margin: 0;
          }
          
          .core-values li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
          }
          
          .core-values li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #2c5e3d;
            font-weight: bold;
          }
          
        
          .site-footer {
            background-color: #102b23;
            color: #f0f5f1;
            padding: 60px 20px 30px;
            font-family: 'Segoe UI', Tahoma, sans-serif;
          }
          
          .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
          }
          
          .footer-about h3,
          .footer-contact h4,
          .footer-social h4 {
            color: #ffffff;
            margin-bottom: 15px;
            font-size: 1.2rem;
          }
          
          .footer-about p {
            font-size: 0.95rem;
            line-height: 1.7;
            color: #d1e3dd;
          }
          
          .footer-contact ul {
            list-style: none;
            padding: 0;
            font-size: 0.95rem;
            line-height: 1.8;
          }
          
          .footer-contact li i {
            margin-right: 10px;
            color: #35c18b;
            width: 18px;
            text-align: center;
          }
          
          .footer-contact a {
            color: #aef2d5;
            text-decoration: none;
          }
          
          .footer-contact a:hover {
            text-decoration: underline;
          }
          
          .footer-social .social-icons {
            display: flex;
            flex-direction: column;
            gap: 10px;
          }
          
          .social-icon {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: #1e473a;
            color: #f0f5f1;
            padding: 8px 14px;
            border-radius: 4px;
            font-size: 0.9rem;
            text-decoration: none;
            transition: background 0.3s ease;
            width: fit-content;
          }
          
          .social-icon i {
            color: #35c18b;
            font-size: 1rem;
          }
          
          .social-icon:hover {
            background-color: #35c18b;
            color: #ffffff;
          }
          
          .footer-bottom {
            text-align: center;
            margin-top: 40px;
            border-top: 1px solid #284a3b;
            padding-top: 20px;
            font-size: 0.85rem;
            color: #b5ccc5;
          }
          
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 1rem;
                justify-content: center;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .about-container,
            .contact-container,
            .vision-mission {
                grid-template-columns: 1fr;
            }
        }
    /* Cart icon and badge */
.cart-container {
    position: relative;
}
.cart-icon {
    font-size: 1.5rem;
    color: #333;
    position: relative;
}
.cart-count-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #e53935;
    color: white;
    font-size: 12px;
    padding: 3px 7px;
    border-radius: 50%;
    font-weight: bold;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

/* Cart sidebar */
.cart-sidebar {
    position:fixed ;
    top: 0;
    right: 0;
    width: 320px;
    
    background: rgba(253, 253, 253, 0.55);
    box-shadow: -4px 0 15px rgba(0,0,0,0.15);
    padding: 24px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease-in-out;
    transform: translateX(0);
    border-left: none;
    border-radius: 8px 0 0 8px;
}

/* Hidden state */
.cart-sidebar.hidden {
    transform: translateX(100%);
}

/* Header */
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.cart-header h4 {
    font-size: 1.2rem;
    margin: 0;
    color: #333;
}
#close-cart {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #888;
    transition: color 0.2s ease;
}
#close-cart:hover {
    color: #e53935;
}

/* Cart items list */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    flex-grow: 1;
    padding-right: 5px;
    
  max-height: 20vh;   /* Limits the scrollable area height */
}
.cart-items div {
    background: rgba(14, 11, 11, 0.55);
    border-radius: 6px;
    padding: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

/* Total */
.cart-sidebar p {
    font-size: 1rem;
    font-weight: 500;
    color: #444;
    margin: 16px 0 8px;
}

/* Buttons */
.checkout-btn, #clear-cart-btn {
    padding: 12px;
    border: none;
    width: 100%;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s ease;
}
.checkout-btn {
    background: #4CAF50;
    color: white;
    margin-bottom: 10px;
}
.checkout-btn:hover {
    background: #45a049;
}
#clear-cart-btn {
    background: #f44336;
    color: white;
}
#clear-cart-btn:hover {
    background: #d32f2f;
}

/* Add-to-cart button */
.add-to-cart-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 8px 14px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s ease;
}
.add-to-cart-btn:hover {
    background-color: #43a047;
}
/* + button (increase quantity) */
.cart-items button.plus-btn {
    background-color: #4CAF50; /* Green */
    color: white;
    border-radius: 50%;
}

/* - button (decrease quantity) */
.cart-items button.minus-btn {
    background-color: #f44336; /* Red */
    color: white;
    border-radius: 50%;
}
/* Responsive Utility Classes */
img, video {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Mobile First Media Queries */

/* Tablets and below (768px and smaller) */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }

    nav ul li {
        margin: 0.5rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .slider-card {
        width: 80%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2 {
        font-size: 1.8rem;
    }

    .section-heading p {
        font-size: 1rem;
    }

    .modal-content {
        max-width: 95%;
    }
}

/* Phones (max-width: 480px) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .cta-button {
        padding: 10px 18px;
        font-size: 14px;
    }

    .slider-card {
        width: 90%;
    }

    .request-form input,
    .request-form textarea {
        font-size: 13px;
    }
}
/* Layout styles */
.nav-container {
  background-color: #2d6a4f;
  color: white;
  padding: 10px 20px;
}

.nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 1.2rem;
}

.hamburger {
  font-size: 24px;
  cursor: pointer;
  display: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  margin-top: 10px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
}

.cart-count-badge {
  background: red;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
  position: relative;
  top: -10px;
  left: -5px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 15px;
    padding-left: 0;
    margin-top: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding-left: 10px;
  }
  

}
