@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: inherit;
}

ul {
  list-style: none;
  padding-left: 0;
}

header {
  padding: 40px 0;
  background-color: transparent;
  position: fixed;
  z-index: 1000;
  width: 100%;
  transition: background-color 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.secondary-button {
  width: 286px;
  height: 54px;
  gap: 0px;
  border-radius: 27px;
  background: rgba(33, 79, 179, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-family: Unbounded;
  font-size: 14px;
  font-weight: 300;
  line-height: 17.36px;
  letter-spacing: -0.05em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  text-transform: uppercase;
  z-index: 2;
}

.cta-button {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.cta-button::after {
  content: "";
  background-color: white;
  width: 286px;
  height: 54px;
  position: absolute;
  transform: translateY(4px);
  border-radius: 27px;
  z-index: 1;
}

.cta-button-specialization {
  width: 100%;
  margin-top: 49px;
  position: relative;
  cursor: pointer;
}

.cta-button-specialization > .secondary-button {
  width: 100%;
  display: flex;
  gap: 21px;
  align-items: center;
}

.cta-button-specialization > .secondary-button > p {
  font-family: Unbounded;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 17.36px;
  letter-spacing: -0.05em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin: 0;
}

.secondary-button-outlay {
  width: 100%;
  height: 54px;
  background-color: rgba(192, 192, 192, 1);
  border-radius: 27px;
  position: absolute;
  top: 4px;
  left: 2px;
}

.logo img {
  height: 90px;
  object-fit: contain;
}

.nav-links ul {
  display: flex;
  list-style: none;
}

.nav-links ul li {
  margin: 0 15px;
}

.nav-links ul li a {
  text-decoration: none;
  color: rgba(240, 240, 241, 1);
  font-family: Satoshi;
  font-size: 16px;
  font-weight: 400;
  line-height: 21.6px;
  letter-spacing: -0.05em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  transition: color 0.3s ease;
}

.nav-links ul li a.selected {
  color: rgba(33, 79, 179, 1);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger .line {
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active .line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1200px) {
  .cta-button::after {
    width: 200px;
  }

  .secondary-button {
    width: 200px;
  }

  .logo > img {
    width: 200px;
  }
}

@media (max-width: 991px) {
  .logo > img {
    height: 75px;
    width: auto;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Full screen height */
    background-color: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%); /* Start off-screen */
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links ul {
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .nav-links ul li {
    margin: 20px 0;
  }

  .nav-links ul li a {
    font-size: 1.5rem;
    color: #333;
  }

  .hamburger {
    display: flex;
    z-index: 1000;
  }

  .cta-button {
    display: none;
  }

  .nav-links ul li a.selected {
    color: rgba(242, 115, 23, 1);
  }
}

@media (max-width: 576px) {
  header {
    padding: 20px 0;
  }

  .logo > img {
    height: 60px;
  }
}

/* ----------------------- MAIN -------------------- */

.main {
  height: 50vh;
  width: 100%;
  background: linear-gradient(138.14deg, #ff9040 -14.55%, #f16500 87.93%);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 50px;
}

.top-splash {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

.main-heading {
  color: rgba(240, 240, 240, 1);
  font-family: Unbounded;
  font-size: 40px;
  font-weight: 600;
  line-height: 61px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  align-self: center;
  justify-self: center;
  width: 100%;
  text-align: center;
}

.main-heading > span {
  font-weight: 300;
}

@media (max-width: 992px) {
  .main-heading {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .main-heading {
    font-size: 28px;
  }
}
/* --------------------- SPECIALIZATION -------------------------- */
.section-header {
  font-family: Unbounded;
  font-size: 30px;
  font-weight: 300;
  line-height: 36.6px;
  letter-spacing: -0.07em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(33, 79, 179, 1);
  margin-top: 100px;
}

.div-header {
  margin-top: 30px;
  font-family: Unbounded;
  font-size: 30px;
  font-weight: 600;
  line-height: 36.6px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(41, 41, 41, 1);
}

.specialization-data {
  padding: 0;
}

.specialization-item {
  background-color: rgba(237, 240, 249, 1);
  box-shadow: 4px 4px 4px -1px rgba(0, 0, 0, 0.07);
  padding: 40px 32px;
  border-radius: 35px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.specialization-item-data > h1 {
  font-family: Unbounded;
  font-size: 20px;
  font-weight: 400;
  line-height: 24.4px;
  letter-spacing: -0.07em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(33, 79, 179, 1);
}

.specialization-item-data > p {
  margin-top: 20px;
  font-family: Satoshi;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(142, 142, 142, 1);
  min-height: 70px;
}

.specialization-item-data > div.divider {
  margin: 16px -32px;
  border: 1px solid rgba(130, 130, 130, 0.09);
}

.specialization-item-data > ul {
  list-style-image: url("/assets/images/common/list_arrow_orange.svg");
  padding-left: 2rem;
}

.specialization-item-data > ul > li > h2 {
  font-family: Satoshi;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(41, 41, 41, 1);
}

.specialization-item > .cta-button-specialization {
  width: 100%;
  margin-top: 49px;
  position: relative;
}

.specialization-item > .cta-button-specialization > .secondary-button {
  width: 100%;
  display: flex;
  gap: 21px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.specialization-item > .cta-button-specialization > .secondary-button > p {
  font-family: Unbounded;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 17.36px;
  letter-spacing: -0.05em;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin: 0;
}

.secondary-button-outlay {
  width: 100%;
  height: 54px;
  background-color: rgba(192, 192, 192, 1);
  border-radius: 27px;
  position: absolute;
  top: 4px;
  left: 2px;
  z-index: 0;
}

@media (max-width: 1200px) {
  .specialization-item > .cta-button-specialization > .secondary-button > p {
    font-size: 0.7rem;
  }

  .specialization-item > .cta-button-specialization > .secondary-button {
    gap: 10px;
  }

  .specialization-item-data > ul > li > h2 {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .specialization-item > .cta-button-specialization {
    margin-top: 24px;
  }
}

@media (max-width: 768px) {
  .specialization-item > .cta-button-specialization > .secondary-button {
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .specialization-item > .cta-button-specialization > .secondary-button {
    gap: 10px;
  }

  .specialization-item-data > h1 {
    font-size: 16px;
  }

  .specialization-item-data > p {
    font-size: 14px;
  }

  .specialization-item-data > div.divider {
    margin-top: 10px;
  }

  .specialization-item-data > ul > li > h2 {
    font-size: 14px;
  }
}

/* ------------------------------ FOOTER ------------------------------------ */
.footer {
  background-color: rgba(245, 245, 245, 1);
  margin-top: 100px;
  padding-top: 52px;
  padding-bottom: 45px;
}

.footer-logo > img {
  height: 117px;
}

.footer-divider {
  border: 0.8px solid rgba(205, 205, 205, 1);
  margin-top: 45px;
  margin-bottom: 32px;
}

.footer-navigations > div > div h2 {
  font-family: Unbounded;
  font-size: 16px;
  font-weight: 800;
  line-height: 36px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(54, 54, 54, 1);
}

.footer-navigations {
  /* display: flex;
  gap: 220px; */
  margin-top: 50px;
}

.footer-navigations ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-navigations li {
  font-family: Satoshi;
  font-size: 16px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: -0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: rgba(54, 54, 54, 1);
}

.footer-socials {
  display: flex;
  justify-content: space-between;
}

.footer-socials > .socials {
  display: flex;
  gap: 35px;
}

@media (max-width: 576px) {
  .footer-socials {
    flex-direction: column;
    gap: 25px;
  }

  .footer {
    margin-top: 80px;
  }
}

@media (max-width: 1200px) {
  .div-header {
    font-size: 24px;
    margin-top: 10px;
  }

  .section-header {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .section-header {
    margin-top: 50px;
  }
}

/* WHATSAPP FLOAT */
.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.my-float {
}

.float:hover {
  color: white;
}

@media (max-width: 768px) {
  .float {
    width: 50px;
    height: 50px;
    bottom: 35px;
    right: 35px;
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .float {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 18px;
  }
}
