.hero-section {
  background-image: url("/assets/design-images/20230222_090925 (2).jpg");
}

/* =============================== */
/*       CONTACT INFO SECTION      */
/* =============================== */

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background: #f4fef9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

.feather-icon {
  font-size: 1.4rem;
  color: var(--primary);

  i {
    display: flex;
    font-weight: 500;
  }
}

.contact-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111;
}

.contact-text {
  color: #555;
  line-height: 1.5;
  margin-bottom: 0.35rem;
  font-size: 0.865rem;
}

.contact-link {
  color: var(--primary);
  font-weight: 500;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}
/* ================================ */
/*   CONTACT INFO SECTION           */
/* ================================ */

.contact-info {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  background: #f3f4f6;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-text {
  color: #4b5563;
  line-height: 1.6;
}

.contact-link {
  color: #2563eb;
  text-decoration: underline;
}

.contact-link:hover {
  color: #1d4ed8;
}

/* ================================ */
/*   SOCIAL MEDIA ICONS             */
/* ================================ */

.social-btn {
  width: 3rem;
  height: 3rem;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.social-btn:hover {
  background: #e5e7eb;
}

