body {
  font-family: "Roboto", sans-serif;
  margin: 0px;
  padding: 0px;
}

header.header-container {
  max-width: 1500px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.call-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.call-btn span {
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.bg-primary {
  background-color: #1e40af;
  border-radius: 10px;
}

.bg-primary\/10 {
  background-color: rgb(30 64 175 / 0.1);
}

.bg-secondary\/10 {
  background-color: rgb(8 145 178 / 0.1);
}

.bg-secondary {
  background-color: #0891b2;
}

.hero-bg {
  position: relative;
  /* min-height: 100vh; */
  /* display: flex; */
  align-items: center;
  justify-content: center;
  background: url("./hero-image.webp") center/cover no-repeat;
  overflow: hidden;
  height: 550px;
}

/* Gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.7),
    transparent
  );
  background: hsla(210, 91%, 39%, 1);
  background: linear-gradient(
    90deg,
    hsla(210, 91%, 39%, 1) 0%,
    hsla(321, 55%, 50%, 1) 100%
  );
  background: -moz-linear-gradient(
    90deg,
    hsla(210, 91%, 39%, 1) 0%,
    hsla(321, 55%, 50%, 1) 100%
  );
  background: -webkit-linear-gradient(
    310deg,
    hsla(210, 91%, 39%, 1) 32%,
    hsl(321deg 55% 50% / 82%) 100%
  );
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#0965c0", endColorstr="#c53a94", GradientType=1);
}

/* Container */
.hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1100px;
  padding: 0 30px;
  margin: auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

.text-wrap.slide-up {
  color: #fff;
}

/* Content alignment */
.hero-content {
  text-align: center;
}

@media (min-width: 992px) {
  .hero-content {
    text-align: left;
    max-width: 700px;
  }
}

/* Logo */
.logo {
  font-family: "Pacifico", cursive;
  font-size: 42px;
  color: #111;
  margin-bottom: 30px;
}

/* Title */
.hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  margin-top: 0;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 42px;
  }
}

/* Subtext */
.hero-subtext {
  font-size: 22px;
  margin-bottom: 25px;
  line-height: 1.6;
  max-width: 600px;
}

.hero-subtext a {
  color: #ffffff;
  text-decoration: underline;
}

.hero-subtext a:hover {
  text-decoration: underline;
}

/* Description */
.hero-description {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 550px;
  line-height: 1.6;
}

/* Button */
.apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  color: #1e2d44;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 48px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.apply-btn:hover {
  background-color: transparent;
  transform: translateY(-2px);
  color: #fff;
  border: solid 2px #fff;
}

.arrow-icon {
  width: 20px;
  height: 20px;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
}

.slide-up {
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 1s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer {
  background-color: #111827;
  color: #fff;
  padding: 3rem 0;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-right {
    text-align: right;
  }

  .footer-item {
    justify-content: flex-end;
  }
}

.footer-logo {
  font-family: "Pacifico", cursive;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.footer-tagline {
  color: #d1d5db;
  font-size: 1.1rem;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #d1d5db;
}

.footer-icon {
  width: 20px;
  height: 20px;
  color: #9ca3af;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.95rem;
}

.why-choose {
  background-color: #f9fafb;
  padding: 5rem 0;
  font-family: Arial, sans-serif;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.why-header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .why-header h3 {
    font-size: 2.5rem;
  }
}

.why-header p {
  color: #4b5563;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.why-card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.why-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(30, 64, 175, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.why-icon.secondary {
  background-color: rgba(8, 145, 178, 0.1);
}

.icon {
  width: 24px;
  height: 24px;
}

.why-card h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.why-card p {
  color: #4b5563;
  line-height: 1.6;
}

.journey-div {
  background-color: #fff;
  padding: 5rem 0;
  text-align: center;
  font-family: Arial, sans-serif;
}

.journey-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.journey-container h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  margin-top: 0;
}

@media (min-width: 1024px) {
  .journey-container h3 {
    font-size: 2.5rem;
  }
}

.journey-container p {
  color: #4b5563;
  font-size: 1.125rem;
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.journey-btn {
  background-color: #0891b2;
  /* secondary color */
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 1.25rem 4rem;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition:
    background-color 0.3s ease,
    transform 0.2s ease;
}

.journey-btn:hover {
  background-color: #0e7490;
  /* darker cyan */
  transform: translateY(-3px);
}

.arrow-icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

footer a {
  text-decoration: none;
}

.flex {
  display: flex;
  gap: 10px;
}

@media (max-width: 991px) {
  .header-info {
    display: none;
  }

  header.header-container {
    justify-content: center;
  }

  .hero-content {
    text-align: left;
    width: 80%;
  }

  .journey-div {
    padding: 1rem 0 2rem 0;
  }

  .why-choose {
    padding: 1rem 0;
  }
}
