@font-face {
  font-family: 'Poppins';
  src: url('../font/Poppins/Poppins-Regular.ttf');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../font/Poppins/Poppins-Medium.ttf');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../font/Poppins/Poppins-SemiBold.ttf');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../font/Poppins/Poppins-Bold.ttf');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body * {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
  ;
}

/* For email @ sign icon */
.em-at-icon {
  font-size: 0.82rem;
}

.section-subtitle {
  color: #787A7B;
}

@media (min-width:1440px) {
  .container {
    max-width: 1440px;
  }
}

@media (min-width:1920px) {
  .container {
    max-width: 1650px;
  }
}

.outline-fa-white {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: white;
  color: transparent;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: url("/img/contact/hook_background.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 100px;
  overflow: hidden;
}

/* Blur overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  filter: blur(6px) brightness(0.7);
  transform: scale(1.05);
  z-index: 0;
}

/* Dark overlay for readability */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Text content */
.content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.content h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #ff8c1a;
  line-height: 1.2;
  margin-bottom: 2rem;
}

/* Button */
.btn {
  background: #007bff;
  color: white;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #0056b3;
}

main {
  padding-top: 3.5rem;
}

.custom-btn {
  /* Responsive padding and font-size using clamp */
  font-size: clamp(0.75rem, 1.5vw, 1rem);
  padding: clamp(0.3rem, 0.8vw, 0.6rem) clamp(0.6rem, 1.2vw, 1.2rem);

  /* Responsive minimum width */
  min-width: clamp(70px, 12vw, 110px);

  /* Responsive border radius */
  border-radius: clamp(3px, 0.8vw, 5px);
}

.close-icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
  fill: #000000;
}