/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #fff;
}

/* Header */
.header {
  text-align: center;
  background-color:#e7189b;
  color: #fff;
  padding: 20px;
}

.header h1 {
  margin: 0;
  font-size: 2rem;
}

.header p {
  margin: 10px 0 0;
}

/* Service Locations */
.locations {
  padding: 20px;
  text-align: center;
}

.locations h2 {
  color: #e7189b;
}
.description {
  padding: 20px;
  text-align: center;
  margin-bottom: 80px;
}

.description h2 {
  color: #e7189b;
}


/* Sticky Contact Options */
.sticky-contact {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
}

.sticky-contact a {
  text-decoration: none;
  color: #fff;
  background-color: #e7189b;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
}

/* Gallery Section */
.gallery {
  padding: 20px;
  
  text-align: center;
}

.gallery h2 {
  color: #e7189b;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

.card {
  width: 300px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 20px;
  text-align: center;
}

.card img {
  width: 100%;
  border-radius: 5px;
}

.card h3 {
  margin: 10px 0 5px;
  color: #e7189b;
  font-size: 1rem;
}

.card p {
  font-size: 0.9rem;
}






.articles{
  padding: 20px;
  margin-bottom: 50px;
}


/* Blogs Section */
/* Blog Section Styling */
.blog-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 50px;
}


.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.section-description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.blog-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  padding: 20px;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-title {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 15px;
}

.blog-snippet {
  font-size: 1rem;
  color: #666;
  margin-bottom: 15px;
}

.read-more {
  display: inline-block;
  font-size: 1rem;
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s;
}

.read-more:hover {
  color: #0056b3;
}


/* Footer */
.footer {
  padding: 20px;
  background-color: #333;
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
}

/* Mobile Styles */
@media (max-width: 600px) {
  .grid {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 80%;
  }
}
