.primary_blue {
  color: #75dab4;
}
.bg_white {
  background-color: #ffffff;
}
.contact-card {
  padding: 15px;
}
.logosection {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 50px;
}
.blog-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.blog-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  /* color: #333; */
}

.blogs {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.blog-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  flex: 1 1 300px;
  max-width: 350px;
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  margin: 0 0 10px;
  color: #333;
}

.blog-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .blogs {
    flex-direction: row;
    align-items: center;
  }
}

.feature-box {
  display: flex;
  align-items: center;
  height: 100px;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.icon-large {
  font-size: 60px;
}

.icon-medium {
  font-size: 45px;
}

.section-head-title {
  font-family: "Fjalla One", sans-serif;
  margin-bottom: 30px;
  line-height: 1.4;
  font-size: 4vw;
  letter-spacing: 2px;
}

@media only screen and (max-width: 991px), only screen and (max-device-width: 991px) {
  .section-head-title {
    font-size: 8vw;
    margin-bottom: 30px;
  }
}

.color_white {
  color: #ffffff;
}

.delivery-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.delivery-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: center;
}

.delivery-table td:first-child {
  text-align: left;
  /* font-weight: bold; */
}

.center_content {
  text-align: center;
}