/* =========================
   RESET
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* =========================
   BASE
========================= */
body {
  font-family: "Montserrat", sans-serif;
  color: #031f4c;
  line-height: 1.6;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 100vh;
  padding: 0 8%;

  background: url("../img/Hero-bg.svg") center / cover no-repeat;
}

/* overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
}

/* content above overlay */
.hero-text,
.hero-image {
  position: relative;
  z-index: 2;
}

/* hero text */
.hero-text {
  width: 55%;
}

.hero-text .intro {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #000;
}

.hero-text h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero-text .description {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.45;
  color: #000;
  max-width: 95%;
  margin-bottom: 28px;
}

/* button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #03396d;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
}

.btn-linkedin i {
  background: #ffffff;
  color: #03396d;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* hero image */
.hero-image {
  width: 45%;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 80%;
  height: auto;
}

/* =========================
   ABOUT SECTIONS
========================= */
.about {
  display: flex;
  align-items: center;
  padding: 4% 8%;
}

.about.light {
  background: #f9f9f9;
}

.about-image {
  width: 45%;
}

.about-image img {
  width: 100%;
}

.about-list {
  width: 55%;
}

.icon-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.chevron {
  color: #03396d;
  font-size: 22px;
  font-weight: 800;
  margin-top: 2px;
}

.icon-text {
  font-size: 17px;
  color: #000;
  font-weight: 600;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #031f4c;
  padding: 25px 8%;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 12px;
}

.social-links a {
  color: #ffffff;
  font-size: 24px;
}

.copyright {
  color: #ffffff;
  font-size: 16px;
}

/* =========================
   CONTACT ITEM
========================= */
.contact-item {
  margin-bottom: 10px;
}

.contact-item a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

  .hero {
    flex-direction: column;
    justify-content: center;
    padding: 70px 6% 50px;
    min-height: auto;
    text-align: center;
  }

  .hero-text,
  .hero-image {
    width: 100%;
  }

  .hero-text {
    margin-bottom: 30px;
  }

  .hero-text .intro {
    font-size: 22px;
  }

  .hero-text h1 {
    font-size: 36px;
    line-height: 1.25;
  }

  .hero-text .description {
    font-size: 16px;
    margin-bottom: 22px;
  }

  .hero-image img {
    max-width: 65%;
  }

  .about {
    flex-direction: column;
    padding: 50px 6%;
    text-align: center;
  }

  .about-image,
  .about-list {
    width: 100%;
  }

  .about-image {
    margin-bottom: 25px;
  }

  .icon-item {
    justify-content: center;
    text-align: left;
  }
}
