/* =========================================
   HERO SECTION
========================================= */

.hero-section {
  position: relative;

  width: 100%;
  height: 650px;

  margin: 0;
  padding: 0;

  overflow: hidden;
}

/* =========================================
   SLIDER
========================================= */

.hero-slider {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;
}

/* =========================================
   SLIDES
========================================= */

.hero-slide {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  opacity: 0;

  transition: opacity 1s ease-in-out;

  z-index: 1;
}

.hero-slide.active {
  opacity: 1;

  z-index: 2;
}

/* =========================================
   IMAGES
========================================= */

.hero-slide img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;
}

/* =========================================
   OVERLAY
========================================= */

.hero-overlay {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.18);

  z-index: 3;

  pointer-events: none;
}

/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  width: 100%;

  text-align: center;

  z-index: 4;
}

/* =========================================
   HERO TITLE
========================================= */

.hero-content h1 {
  display: inline-block;

  margin: 0;

  padding: 4px 12px;

  background: rgba(0, 0, 0, 0.55);

  color: #ffffff;

  font-family: "Roboto", sans-serif;

  font-size: 50px;
  font-weight: 700;

  line-height: 1.3;
}

/* =========================================
   HERO BUTTONS
========================================= */

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.hero-button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 45px;
  padding: 0 20px;
  background: #0870e8;
  color: #ffffff;
  border: none;
  border-radius: 11px;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 700;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-button:hover {
  background: #0756c2;
  transform: translateY(-1px);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {
  .hero-section {
    height: 420px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-buttons {
    gap: 12px;
  }

  .hero-button {
    min-width: 130px;
    height: 40px;
    font-size: 13px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {
  .hero-section {
    height: 320px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .hero-button {
    min-width: 120px;
    height: 38px;
    font-size: 12px;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
  .hero-section {
    height: 250px;
  }

  .hero-content h1 {
    font-size: 19px;

    padding: 3px 8px;
  }

  .hero-buttons {
    gap: 8px;
    margin-top: 15px;
  }

  .hero-button {
    min-width: 110px;
    height: 35px;
    font-size: 11px;
    padding: 0 15px;
  }
}
/* =========================================================
   INTRO / ABOUT SECTION
========================================================= */

.intro-section {
  width: 100%;
  margin: 0;
  padding: 25px 0 30px;
  background: #ffffff;
}

/* =========================================================
   CONTAINER
========================================================= */

.intro-container {
  width: min(1140px, 92%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 45px;
}

/* =========================================================
   LEFT CONTENT
========================================================= */

.intro-content {
  width: 100%;
}

.intro-content h2 {
  margin: 0 0 10px;

  color: #111111;

  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 700;

  line-height: 1.3;
  text-align: center;
}

.intro-content p {
  margin: 0;

  color: #222222;

  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 600;

  line-height: 1.8;
  text-align: left;
}

/* =========================================================
   READ MORE BUTTON
========================================================= */

.read-more-button {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 120px;
  height: 40px;

  margin: 24px auto 0;

  background: #075fe6;
  color: #ffffff;

  border: 0;
  border-radius: 4px;

  text-decoration: none;

  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 600;

  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.read-more-button:hover {
  background: #004fc7;
  transform: translateY(-1px);
}

/* =========================================================
   RIGHT IMAGE
========================================================= */

.intro-image {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-image img {
  display: block;

  width: 100%;
  max-width: 525px;
  height: 390px;

  object-fit: cover;
  object-position: center;

  border: 4px solid #444444;
  border-radius: 18px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  .intro-container {
    gap: 25px;
  }

  .intro-content p {
    font-size: 13px;
    line-height: 1.7;
  }

  .intro-image img {
    height: 350px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {
  .intro-section {
    padding: 30px 0;
  }

  .intro-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .intro-content h2 {
    font-size: 20px;
  }

  .intro-content p {
    font-size: 13px;
    line-height: 1.7;
    text-align: center;
  }

  .intro-image {
    order: 2;
  }

  .intro-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 480px) {
  .intro-content h2 {
    font-size: 18px;
  }

  .intro-content p {
    font-size: 12px;
  }

  .intro-image img {
    border-width: 3px;
    border-radius: 12px;
  }

  .read-more-button {
    width: 110px;
    height: 38px;
  }
}

/* =========================================================
   VISITOR BANNER
========================================================= */

.visitor-banner {
  position: relative;

  width: 100%;
  height: 335px;

  margin: 0;
  padding: 0;

  overflow: hidden;
}

/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.visitor-banner-image {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center center;
}

/* =========================================================
   IMAGE OVERLAY
========================================================= */

.visitor-banner-overlay {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.08);
}

/* =========================================================
   VISITOR BAR
========================================================= */

.visitor-banner-content {
  position: absolute;

  top: 50%;
  left: 0;

  transform: translateY(-50%);

  width: 100%;

  min-height: 48px;

  padding: 4px 20px;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 12px;

  background: rgba(0, 0, 0, 0.65);

  color: #ffffff;

  font-family: "Roboto", sans-serif;

  font-size: 34px;
  font-weight: 700;

  line-height: 1.2;

  text-align: center;

  z-index: 2;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {
  .visitor-banner {
    height: 260px;
  }

  .visitor-banner-content {
    min-height: 45px;

    padding: 5px 10px;

    gap: 8px;

    font-size: 23px;
  }
}

/* =========================================================
   SMALL PHONE
========================================================= */

@media (max-width: 480px) {
  .visitor-banner {
    height: 220px;
  }

  .visitor-banner-content {
    flex-direction: column;

    gap: 2px;

    min-height: auto;

    padding: 7px 10px;

    font-size: 17px;
  }
}

/* =========================================================
   TESTIMONIAL SECTION
========================================================= */

.testimonials-section {
  width: min(1120px, 90%);

  margin: 12px auto 0;

  padding: 0 0 10px;
}

/* =========================================================
   HEADING BOX
========================================================= */

.testimonials-heading {
  width: 100%;
  height: 158px;

  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  background: #d3d3d3;

  border: 2px solid #111111;
  border-radius: 14px;

  text-align: center;
}

.testimonials-heading h2 {
  position: relative;

  margin: 0;

  padding-bottom: 7px;

  color: #111111;

  font-family: "Roboto", sans-serif;

  font-size: 27px;
  font-weight: 700;

  line-height: 1.2;
}

.testimonials-heading h2::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 0;

  transform: translateX(-50%);

  width: 55px;
  height: 2px;

  background: #e00000;
}

.testimonials-heading p {
  margin: 10px 0 0;

  color: #111111;

  font-family: "Roboto", sans-serif;

  font-size: 13px;
  font-weight: 500;

  line-height: 1.4;

  text-align: center;
}

/* =========================================================
   TESTIMONIAL GRID
========================================================= */

.testimonial-grid {
  width: 100%;

  margin-top: 16px;

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  column-gap: 65px;
}

/* =========================================================
   TESTIMONIAL CARD
========================================================= */

.testimonial-card {
  min-width: 0;

  margin: 0;
}

/* =========================================================
   CANDIDATE INFO
========================================================= */

.candidate-info {
  display: flex;

  align-items: center;

  gap: 12px;
}

.candidate-info img {
  display: block;

  width: 60px;
  height: 60px;

  flex: 0 0 60px;

  border-radius: 50%;

  object-fit: cover;

  border: 1px solid #777777;
}

.candidate-details {
  min-width: 0;
}

.candidate-details h3 {
  margin: 0;

  color: #111111;

  font-family: "Roboto", sans-serif;

  font-size: 16px;
  font-weight: 700;

  line-height: 1.25;
}

.candidate-details span {
  display: block;

  margin-top: 3px;

  color: #111111;

  font-family: "Roboto", sans-serif;

  font-size: 13px;
  font-weight: 400;

  line-height: 1.25;
}

/* =========================================================
   TESTIMONIAL TEXT
========================================================= */

.testimonial-text {
  margin: 9px 0 0;

  color: #111111;

  font-family: "Roboto", sans-serif;

  font-size: 13px;
  font-weight: 600;

  line-height: 1.75;
}

/* =========================================================
   ABOUT BUTTON
========================================================= */

.about-action {
  width: 100%;

  margin-top: 125px;

  display: flex;

  justify-content: flex-end;
}

.about-action a {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 94px;
  height: 44px;

  background: #0866e3;
  color: #ffffff;

  border: 2px solid #000000;
  border-radius: 9px;

  text-decoration: none;

  font-family: "Roboto", sans-serif;

  font-size: 13px;
  font-weight: 700;
}

.about-action a:hover {
  background: #0054c7;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  .testimonials-section {
    width: 92%;
  }

  .testimonial-grid {
    column-gap: 25px;
  }

  .about-action {
    margin-top: 80px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {
  .testimonials-section {
    width: 92%;
  }

  .testimonials-heading {
    height: 140px;
    padding: 15px;
  }

  .testimonials-heading h2 {
    font-size: 22px;
  }

  .testimonials-heading p {
    font-size: 12px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;

    row-gap: 28px;

    margin-top: 20px;
  }

  .testimonial-text {
    font-size: 13px;
  }

  .about-action {
    justify-content: center;

    margin-top: 45px;
  }
}

/* =========================================================
   SMALL PHONES
========================================================= */

@media (max-width: 480px) {
  .testimonials-heading {
    height: 130px;
  }

  .testimonials-heading h2 {
    font-size: 19px;
  }

  .testimonials-heading p {
    font-size: 11px;
  }

  .candidate-info img {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }

  .candidate-details h3 {
    font-size: 14px;
  }

  .candidate-details span {
    font-size: 11px;
  }

  .testimonial-text {
    font-size: 12px;
  }
}
