.header-container {
  background: linear-gradient(180deg, #f5f5f5 30%, #ffffff 50%);
  font-family: "Arial", sans-serif;
  padding: 10px 40px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  padding-bottom: 15px;
}

.header-queries {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.header-contact-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.header-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #555;
}

.header-contact-icon {
  color: #25d366;
  font-size: 18px;
}

.header-contact-icon.phone {
  color: #007bff;
}

.header-contact-icon.email {
  color: #e74c3c;
}

.header-get-in-touch {
  font-size: 14px;
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.header-get-in-touch:hover {
  color: #0056b3;
}

.header-divider {
  height: 1px;
  background-color: #000;
  margin: 10px 0;
}

.header-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 15px;
}

.header-logo img {
  width: 100%;
  height: 60px;
}

.header-social-icons {
  margin-right: 10%;
  display: flex;
  gap: 25px;
}

.header-social-icon {
  font-size: 20px;
  color: #333;
  transition: color 0.3s;
}

.header-social-icon.instagram:hover {
  color: #e1306c;
}

.header-social-icon.facebook:hover {
  color: #4267b2;
}

.header-social-icon.twitter:hover {
  color: #000000;
}

@media (max-width: 768px) {
  .header-container {
    padding: 15px 20px;
  }

  .header-top-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-contact-info {
    flex-direction: column;
    gap: 10px;
  }

  .header-bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-social-icons {
    justify-content: flex-start;
  }
  .header-logo img {
    display: none;
  }
}
@media (max-width: 768px) {
  .header-container {
    padding: 15px 20px;
    text-align: center; /* Add this */
  }

  .header-top-row {
    flex-direction: column;
    align-items: center; /* Change from flex-start to center */
  }

  .header-contact-info {
    flex-direction: column;
    gap: 10px;
    align-items: center; /* Add this */
  }

  .header-bottom-row {
    flex-direction: column;
    align-items: center; /* Change from flex-start to center */
  }

  .header-social-icons {
    justify-content: center; /* Change from flex-start to center */
  }
}

/* icons */
.header-social-icons {
  display: flex;
  gap: 10px;
}

.header-social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f0f0f0; /* Default fallback */
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
  font-size: 18px;
}

/* Instagram */
.header-social-icon.instagram {
  background-color: #e1306c;
}

/* Facebook */
.header-social-icon.facebook {
  background-color: #1877f2;
}

/* Twitter (X) */
.header-social-icon.twitter {
  background-color: #000000;
}

.header-social-icon:hover {
  transform: scale(1.1);
}

.header-search-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  border: 2px solid #007bff;
  border-radius: 25px;
  padding: 5px 15px;
  box-shadow: 0 2px 5px rgba(0, 123, 255, 0.2);
  transition: all 0.3s ease;
}

.header-search-bar input {
  border: none;
  outline: none;
  padding: 8px 10px;
  font-size: 14px;
  width: 300px;
  background: transparent;
}

.header-search-bar button {
  background: none;
  border: none;
  cursor: pointer;
  color: #007bff;
  font-size: 16px;
  transition: transform 0.3s;
}

.header-search-bar button:hover {
  transform: scale(1.1);
}

/* Responsive Search Bar */
@media (max-width: 768px) {
  .header-search-bar {
    width: 100%;
    justify-content: center;
    margin-top: 15px;
  }

  .header-search-bar input {
    width: 100%;
  }
}
