
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;
    padding: 0%;
    box box-sizing: border-box;
    font-family:'Roboto', sans-serif;

}

h1{
    font-size: 40px;
    line-height: 20px;
    color: rgb(0, 0, 0);
    margin-right: auto;


}

h2{
    font-size: 30px;
    line-height: 24px;
    color: black;

}

h3{
    font-size: 20px;
    color: black;

}

.section-p1{
    padding: 40px 80px;
}

.section-m1{
    margin: 40px 0px;
}

#header{
      display: flex;
      align-items: center;
      justify-content: space-between;

}

/* Navbar (header section) */
#header {
  display: flex;            /* puts logo + links in a row */
  align-items: center;      /* vertical centering */
  justify-content: space-between; /* spacing between logo and nav links */
  padding: 10px 20px;
  background: #ffffff;   
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
  /* navbar background */
}

/* Logo styling */
#header .logo {
  width: 80px;   /* make logo smaller */
  height: auto;
    /* keeps aspect ratio */
}

/* Navigation links */
#header nav a {
  text-decoration: none;
  margin: 0 15px;
  color: #af3c3c;
  font-weight: bold;

}

#navbar {

display: flex;
align-items: center;
justify-content: center;
}

#navbar li {
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar li a{
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    color: black;
    transition: 0.3 ease;
    position: relative;

}
 
#navbar li a:hover,
#navbar li a.active{
    color: forestgreen;
}

#navbar li a.active::after,#navbar li a:hover::after{
    content:"";
    width: 30%;
    height: 2px;
    background:green ;
    position: absolute;
    bottom: -4px;
    left: 20px;


}
/* Quick Links Bar with Images */
#quick-links {
  background: #f5f5f5;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  gap: 40px;   /* spacing between items */
  border-bottom: 1px solid #ddd;
}

#quick-links a {
  text-align: center;
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s;
}

#quick-links a:hover {
  color: green;
  transform: scale(1.05); /* small zoom effect */
}

#quick-links img {
  width: 65px;     /* adjust image size */
  height: 65px;    /* make all uniform */
  object-fit: cover;
  border-radius: 50%; /* circle images */
  margin-bottom: 8px;
}

/* Product Section */
#products {
  padding: 50px 20px;
  background: #fff;
  text-align: center;
}

#products h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  flex-wrap: wrap;
}

/* Product Card */
.product-card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #222;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #245e12;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.btn:hover {
  background: #e67e22;
}

.company-name{
     text-align: left;   /* keeps it centered */
  font-size: 28px;      /* make it bigger */
  margin-bottom: 20px;  /* space before other elements */
  color: #1b630d;          /* adjust color */
  font-weight: bold;
}
 
  @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/* Contact Section */
.contact-section {
  background: #2c2f36;
  color: #fff;
  padding: 40px 20px;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-info {
  flex: 1;
  min-width: 280px;
}
 
.contact-info h2 {
  @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
  margin-bottom: 20px;
  font-size: 38px;
  color: #ddd;
}

.contact-info p {
  margin: 10px 0;
  line-height: 1.6;
}

.contact-info a {
  color: #a6ff8f;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-info .icon {
  margin-right: 8px;
}

.contact-form {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 20px;
  border-radius: 6px;
  color: #333;
}

.contact-form label {
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.contact-form textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: none;
}

.contact-form button {
  margin-top: 15px;
  background: #2f6d2f;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #244f24;
}

/* Footer Section */
.footer {
  background: #f5f5f5;
  padding: 40px 20px 20px;
  font-size: 14px;
  color: #333;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-column h4 {
  margin-bottom: 10px;
  font-size: 30px;
  color: #1a3d1a;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #333;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-column a {
  margin-right: 10px;
  font-size: 18px;
  color: #333;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #ddd;
  padding-top: 10px;
  font-size: 13px;
}

.footer-bottom a {
  color: #2f6d2f;
  text-decoration: none;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Banner Section */
.welcome-banner {
  height: 30vh;
  background: no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: right;
  justify-content: center;
  transition: background-image 1s ease-in-out;
}

.banner-overlay {
  background: rgba(0, 0, 0, 0.55); /* dark overlay */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-content {
  text-align: left;
  color: #fff;
  max-width: 800px;
  padding: 20px;
}

.banner-content h1 {
  font-size: 45px;
  margin-bottom: 15px;

}

.banner-content h1 span {
  color: #a6ff8f; /* green highlight */
}

.banner-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

.banner-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #2f6d2f;
  color: white;
  font-size: 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.banner-btn:hover {
  background: #244f24;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Header styles */
header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo h1 {
    font-size: 2.5rem;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.logo span {
    color: #e74c3c;
}

/* Hero section styles */
.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    margin: 10px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn.primary {
    background: #e74c3c;
    color: white;
}

.btn.primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn.secondary:hover {
    background: white;
    color: #2c3e50;
}

/* Products section */
.products-section {
    padding: 60px 0;
    background: #fff;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 3px solid #000000;
    padding-bottom: 10px;
}

.section-title {
    font-size: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.view-all {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.view-all i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.view-all:hover i {
    transform: translateX(5px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.product-card {
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-header {
    background: #ffffff;
    color: rgb(0, 0, 0);
    padding: 15px;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: rgb(255, 255, 255);
}

.product-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
}

.product-body {
    padding: 20px;
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
}

.product-price i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.product-details {
    list-style: none;
    margin-bottom: 20px;
}

.product-details li {
    padding: 5px 0;
    border-bottom: 1px dashed #ddd;
}

.product-details li:last-child {
    border-bottom: none;
}

.get-quote-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.get-quote-btn:hover {
    background: #219653;
}

/* Business info section */
.business-info {
    padding: 60px 0;
    background: #f8f9fa;
}

.business-info h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #2c3e50;
    position: relative;
}

.business-info h3:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #e74c3c;
    margin: 10px auto;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.info-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item strong {
    display: block;
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.info-item span {
    color: #555;
    font-size: 1rem;
}

/* Trustseal section */
.trustseal {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f8ff;
    padding: 15px;
    border-radius: 8px;
    max-width: 300px;
    margin: 0 auto;
}

.trustseal-icon {
    background: #27ae60;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-weight: bold;
}

.trustseal span {
    font-weight: 600;
    color: #2c3e50;
}

/* Footer styles */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .view-all {
        margin-top: 10px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        display: block;
        margin: 10px auto;
        width: 200px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .business-info h3 {
        font-size: 1.5rem;
    }
    
    .product-image {
        height: 180px;
    }
}




.products-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.product-section {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.product-gallery {
  flex: 1;
}

.main-image {
  width: 100%;
  max-width: 420px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.thumbnail-row {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.thumbnail {
  width: 75px;
  height: 75px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 6px;
  border: 2px solid transparent;
  transition: border 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
  border: 2px solid #28a745;
}

.product-details {
  flex: 1;
}

.product-details h2 {
  font-size: 26px;
  margin-bottom: 12px;
}

.product-desc {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.product-varieties {
  margin-bottom: 20px;
  list-style: disc;
  padding-left: 20px;
}

.whatsapp-btn {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
  cursor: pointer;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
}

/* Banner Logos Section */
.banner-logos {
  width: 100%;
  padding: 40px 0;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.banner-logos .section-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  color: #222;
}

.logos-container {
  width: 95%;
  max-width: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logos-container .logos-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(10%);
  transition: 0.3s ease-in-out;
}

.logos-container .logos-img:hover {
  filter: grayscale(0%);
}
