/* Services Section */
.services-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.service-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #4CAF50;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.service-content {
  padding: 25px;
}

.service-title {
  font-size: 22px;
  margin-bottom: 15px;
  color: #333;
}

.service-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 15px;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.service-features span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: #4CAF50;
  font-weight: 500;
}

.service-features i {
  font-size: 12px;
}

.service-footer {
  display: flex;
  justify-content: flex-end;
}

.view-details-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 14px;
}

/* Contact Section */
.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info,
.contact-form-container {
  background-color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: #333;
}

.contact-details {
  margin-top: 30px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4CAF50;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #333;
}

.contact-detail-text p {
  color: #666;
  line-height: 1.6;
  font-size: 15px;
}

.contact-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4CAF50;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    flex-direction: row;
  }
  
  .contact-info {
    flex: 1;
  }
  
  .contact-form-container {
    flex: 1;
  }
  
  .contact-form .form-row {
    flex-direction: row;
  }
  
  .form-row .form-group {
    flex: 1;
  }
}

@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .service-image {
    height: 200px;
  }
  
  .service-content {
    padding: 20px;
  }
  
  .service-title {
    font-size: 20px;
  }
  
  .contact-info,
  .contact-form-container {
    padding: 20px;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}


------------

/* Product Specifications Section */
.product-specs {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.specs-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 100px;
}

.specs-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.specs-img:hover {
  transform: scale(1.02);
}

.specs-description {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Table Styles */
.specs-table-container {
  overflow-x: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-size: 1rem;
}

.specs-table thead {
  background: linear-gradient(135deg, #2d5016 0%, #3a6520 100%);
}

.specs-table th {
  color: white;
  font-weight: 600;
  text-align: left;
  padding: 18px 20px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.specs-table th:first-child {
  border-radius: 10px 0 0 0;
}

.specs-table th:last-child {
  border-radius: 0 10px 0 0;
}

.specs-table tbody tr {
  border-bottom: 1px solid #eaeaea;
  transition: background-color 0.2s ease;
}

.specs-table tbody tr:hover {
  background-color: #f8f9fa;
}

.specs-table tbody tr:last-child {
  border-bottom: none;
}

.specs-table td {
  padding: 18px 20px;
  color: #333;
  vertical-align: top;
}

.specs-table td:first-child {
  font-weight: 600;
  color: #2d5016;
  width: 35%;
  border-right: 1px solid #eaeaea;
}

.specs-table td i {
  color: #2d5016;
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.specs-table td:last-child {
  color: #555;
  line-height: 1.5;
}

/* Striped rows for better readability */
.specs-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.specs-table tbody tr:nth-child(even):hover {
  background-color: #f0f0f0;
}

/* Action Buttons */
.specs-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn-enquiry {
  background: linear-gradient(135deg, #2d5016 0%, #3a6520 100%);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(45, 80, 22, 0.2);
}

.btn-enquiry:hover {
  background: linear-gradient(135deg, #3a6520 0%, #4a7d2a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
  color: white;
}

.btn-enquiry:active {
  transform: translateY(0);
}

.btn-enquiry i {
  font-size: 1.1rem;
}

.btn-secondary {
  background: white;
  color: #2d5016;
  border: 2px solid #2d5016;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-secondary:hover {
  background: #2d5016;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-secondary i {
  font-size: 1.1rem;
}

/* Responsive Design for Product Specifications */
@media (max-width: 992px) {
  .specs-grid {
    gap: 40px;
  }
  
  .specs-table {
    font-size: 0.95rem;
  }
  
  .specs-table th,
  .specs-table td {
    padding: 15px;
  }
  
  .specs-actions {
    gap: 15px;
  }
  
  .btn-enquiry,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .specs-image {
    max-width: 500px;
    margin: 0 auto;
    position: static;
  }
  
  .specs-table {
    font-size: 0.9rem;
  }
  
  .specs-table th,
  .specs-table td {
    padding: 12px;
  }
  
  .specs-actions {
    justify-content: center;
    gap: 15px;
  }
  
  .btn-enquiry,
  .btn-secondary {
    padding: 12px 20px;
    font-size: 0.9rem;
    min-width: 160px;
  }
}

@media (max-width: 480px) {
  .specs-table-container {
    border-radius: 8px;
  }
  
  .specs-table th {
    font-size: 0.9rem;
    padding: 12px 10px;
  }
  
  .specs-table td {
    padding: 12px 10px;
    font-size: 0.85rem;
  }
  
  .specs-table td i {
    margin-right: 5px;
  }
  
  .specs-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  
  .btn-enquiry,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }
}