/** ======== HERO SECTION ======== **/
.hero-wrapper-first {
  background: linear-gradient(#0e1e42, #01050d);
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}

.hero {
  max-width: 1400px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 100px;
  gap: 80px;
  transition: 0.3s;
}

.hero-content {
  max-width: 600px;
  width: 100%;
  overflow-x: hidden;
}

.hero h1 {
  font-size: 3.3rem;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #faf8f0;
  opacity: 1;
}

.hero .highlight {
  font-weight: 700;
  background: linear-gradient(45deg, #a7b3c9, #1e4378);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* transition: all 0.3s ease; */
}

.hero p {
  font-size: 1.1rem;
  color: var(--secondary-color);
  line-height: 1.8;
  margin-bottom: 35px;
  opacity: 1;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  opacity: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 10px;
}

.secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 1px 5px rgb(167 179 201 / 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0.6;
}

.secondary:hover {
  border: 1px solid #d68910;
  opacity: 1;
  transform: translateY(-3px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-buttons i {
  font-size: 25px;
  color: #bdbbbb;
  padding: 4px 0;
}

.hero-image {
  width: 500px;
  height: 500px;
  border-radius: 50px 200px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: linear-gradient(45deg, #a7b3c9, #1e4378);
  position: relative;
  overflow: hidden;
  filter: opacity(0.7);
  transition: all 0.5s ease;
  border: 1px solid #d68910;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
  transition: all 0.5s ease;
}

.hero-image:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  filter: opacity(0.9);
}

.hero-image:hover img {
  transform: scale(1.05);
}

/** ======== RESPONSIVE STYLES ======== **/
@media screen and (max-width: 1200px) {
  .hero {
    gap: 80px;
  }
  .hero h1 {
    font-size: 2.8rem;
    word-wrap: nowrap;
  }
  .btn {
    margin-left: 11px;
  }
}

@media screen and (max-width: 1028px) {
  .hero {
    flex-direction: column;
    padding: 160px 40px 80px;
    text-align: center;
    gap: 60px;
  }
  .hero-content {
    max-width: 750px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-image {
    width: 90%;
    height: 350px;
    border-radius: 20px 20px 15px 15px;
  }
  .btn {
    margin-left: 11px;
  }
}

@media screen and (max-width: 880px) {
  .hero-image {
    width: 90%;
    height: 350px;
    border-radius: 20px 20px 15px 15px;
  }
  .btn {
    margin-left: 11px;
  }
}

@media screen and (max-width: 768px) {
  .hero {
    padding: 150px 30px 60px;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero-image {
    width: 90%;
    height: 250px;
    border-radius: 20px 20px 15px 15px;
  }
}

@media screen and (max-width: 600px) {
  .hero {
    padding: 140px 20px 50px;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-buttons {
    align-items: center;
  }
  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .hero-image {
    width: 90%;
    height: 200px;
    border-radius: 20px 20px 15px 15px;
    aspect-ratio: 1 / 1;
  }
  .hero-image img {
    height: 250px;
    display: block;
    border-radius: inherit;
  }
  .btn {
    margin-left: 11px;
  }
}

@media screen and (max-width: 480px) {
  .header-container {
    padding: 0 20px;
  }
  .hero {
    padding: 130px 15px 40px;
  }
  .hero h1 {
    font-size: 1.9rem;
  }
  .hero p {
    font-size: 0.95rem;
  }

  .hero-buttons i {
    font-size: 20px;
    padding: 4px 0px;
    color: #bdbbbb;
  }
  .hero-image {
    width: 90%;
    height: 150px;
    border-radius: 20px 20px 15px 15px;
    aspect-ratio: 1 / 1;
  }
  .hero-image img {
    border-radius: inherit;
    display: block;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    margin-left: 11px;
  }
}

@media screen and (max-width: 390px) {
  .hero {
    max-height: none;
    overflow: auto;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  .hero p {
    font-size: 0.9rem;
  }
  .btn {
    font-size: 0.95rem;
    padding: 10px 25px;
  }
  .hero-image {
    width: 90%;
    height: 150px;
    border-radius: 20px 20px 15px 15px;
  }

  .hero-buttons i {
    font-size: 18px;
    padding: 4px 0;
    color: #bdbbbb;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    margin-left: 11px;
  }
}

@media screen and (max-width: 375px) {
  .hero {
    max-height: none;
    overflow: auto;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  .hero p {
    font-size: 0.9rem;
  }
  .btn {
    font-size: 0.95rem;
    padding: 10px 25px;
  }
  .hero-image {
    width: 90%;
    height: 150px;
    border-radius: 20px 20px 15px 15px;
    aspect-ratio: 1 / 1;
  }
  .hero-image img {
    border-radius: inherit;
  }
  .hero-buttons i {
    font-size: 18px;
    padding: 4px 0;
    color: #bdbbbb;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    margin-left: 11px;
  }
}

