/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #FAF9F6;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
}

  .navbar-nav .nav-link {
    font-weight: bold;
  }

/* Style for the buttons container */
.contact-buttons {
  position: fixed;
  display: flex;
  gap: 10px;
  z-index: 100;
}



/* Button Style */
.contact-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  background-color: #25D366;
  /* WhatsApp color */
  border-radius: 50px;
  color: white;
  font-size: 18px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.contact-button:hover {
  background-color: #128C7E;
  /* Darker green for WhatsApp */
}

.facebook-button {
  background-color: #1877F2;
  /* Facebook blue */
}

.facebook-button:hover {
  background-color: #0A4B8C;
  /* Darker blue for Facebook */
}

.phone-button {
  background-color: #34b7f1;
  /* Phone blue */
}

.phone-button:hover {
  background-color: #007b8f;
  /* Darker blue for Phone */
}

/* Icons style */
.contact-button i {
  font-size: 20px;
}

/* Header Section */
header {
  background-color: #f8f9fa;
  padding: 20px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}



/* Ensure the product images are responsive and fixed size */
.product-img {
  width: 100%;
  /* Responsive width, will fill the container */
  height: 250px;
  /* Fixed height for uniform image sizes */
  object-fit: cover;
  /* Ensure the image covers the area without stretching */
}

/* Styling for product cards */
.product-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 20px;
  text-align: center;
}

.product-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 10px;
}

.product-price {
  font-size: 1rem;
  color: #28a745;
  margin-top: 5px;
}

/* Add hover effect to product cards */
.product-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Section Titles */
h2 {
  color: #333;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h3 {
  color: #A8C686;
}

/* Service Cards */
.service-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.service-card img {
  height: 200px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.service-card-body {
  padding: 20px;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}

.service-description {
  color: #555;
  margin-bottom: 15px;
}

.service-icon {
  font-size: 50px;
  color: #A8C686;
}

.cta-btn {
  background-color: #A8C686;
  color: white;
  padding: 10px 20px;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  display: block;
  margin-top: 10px;
}

.cta-btn:hover {
  background-color: #A8C686;
  text-decoration: none;
}

/* Footer */
footer {
  background-image: url(Assets/footer.jpg);
  border-top: 1px solid #ddd;
  color: white;
}

/* Grid Layout */
.row-cols-1 {
  display: flex;
  flex-direction: column;
}

.row-cols-md-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.row-cols-lg-3 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.col {
  flex: 1;
  min-width: 300px;
}

/* Forms */
.form-control {
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 10px;
}

.btn-primary {
  background-color: #A8C686;
  border-color: #A8C686;
}

.btn-primary:hover {
  background-color: #A8C686;
  border-color: #A8C686;
}