/* Base Styles */
body {
  margin: 0;
  overflow-x: hidden;
}
section {
  scroll-margin-top: 80px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Import Font */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Italic.woff2') format('woff2'),
      url('../fonts/Inter-Italic.woff') format('woff');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2'),
      url('../fonts/Inter-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Londrina Outline';
  src: url('../fonts/LondrinaOutline-Regular.woff2') format('woff2'),
      url('../fonts/LondrinaOutline-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Signika';
  src: url('../fonts/Signika-Bold.woff2') format('woff2'),
      url('../fonts/Signika-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Signika';
  src: url('../fonts/Signika-Light.woff2') format('woff2'),
      url('../fonts/Signika-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Signika';
  src: url('../fonts/Signika-Medium.woff2') format('woff2'),
      url('../fonts/Signika-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Signika';
  src: url('../fonts/Signika-Regular.woff2') format('woff2'),
      url('../fonts/Signika-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Signika';
  src: url('../fonts/Signika-SemiBold.woff2') format('woff2'),
      url('../fonts/Signika-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}



/* Landing Page Styles */
.landing-page {
  position: relative;
  height: 100vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
  overflow: hidden;
  z-index: 1;
  will-change: transform;
}
.background-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 70% 0%;
  background-repeat: no-repeat;
  transition: opacity 2s ease-in-out;
  opacity: 0;
  z-index: 0;
}
.background-layer.active {
  opacity: 1;
}

.fade-in {
  animation: fadeIn 0.5s ease-in-out forwards;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
/* Responsive Adjustment Website */
@media only screen and (max-device-width: 1366px) {
  body {
    margin: 0;
    overflow-x: hidden;
  }
  .container,
  .row {
    max-width: 100%;
    overflow-x: hidden;
  }
  section {
    max-width: 100%;
    overflow-x: hidden;
  }
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  svg {
    max-width: 100%;
    display: block;
  }

  .landing-page {
    background-attachment: scroll;
    background-position: center top;
  }
}
/* Captcha */
#captcha-container,
#captcha-container-testimonial {
  display: none;
  margin-top: 10px;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 5px;
}

#captcha-img,
#captcha-img-testimonial {
  display: block;
  margin-bottom: 10px;
}

/* Style for the dropdown */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  max-height: 150px;
  overflow-y: auto;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.dropdown-item {
  padding: 8px 16px;
  cursor: pointer;
}

.dropdown-item:hover {
  background-color: #f1f1f1;
}

.form-group {
  position: relative;
}

/* Content Styles */
.content {
  position: relative;
  z-index: 3;
  margin: 0 !important;
}
.content h1 {
  font-size: 58px;
  margin: 0;
  font-family: "Signika", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.content h2 {
  font-size: 40px;
  font-family: "Signika", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  margin: 10px 0;
}

.content p {
  font-size: 20px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  max-width: 800px;
  margin: 20px auto 0;
  line-height: 1.5;
}

/* Animation for Text */
.content h1,
.content h2,
.content p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.content h1.animate,
.content h2.animate,
.content p.animate {
  opacity: 1;
  transform: translateY(0);
}
#captcha-img {
  pointer-events: none;
}
/* Text Underline Effect */
.txt-underline {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  font-family: "Signika", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "GRAD" 0;
}
.signika {
  font-family: "Signika", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "GRAD" 0;
}
.txt-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background-color: black;
}

/* Double Text */
.double-title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  margin-bottom: 100px;
  width: 100%;
}

/* Raw Background Text */
.background-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px;
  font-family: "Londrina Outline", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: rgba(33, 33, 33, 0.19);
  z-index: 1;
  white-space: nowrap;
  pointer-events: none;
}
@media (max-width: 576px) {
  .double-title-container {
    margin-left: 0;
    margin-bottom: 40px;
    text-align: center;
    display: block;
    width: 100%;
  }
  .background-text {
    font-size: 60px;
  }
}

@media (max-width: 480px) {
  .double-title-container {
    margin-left: 10px;
    margin-bottom: 30px;
  }
  .background-text {
    font-size: 60px;
  }
}
/* Responsive styles for landscape phone view */
@media screen and (max-width: 1200px) and (orientation: landscape) {
  .landing-page {
    height: 60vh;
    background-attachment: scroll;
  }

  .content h1 {
    font-size: 36px;
  }

  .content h2 {
    font-size: 28px;
  }

  .content p {
    font-size: 14px;
  }

  .aboutUs h2 {
    font-size: 24px;
  }

  .aboutUs h3 {
    font-size: 20px;
  }

  .aboutUs p {
    font-size: 14px;
  }

  .carousel-wrapper {
    height: 100px;
  }

  .scroll-item {
    height: 100px;
  }
}

/* ============== Navbar Section ============== */
nav {
  background: linear-gradient(
    335deg,
    rgba(30, 136, 229, 1) 0%, 
    rgba(119, 183, 239, 1) 47%, 
    rgba(255, 255, 255, 1) 76%,
    rgba(255, 255, 255, 1) 100%
  );
  
  overflow-x: hidden;
  display: flex;
  position: fixed;
  justify-content: space-between;
  align-items: center;
  padding: 10px 80px;
  flex-wrap: wrap;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.logo-container {
  display: flex;
  align-items: center;
  padding-right: 120px;
}

.logo-container img {
  height: 70px;
  width: 70px;
  margin: 0px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  justify-content: center;
  flex-grow: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

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

.nav-links a {
  text-decoration: none;
  color: #004080;
  font-family: "Signika", sans-serif;
  font-optical-sizing: auto;
  font-weight: 650;
  font-style: normal;
  font-variation-settings: "GRAD" 0;
  font-size: 22px;
  padding: 10px 15px;
  border-radius: 5px;
  position: relative;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.active-items,
.nav-links a:hover {
  background-color: rgba(0, 64, 128, 0.3);
  color: #ffffff;
  border-radius: 5px;
}

.social-icons {
  display: flex;
  align-items: center;
}

.social-icons a {
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.social-icons a#insta img {
  height: 42px;
  width: 42px;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
}

.social-icons a#linked img {
  height: 34px;
  width: 34px;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
}

.social-icons a#youtube img {
  height: 40px;
  width: 42px;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.5));
}

.social-icons a:hover {
  transform: scale(1.1);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 1100;
}

.menu-toggle .hamburger {
  width: 30px;
  height: 2px;
  background-color: #004080;
  margin: 5px 0;
}

/* ============== About Us Section ============== */
.aboutUs {
  background-image: url(../img/aboutus.svg);
  padding: 90px 0px;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  background-size: cover;
  background-position: center;
}

.aboutUsImg {
  width: 80%;
  height: auto;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.aboutUsImg.animate {
  opacity: 1;
  transform: scale(1);
}

.aboutUs.animate {
  opacity: 1;
  transform: translateY(0);
}

.aboutUs h2 {
  font-size: 42px;
  font-family: "Signika", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin: 20px 0;
  margin-left: 120px;
  text-align: left;
}

.aboutUs h3 {
  font-family: "Signika", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  margin: 20px 0;
  text-align: left;
}

.aboutUs p {
  font-size: 18px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 420;
  font-style: normal;
  max-width: 800px;
  margin: 20px auto 0;
  line-height: 1.7;
  padding: 20px;
  border-radius: 8px;
}

.aboutUs img {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.aboutUs h2,
.aboutUs h2 span,
.aboutUs h3,
.aboutUs p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.aboutUs h2.animate,
.aboutUs h2 span.animate,
.aboutUs h3.animate,
.aboutUs p.animate {
  opacity: 1;
  transform: translateY(0);
}

.background-text-aboutUs {
  top: 18%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  font-size: 48px;
  font-family: "Londrina Outline", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: rgba(33, 33, 33, 0.19);
  z-index: 0;
  white-space: nowrap;
  pointer-events: none;
  animation: fadeIn 0.5s ease-in-out forwards;
}
/* Keyframes for entry animation */
@keyframes slideEntry {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Keyframes for entry animation */
@keyframes slideEntry {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* General styles for the section */
.core-ideals-section {
  padding: 60px 20px;
  position: relative;
  width: 100%;
  height: auto;
  background-image: url("../img/texture.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-family: "Signika", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  overflow: hidden;
}
.value-title {
  font-size: 42px;
  font-family: "Signika", sans-serif;
  font-weight: 800;
  z-index: 2;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
}
.value-means {
  background-color: white;
  padding: 20px;
}

/* Animation for the section */
.core-ideals-section .animate-entry {
  animation: slideEntry 1s ease-out forwards;
}

/* Animation for specific elements */
.core-ideals-section h1,
.core-ideals-section h2,
.core-ideals-section p,
.core-ideals-section ul,
.core-ideals-section li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.core-ideals-section h1.animate,
.core-ideals-section h2.animate,
.core-ideals-section p.animate,
.core-ideals-section ul.animate,
.core-ideals-section li.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Text styles */
.text-center-values {
  padding-left: 20px;
  text-align: center;
  color: #2c3e50;
  position: relative;
}

.text-center-values .txt-underline-values {
  position: relative;
  color: #2261c1;
}

.text-center-values .txt-underline-values::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 4px;
  background-color: #3e69c7;
}

.core-ideals {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
  gap: 40px;
}

.vision-mission {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 20px;
}

.section {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  width: 100%;
  max-width: 350px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15); /* Hover effect */
}

.section h2 {
  font-size: 28px;
  margin-bottom: 15px;
  text-align: center;
  color: #2980b9;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: #2980b9;
  margin: 10px auto 0;
}

.section p {
  font-size: 16px;
  color: #2c3e50;
  text-align: center;
  line-height: 1.6;
}

.values {
  text-align: left;
  margin-top: 5px;
}

.values h1 {
  font-size: 42px;
  color: #2980b9;
  margin-bottom: 20px;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}
.values ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 24px;
  line-height: 1.8;
  color: #2c3e50;
}

.values ul li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.values ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #0c8dd7;
  font-size: 24px;
  line-height: 1;
  top: 0;
}
.background-text-ideals {
  position: absolute;
  top: 48%;
  left: 57%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  font-family: "Londrina Outline", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: rgba(33, 33, 33, 0.19);
  z-index: 1;
  white-space: nowrap;
  pointer-events: none;
}
/* ============== Service Section ============== */
.services {
  position: relative;
  padding: 60px 0;
  background-image: url("../img/landing.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  overflow: hidden;
}

.services .container {
  position: relative;
  z-index: 2;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
/* Service Cards */
.service-card {
  background-color: white;
  color: black;
  border-radius: 15px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  text-align: left;
  padding: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease-out, transform 0.4s ease-out,
    box-shadow 0.3s ease, background-color 0.2s ease;
  transition-delay: calc(var(--animation-order) * 0.01s);
  margin: 0 auto 20px auto;
  width: 100%;
}

/* Hover Effects */
.service-card:hover {
  transform: translateY(-5px);
  cursor: pointer;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
  background-color: #f0f0f0;
}

.service-card.animate {
  opacity: 1;
}

.service-card h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
  position: relative;
}

.service-card h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  background-color: black;
  margin: 8px auto 0;
}

.service-card p {
  font-size: 14px;
  text-align: justify;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  max-width: 800px;
  margin: 20px auto 0;
  line-height: 1.5;
}

/* CTA Button */
.cta-button {
  position: relative;
  z-index: 3;
  background-color: #1e88e5;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  margin-top: 10px;
  padding: 10px 20px;
  transition: background-color 0.3s ease, opacity 1s ease-out,
    transform 1s ease-out;
  opacity: 0;
  transform: translateY(20px);
}

.cta-button:hover {
  background-color: #0d47a1;
}

.cta-button.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Animated Text */
.txt-underline-service,
.txt-header-title,
.txt-header-title-section,
.text-paragraph {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.txt-underline-service.animate,
.txt-header-title.animate,
.txt-header-title-section.animate,
.text-paragraph.animate,
.cta-button.animate {
  opacity: 1;
  transform: translateY(0);
}

.txt-underline-service {
  font-size: 42px;
  font-family: "Signika", sans-serif;
  font-weight: 500;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.txt-underline-service::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1.5px;
  background-color: rgb(255, 255, 255);
}

.txt-header-title {
  font-size: 36px;
  font-family: "Signika", sans-serif;
  font-weight: 500;
}

.txt-header-title-section {
  font-size: 48px;
  font-family: "Signika", sans-serif;
  font-weight: 500;
}

.text-paragraph {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  max-width: 800px;
  margin: 5px auto 20px;
  line-height: 1.5;
}

/* ============== Portofolio Section ============== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-entry {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-entry.animate {
  animation: fadeInUp 0.7s forwards;
}

/* ============== Base Style ============== */
section.cours {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 80vh;
  background-image: url("../img/anotha.svg");
  background-repeat: no-repeat;
}

#wrapper {
  width: 100%;
  max-width: 1240px;
  padding: 0 1rem;
  position: relative;
}

#carousel-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#carousel {
  overflow: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  display: flex;
  position: relative;
}

#carousel::-webkit-scrollbar {
  height: 0;
}

#content {
  padding-top: 20px;
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
  margin: auto;
  box-sizing: border-box;
}

.item-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 320px;
  text-align: center;
}

.item {
  position: relative;
  width: 320px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.item:hover img {
  transform: scale(1.1);
}

.item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.item-text {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  margin-top: 8px;
  font-size: 14px;
  color: #333;
}

#carousel-text {
  margin-top: 20px;
  text-align: center;
  margin-left: 10px;
}

#carousel-text h2 {
  font-family: "Signika", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-size: 42px;
  margin-bottom: 10px;
}

#carousel-text p {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 20px;
  color: #666;
}

.txt-underline-car {
  position: relative;
  display: inline-block;
}

.txt-underline-car::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1.5px;
  background-color: black;
}

/* Button styles */
#button-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  width: 100%;
  margin-top: 20px;
  margin-left: 20px;
}

#prev,
#next {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(28, 162, 230);
  border: none;
  padding: 6px;
  border-radius: 50%;
  outline: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  transition: background-color 0.3s ease;
}

#prev.disabled,
#next.disabled {
  background: gray;
  cursor: not-allowed;
}

/* Carousel CSS */
.carousel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.scrolling-container {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.scroll-item {
  position: relative;
  margin-right: 2px;
  height: 130px;
  overflow: hidden;
}

.scroll-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75%;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: fill;
}
.background-text-portofolio {
  position: absolute;
  top: 14%;
  left: 55%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  font-family: "Londrina Outline", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: rgba(33, 33, 33, 0.19);
  z-index: 1;
  white-space: nowrap;
  pointer-events: none;
}

/* ============== News Section ============== */
#news {
  background-image: url(../img/bg.svg);
  padding: 64px 20px;
  border-radius: 20px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  text-align: center;
}

/* Title Styling */
.news-title {
  font-size: 42px;
  font-family: "Signika", sans-serif;
  font-weight: 800;
  z-index: 2;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
}

/* Card Styles */
.news-card,
.featured-card,
.second-card {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-card img,
.featured-card img,
.second-card img {
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  height: 250px;
  width: 100%;
}

.news-card .card-body,
.featured-card .card-body,
.second-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.news-card .card-title,
.featured-card .card-title,
.second-card .card-title {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.news-card .card-text,
.featured-card .card-text,
.second-card .card-text {
  font-size: 18px;
  color: #666;
  margin-bottom: 15px;
}

.news-card:hover,
.featured-card:hover,
.second-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.background-text-news {
  position: absolute;
  top: 62%;
  left: 58%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  font-family: "Londrina Outline", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: rgba(33, 33, 33, 0.19);
  z-index: 1;
  white-space: nowrap;
  pointer-events: none;
}

/* ============== Client Section ============== */
.client-reviews {
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(220, 230, 240, 1) 100%
  );
  padding: 70px 0;
  text-align: center;
  position: relative;
}

.client-reviews h2 {
  font-size: 42px;
  color: #004080;
  margin-bottom: 40px;
}

.background-text-review {
  position: absolute;
  top: 66%;
  left: 58%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  font-family: "Londrina Outline", sans-serif;
  font-weight: 500;
  color: rgba(33, 33, 33, 0.19);
  z-index: 1;
  white-space: nowrap;
  pointer-events: none;
}

.txt-underline-review {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  font-family: "Signika", sans-serif;
  font-weight: 600;
}

.txt-underline-review::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 3px;
  background-color: #004080;
}

/* ============== Carousel Style ============== */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
}

.reviews-container {
  display: flex  !important; 
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  align-items: stretch;
}

.review-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 290px;
  text-align: left;
  flex: 1 1 290px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 350px;
  transition: transform 0.3s ease;
}

/* Hover effect */
.review-card:hover {
  transform: translateY(10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.review-card .client-logo {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}

.review-text {
  font-size: 16px;
  color: #333;
  text-align: left;
  padding-bottom: 10px;
}

.review-card .description {
  font-size: 16px;
  font-style: italic;
  color: #8a8a8a;
  line-height: 23px;
  text-align: left;
  margin-bottom: auto;
  flex-grow: 1;
  min-height: 160px;
}

/* Carousel Navigation Styles */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 10px;
  z-index: 2;
  transition: background-color 0.3s;
}

.carousel-nav i {
  color: #fff;
}

.carousel-nav:hover {
  background-color: #ccc;
}

.carousel-nav.prev {
  left: 10px;
}

.carousel-nav.next {
  right: 10px;
}

/* ============== Review Section ============== */
.testimonial {
  position: relative;
  margin: 0 55px 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  overflow: visible;
}

.testimonial .testimonial-content {
  padding: 35px 10px 10px 40px;
  background: #fff;
  position: relative;
  flex-grow: 1;
}

.testimonial-content .testimonial-icon {
  width: 45px;
  height: 40px;
  background: #0c8eca;
  text-align: center;
  font-size: 20px;
  color: #fff;
  line-height: 38px;
  position: absolute;
  top: 30px;
  left: -10px;
  border-radius: 50%;
}

.testimonial-image {
  width: 80px !important;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #fff; 
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 
  object-fit: fill;
  margin-top: 10px;
  position: relative; 
}


.testimonial .title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-top: 15px;
}

.testimonial .post {
  font-size: 14px;
  color: #2188e3;
  margin-top: 3px;
}
.post-company {
  font-size: 15px;
  font-weight: bold;
  color: #0d528e;
}

/* Owl Carousel Page Controls */
.owl-theme .owl-controls .owl-page span {
  background: #ccc;
  opacity: 1;
  border-radius: 50%;
}

.owl-stage-outer {
  height: 480px !important; 
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  background: #228dff;
}

/* ============== Client Section ============== */
.client-title {
  font-size: 42px;
  font-family: "Signika", sans-serif;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.double-title-container-clients-partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 40px;
  width: 100%;
}

@keyframes marquee-left {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes marquee-right {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.scrolling-content {
  display: flex;
  white-space: nowrap;
}

/* Marquee Animations */
.clients-scrolling-content {
  display: flex;
  animation: marquee-right 30s linear infinite;
}

.partners-scrolling-content {
  display: flex;
  animation: marquee-left 30s linear infinite;
}
.clients-partners {
  margin-top: 42px;
  background-color: #ffffff;
  margin-bottom: 0;
}
.background-text-client {
  position: absolute;
  top: 70%;
  left: 57%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  font-family: "Londrina Outline", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: rgba(33, 33, 33, 0.19);
  z-index: 1;
  white-space: nowrap;
  pointer-events: none;
}

/* ============== Contact Section ============== */
.contact-section {
  background-image: url("../img/contactbg.svg");
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center top;
  padding-top: 60px;
  padding-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.contact-form-container {
  background-color: #ffffff;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  max-width: 700px;
  width: 100%;
  height: auto;
  box-sizing: border-box;
}

.form-text {
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.contact-form-container h2 {
  text-align: center;
  color: #333;
  font-family: "Signika", sans-serif;
  font-weight: 700;
  font-size: 42px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 12px;
}

.form-group label {
  color: #333;
  font-size: 14px;
  margin-bottom: 6px;
  display: block;
}

.form-group input,
.form-group textarea {
  padding: 8px 12px;
  border-radius: 5px;
  border: 1px solid #ddd;
  font-size: 13px;
  width: 100%;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #5ca6e9;
  background-color: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 160px;
}

.form-group button {
  background-color: #358ad2;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 5px;
  font-size: 15px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.form-group button:hover {
  background-color: #2c79b5;
  transform: translateY(-2px);
}

.form-group button:active {
  transform: translateY(0);
}
/* ============== Footer Section ============== */
footer {
  background-color: #044f96;
  color: white;
  padding: 0px 20px 20px 20px;
  font-family: "Signika", sans-serif;
  position: relative;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0px 20px 20px 20px;
  border-bottom: 3px solid #4a95d6;
  background-color: #044f96;
}

.footer-left {
  flex-basis: 50%;
  font-size: 13px;
  line-height: 1.6;
}

.footer-logo {
  width: 75px;
  height: 75px;
  border-radius: 15%;
  margin-bottom: 15px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.footer-left address {
  font-style: normal;
  color: #d1e9ff;
}

.footer-left address p {
  margin-bottom: 8px;
  font-size: 13px;
}

.footer-links {
  display: flex;
  justify-content: space-evenly;
  flex-basis: 60%;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-links h3 {
  font-size: 16px;
  font-weight: bold;
  color: #ffdd57;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.footer-links ul li a {
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  padding-left: 16px;
  transition: color 0.3s ease;
}

.footer-links ul li a::before {
  content: "➔";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: #ffdd57;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-links ul li a:hover::before {
  transform: translateY(-50%) scale(1.3);
  color: #ffffff;
}

.footer-links ul li a:hover {
  color: #ffdd57;
  text-shadow: 0px 0px 5px rgba(255, 221, 87, 0.6);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  font-weight: normal;
  color: #d1e9ff;
}

/* =============== Media Responsive Style =============== */
@media screen and (max-width: 576px) {
  .background-text-aboutUs {
    padding-top: 160px;
    margin-left: 360px;
    position: absolute;
    transform: translate(-50%, -50%);
    font-size: 80px;
    font-family: "Londrina Outline", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: rgba(33, 33, 33, 0.1);
    z-index: 0;
    white-space: nowrap;
    pointer-events: none;
    animation: fadeIn 0.5s ease-in-out forwards;
  }
  .background-text-ideals {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-family: "Londrina Outline", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: rgba(33, 33, 33, 0.095);
    z-index: 1;
    white-space: nowrap;
    pointer-events: none;
  }
  .background-text-portofolio {
    font-size: 32px;
    top: 14%;
    left: 65%;
  }
  #button-container {
    gap: 40px;
    margin-top: 20px;
    margin-left: 10px;
  }
  #content {
    gap: 20px;
  }
  #prev,
  #next {
    width: 35px;
    height: 35px;
    padding: 4px;
  }

  .item-container {
    width: 200px;
  }

  .item {
    width: 200px;
    height: 120px;
  }

  #carousel-text h2 {
    font-size: 28px;
  }

  #carousel-text p {
    font-size: 12px;
  }
  .news-title {
    font-size: 28px;
  }
  .background-text-news {
    position: absolute;
    top: 85%;
    left: 58%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-family: "Londrina Outline", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: rgba(33, 33, 33, 0.095);
    z-index: 1;
    white-space: nowrap;
    pointer-events: none;
  }
  .client-title {
    margin-left: 20px;
    margin-bottom: 40px;
    text-align: center;
    display: block;
    width: 100%;
    font-size: 28px;
  }
  .background-text-client {
    position: absolute;
    top: 72%;
    left: 55%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    font-family: "Londrina Outline", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: rgba(33, 33, 33, 0.095);
    z-index: 1;
    white-space: nowrap;
    pointer-events: none;
  }
  .contact-section {
    padding: 20px 10px;
  }

  .contact-form-container {
    padding: 15px 20px;
    max-width: 100%;
  }

  .contact-form-container h2 {
    font-size: 22px;
  }

  .form-group label {
    font-size: 12px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 11px;
  }

  .form-group button {
    font-size: 12px;
    padding: 8px;
  }
  .footer-left {
    text-align: center;
  }

  .footer-links {
    gap: 15px;
  }

  .footer-links ul li a {
    font-size: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom p {
    margin-top: 10px;
    font-size: 11px;
  }
}
/* ====================================================== */
@media screen and (max-width: 480px) {
  .background-text-aboutUs {
    padding-top: 110px;
    margin-left: 120px;
    position: absolute;
    transform: translate(-50%, -50%);
    font-size: 50px;
    font-family: "Londrina Outline", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: rgba(33, 33, 33, 0.1);
    z-index: 0;
    white-space: nowrap;
    pointer-events: none;
    animation: fadeIn 0.5s ease-in-out forwards;
  }
  .aboutUs h2 {
    font-size: 24px;
    font-family: "Signika", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin: 20px 0;
    margin-left: 10px;
    text-align: left;
  }

  .aboutUs h3 {
    font-size: 20px;
    font-family: "Signika", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    margin: 20px 0;
    text-align: left;
  }
  .background-text-ideals {
    position: absolute;
    top: 56%;
    left: 48%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-family: "Londrina Outline", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: rgba(33, 33, 33, 0.095);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
  }
  .news-title {
    font-size: 28px;
  }
  .background-text-news {
    position: absolute;
    top: 65%;
    left: 72%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-family: "Londrina Outline", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: rgba(33, 33, 33, 0.16);
    z-index: 1;
    white-space: nowrap;
    pointer-events: none;
  }
  .client-reviews h2 {
    font-size: 28px;
  }

  .background-text-review {
    font-size: 30px;
    top: 50%;
    left: 71%;
  }

  .carousel-nav {
    width: 25px;
    height: 25px;
    font-size: 16px;
    padding: 8px;
  }
  .background-text-client {
    position: absolute;
    top: 72%;
    left: 55%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    font-family: "Londrina Outline", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: rgba(33, 33, 33, 0.095);
    z-index: 1;
    white-space: nowrap;
    pointer-events: none;
  }
  .client-title {
    font-size: 30px;
    font-family: "Signika", sans-serif;
    font-weight: 700;
    position: relative;
    z-index: 2;
    margin-left: 10px;
    margin-bottom: 30px;
  }
}
/* ====================================================== */
@media screen and (max-width: 728px) {
  .aboutUs h1 {
    font-size: 28px;
  }

  .aboutUs h3 {
    font-size: 24px;
  }

  .aboutUs p {
    font-size: 13px;
  }
}
/* ====================================================== */
@media screen and (max-width: 768px) {
  nav {
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }

  .logo-container {
    padding-right: 0;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
    align-items: center;
    margin-top: 60px;
  }

  .nav-links li {
    width: 100%;
    border-right: none;
    padding: 10px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 15px 0;
    box-sizing: border-box;
    position: relative;
  }

  .social-icons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
    gap: 10px;
    padding: 0 10px;
  }

  .social-icons a {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .menu-toggle {
    display: flex;
  }
  .core-ideals {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .values {
    text-align: center;
  }
  .background-text {
    opacity: 0;
  }
  .services {
    background-attachment: scroll !important;
    padding: 20px 15px;
  }

  .services h2,
  .services p,
  .services .cta-button {
    margin-bottom: 15px;
  }

  .txt-underline-service-section {
    margin-bottom: 10px;
  }

  .cta-button {
    margin-bottom: 15px;
  }

  .service-card {
    margin-bottom: 15px;
  }
  .services {
    background-attachment: scroll !important;
    padding: 20px 15px;
  }

  .services h2,
  .services p,
  .services .cta-button {
    margin-bottom: 15px;
  }

  .txt-underline-service-section {
    margin-bottom: 10px;
  }

  .cta-button {
    margin-bottom: 15px;
  }

  .service-card {
    margin-bottom: 15px;
    width: 100%;
    max-width: 300px;
  }
  .background-text-portofolio {
    font-size: 36px;
    top: 12%;
    left: 50%;
  }
  #carousel-container {
    flex-direction: column;
  }
  #content {
    gap: 20px;
  }
  #button-container {
    gap: 45px;
    margin-top: 20px;
  }

  .item-container {
    width: 160px;
  }

  .item {
    width: 170px;
    height: 150px;
  }

  #carousel-text h2 {
    font-size: 24px;
  }

  #carousel-text p {
    font-size: 14px;
  }
  #news {
    margin-left: 25px;
  }
  .news-title {
    font-size: 2rem;
  }
  .news-card,
  .featured-card,
  .second-card {
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .news-card img,
  .featured-card img,
  .second-card img {
    height: auto;
    object-fit: contain;
  }

  .row {
    margin-left: 0;
    margin-right: 0;
    justify-content: center;
  }

  .col-lg-8,
  .col-lg-4 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-left: 10px;
    padding-right: 0;
    width: 100%;
    max-width: 100%;
  }
  .carousel-wrapper {
    padding: 0 15px;
  }

  .review-card {
    max-width: 100%;
    flex: 1 1 100%;
    
  }

  .carousel-nav {
    width: 30px;
    height: 30px;
    font-size: 18px;
    padding: 8px;
  }
  .contact-section {
    padding: 30px 15px;
  }

  .contact-form-container {
    padding: 20px 25px;
    max-width: 90%;
  }

  .contact-form-container h2 {
    font-size: 24px;
  }

  .form-group label {
    font-size: 13px;
  }

  .form-group input,
  .form-group textarea {
    font-size: 12px;
  }

  .form-group button {
    font-size: 13px;
    padding: 10px;
  }
  .footer-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
  }

  .footer-links ul li a {
    font-size: 13px;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}
/* ====================================================== */
@media (max-width: 812px) and (orientation: landscape) {
  nav {
    padding: 10px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }

  .logo-container img {
    height: 50px;
    width: 50px;
  }

  .nav-links {
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    margin-top: 0;
    padding: 10px 0;
  }

  .nav-links li {
    margin: 0 10px;
    padding-right: 10px;
  }

  .nav-links a {
    font-size: 18px;
    padding: 8px 10px;
  }

  .social-icons {
    flex-direction: row;
    margin-top: 0;
    justify-content: flex-end;
  }
}
/* ====================================================== */
@media screen and (max-width: 811px) {
  .value-title {
    font-size: 28px;
    font-family: "Signika", sans-serif;
    font-weight: 800;
    z-index: 2;
    text-align: center;
    margin-top: 20px;
    margin-left: -20px;
  }
  .services {
    background-attachment: scroll !important;
    padding: 20px 15px;
  }
  .txt-header-title-section {
    font-size: 28px;
  }
  .txt-underline-service {
    font-size: 28px;
  }
  .services h2,
  .services p,
  .services .cta-button {
    margin-bottom: 15px;
  }

  .txt-underline-service-section {
    margin-bottom: 10px;
  }

  .cta-button {
    margin-bottom: 15px;
  }

  .service-card {
    margin-bottom: 15px;
    width: 100%;
    max-width: 300px;
  }
}
/* ====================================================== */
@media screen and (max-width: 812px) {
  nav {
    padding: 10px 20px;
  }
  .logo-container {
    display: flex;
    align-items: center;
    padding-right: 5px;
  }
  .nav-links li {
    margin: 0px;
  }
  .nav-links li {
    padding-right: 0px;
  }
}
/* ====================================================== */
@media (max-width: 1080px) {
  .client-reviews {
    padding: 40px 0;
    min-height: 700px;
  }

  .testimonial {
    margin: auto;
  }

  .review-card {
    max-width: 280px;
  }

  .carousel-nav {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
}

/* ====================================================== */
@media (min-width: 1200px) {
  #button-container {
    gap: 60px;
  }
  .background-text-portofolio {
    font-size: 48px;
    top: 14%;
    left: 55%;
  }
}
/* ====================================================== */
@media (orientation: landscape) and (max-width: 1200px) {
  nav {
    padding: 10px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    z-index: 1000;
  }

  .logo-container {
    padding-right: 50px;
  }

  .nav-links {
    flex-direction: row;
    position: static;
    width: auto;
    overflow: visible;
  }

  .nav-links li {
    margin: 0 10px;
    padding-right: 10px;
  }

  .nav-links a {
    font-size: 18px;
    padding: 8px 10px;
  }

  .social-icons {
    flex-direction: row;
    justify-content: flex-end;
    gap: 10px;
    width: auto;
  }

  .menu-toggle {
    display: none;
  }
  .aboutUs {
    background-image: url(../img/aboutus.svg);
    padding: 40px 0px;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
    background-size: cover;
    background-position: center;
  }

  .aboutUsImg {
    width: 80%;
    height: auto;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1s ease-out, transform 1s ease-out;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  .background-text-aboutUs {
    padding-top: 110px;
    margin-left: 170px;
    position: absolute;
    transform: translate(-50%, -50%);
    font-size: 50px;
    font-family: "Londrina Outline", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: rgba(33, 33, 33, 0.1);
    z-index: 0;
    white-space: nowrap;
    pointer-events: none;
    animation: fadeIn 0.5s ease-in-out forwards;
  }
  .aboutUs h2 {
    font-size: 58px;
    font-family: "Signika", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin: 20px 0;
    margin-left: 20px;
    text-align: left;
  }

  .aboutUs h3 {
    font-size: 30px;
    font-family: "Signika", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    margin: 20px 0 20px 0;
    text-align: left;
  }

  .aboutUs p {
    font-size: 18px;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 420;
    font-style: normal;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 2;
    padding: 5px;
    border-radius: 8px;
  }
  .value-title {
    margin-left: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .background-text-ideals {
    top: 45%;
    left: 68%;
  }
  .core-ideals {
    flex-direction: row;
    margin: 80px;
    align-items: center;
    text-align: center;
  }

  .vision-mission .section {
    max-width: 280px;
    padding: 15px;
  }

  .section h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .section p {
    font-size: 14px;
    line-height: 1.4;
  }

  .values h1 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .values ul {
    font-size: 18px;
  }

  .values ul li::before {
    font-size: 20px;
  }
  .value-means {
    background-color: transparent;
  }
  .services {
    padding: 60px 0;
  }

  .service-card {
    margin-bottom: 20px;
    width: 90%;
    max-width: 300px;
    min-height: 80%;
  }

  .txt-underline-service {
    font-size: 42px;
  }

  .txt-header-title {
    font-size: 32px;
  }

  .txt-header-title-section {
    font-size: 50px;
  }

  .text-paragraph {
    font-size: 16px;
  }
  .background-text-portofolio {
    font-size: 30px;
    top: 10%;
    left: 17%;
  }
  section.cours {
    flex-direction: row;
    margin-top: 80px;
    height: auto;
    align-items: flex-start;
    padding: 0 1rem;
  }

  #carousel-container {
    flex-direction: row;
    overflow-x: auto;
    width: 100%;
  }

  #content {
    flex-wrap: nowrap;
    gap: 16px;
  }

  .item-container {
    width: 200px;
  }

  .item {
    width: 200px;
    height: 155px;
  }

  #carousel-text {
    margin-top: 10px;
    text-align: left;
    padding: 0 1rem;
  }

  #carousel-text h2 {
    font-size: 28px;
  }

  #carousel-text p {
    font-size: 16px;
  }

  #button-container {
    gap: 30px;
    margin-top: 10px;
  }
  .row {
    margin: 0 0 10px 0;
  }
  .news-card {
    margin: 10px auto;
    width: calc(100% - 20px);
  }
  .news-card img {
    height: 200px;
    display: block;
  }
  .background-text-client {
    position: absolute;
    top: 72%;
    left: 59%;
    transform: translate(-50%, -50%);
    font-size: 55px;
    font-family: "Londrina Outline", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: rgba(33, 33, 33, 0.095);
    z-index: 1;
    white-space: nowrap;
    pointer-events: none;
  }
}
/* ====================================================== */
@media (max-width: 1200px) {
  .carousel-wrapper {
    padding: 0 20px;
    overflow: visible;
  }
  .client-title {
    margin-left: 80px;
    font-size: 45px;
  }
  .background-text-client {
    font-size: 100px;
    left: 75%;
  }
  .background-text {
    font-size: 100px;
  }
  .background-text-aboutUs {
    padding-top: 100px;
    margin-left: 200px;
    font-size: 54px;
  }
}
/* ====================================================== */
@media screen and (max-width: 992px) {
  .aboutUs {
    padding: 60px 15px;
  }

  .aboutUs h2 {
    font-size: 28px;
    text-align: left;
    margin-left: 20px;
  }

  .aboutUs h3 {
    font-size: 24px;
  }

  .aboutUs p {
    font-size: 16px;
    padding: 15px;
  }
  .client-title {
    margin-left: 0px;
    font-size: 40px;
  }
  .background-text-client {
    font-size: 90px;
    left: 70%;
  }
  .background-text {
    font-size: 90px;
  }
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0px 20px 20px 20px;
  }

  .footer-left {
    margin-bottom: 15px;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
}
/* ====================================================== */
@media (max-width: 809px) {
  .aboutUs h2 {
    font-size: 38px;
    font-family: "Signika", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin: 0px 0;
    margin-left: 0px;
    text-align: left;
    margin-bottom: 10px;
  }
  .background-text-aboutUs {
    top: -2%;
    left: 13%;
    position: absolute;
    transform: translate(-50%, -50%);
    font-size: 50px;
    font-family: "Londrina Outline", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: rgba(33, 33, 33, 0.1);
    z-index: 0;
    white-space: nowrap;
    pointer-events: none;
    animation: fadeIn 0.5s ease-in-out forwards;
  }

  .aboutUs h3 {
    padding-top: 20px;
    font-size: 30px;
    font-family: "Signika", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    margin: 0px 0 20px 0;
    text-align: left;
  }

  .aboutUs p {
    font-size: 12px;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 420;
    font-style: normal;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 2;
    padding: 5px;
    border-radius: 8px;
  }
  .background-text-ideals {
    position: absolute;
    top: 26%;
    left: 68%;
    transform: translate(-50%, -50%);
    font-size: 32px;
    font-family: "Londrina Outline", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: rgba(33, 33, 33, 0.19);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
  }
  .background-text-client {
    position: absolute;
    top: 60%;
    left: 72%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    font-family: "Londrina Outline", sans-serif;
    font-weight: 500;
    font-style: normal;
    color: rgba(33, 33, 33, 0.2);
    z-index: 1;
    white-space: nowrap;
    pointer-events: none;
  }
}
/* ====================================================== */
@media (max-width: 854px) {
  .news-card {
    margin-left: 0;
    margin-right: 0;
    width: calc(100% - 20px);
  }
}
