:root { 
  /* Theme Color */
  --main-color: #2B3D3B;
  --second-color: #920C0F;
  --third-color: #DC2A26;

  /* Fonts */
  --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Open Sans",  sans-serif;
  --nav-font: "Open Sans",  sans-serif;

  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #555555;
  --accent-color: #DC2A26;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;

  scroll-behavior: smooth;
}

/* Theme Background */
.accent-background {
  --background-color: var(--main-color);
  --default-color: #ffffff;
}

.second-accent-background {
  --background-color: var(--second-color);
  --default-color: #ffffff;
}

.third-accent-background {
  --background-color: var(--third-color);
  --default-color: #ffffff;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  overflow-x: hidden;
}

.main {
  overflow-x: hidden;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.fade {
  opacity: 0;
  transition: opacity 0.4s ease;
}
  
  .fade.show {
    opacity: 1;
  }

.custom-select {
  position: relative;
  width: 150px;
  user-select: none;
}

.select-selected {
  background-color: white;
  border: 2px solid var(--accent-color);
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
}

  .select-selected:hover {
    border-color: var(--accent-color);
    background-color: #fcf7f7;
  }

  .select-selected:after {
    content: "▼";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--accent-color);;
    transition: transform 0.3s ease;
  }

  .select-selected.select-arrow-active:after {
    transform: translateY(-50%) rotate(180deg);
  }

.select-items {
  position: absolute;
  background-color: white;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  z-index: 99;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all 0.3s ease;
}

  .select-items.select-show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .select-items div {
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    transition: background-color 0.2s ease;
  }

  .select-items div:hover {
    background-color: #fcf7f7;
  }

  .select-items div.same-as-selected {
    background-color: var(--accent-color);
    color: white;
  }

.cta-floating-wrapper {
  position: relative;
  z-index: 100;
  margin-top: -56px;
  margin-bottom: 80px;
}

.cta-floating-wrapper.float {
  margin-top: -100px;
  margin-bottom: -45px;
}

.air-sheet-metal .data-container {
  display: flex;
  border: 3px solid var(--second-color);
  border-radius: 25px;
}

.air-sheet-metal .left,
.air-sheet-metal .right {
  padding: 20px;
  border-radius: 20px;
  line-height: normal;
}

.air-sheet-metal .left {
  background: var(--second-color);
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  width: 100%;
  max-width: 600px;
  flex: 1 1 300px;
  min-width: 300px;
}

.air-sheet-metal .right{
  color: var(--main-color);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  font-size: 25px;
  font-weight: 400;
  width: 100%;
  max-width: 1000px;
  flex: 1 1 400px;
  min-width: 400px;
}

.item-icon {
  background: var(--third-color);
  border-radius: 100%;
  padding: 30px;
  height: 160px;
}

.item-icon img {
  width: 100px;
  height: 100px;
}

@media (max-width: 1600px) {
  .air-sheet-metal .left,
  .air-sheet-metal .right {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 1199px) {
  .cta-floating-wrapper {
    margin-top: -55px;
  }

  .cta-floating-wrapper.red {
    margin-bottom: -70px;
  }

  .air-sheet-metal .left {
    font-size: 30px;
  }

  .air-sheet-metal .right {
    font-size: 25px;
  }

  .item-icon img {
    width: 150px;
    height: 150px;
  }

  .item-icon {
    padding: 40px;
    height: 230px;
  }
}

@media (max-width: 768px) {
  .cta-floating-wrapper {
    margin-top: -50px;
  }

  .cta-floating-wrapper.red {
    margin-bottom: -64px;
  }

  .air-sheet-metal .left {
    font-size: 25px;
  }

  .air-sheet-metal .right {
    font-size: 18px;
  }

  .item-icon img {
    width: 100px;
    height: 100px;
  }

  .item-icon {
    height: 180px;
  }
}

@media (max-width: 575px) {
  .cta-floating-wrapper {
    margin-top: -50px;
  }

  .air-sheet-metal .left {
    font-size: 20px;
    min-width: unset;
  }

  .air-sheet-metal .right {
    font-size: 14px;
    min-width: unset;
  }

  .air-sheet-metal .data-container {
    border-radius: 15px;
  }

  .air-sheet-metal .left,
  .air-sheet-metal .right {
    padding: 15px;
    border-radius: 10px;
  }

  .container,
  .container-fluid,
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm {
    --bs-gutter-x: 3.5rem;
  }
}


/*--------------------------------------------------------------
# Flag Icon Styling
--------------------------------------------------------------*/
.fi {
  width: 24px;
  height: 18px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

/*--------------------------------------------------------------
# PHP Email Form Messages
--------------------------------------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .topbar {
  background-color: var(--main-color);
  color: var(--contrast-color);
  font-weight: bold;
  padding: 8px 0px;
  transition: all 0.5s;
}

.header .topbar h2 {
  color: var(--contrast-color);
  font-weight: bold;
  margin-bottom: 0;
}

.header .branding {
  min-height: 60px;
  padding: 10px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 50px;
  margin-right: 8px;
}

.header .lang-switcher {
  padding: 6px 12px;
  border-radius: 4px;
  border-color: var(--accent-color);
}

@media screen and (max-width: 768px) {
  .header .topbar {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 120px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 100px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2,
.section-title.white h2  {
  font-weight: 900;
  background: linear-gradient(90deg, var(--second-color), var(--third-color));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient 3s ease infinite;
  position: relative;
  padding-bottom: 20px;
  letter-spacing: 2px;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.section-title.white h2 {
  background: linear-gradient(90deg, #fff, var(--third-color));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
}

.section-title h2::after,
.section-title.white h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background: linear-gradient(90deg, var(--second-color), var(--third-color), #feca57);
  border-radius: 2px;
}

.section-title.white h2::after {
  background: linear-gradient(90deg, #fff, var(--third-color));
}

.section-title h5 {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
}

.section-title p {
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .section-title h5 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Title Section
--------------------------------------------------------------*/
.title.section {
  padding-top: 0;
  padding-bottom: 30px;
  margin-top: 30px;
}

.title h1 {
  color: var(--third-color);
  font-weight: bold;
  text-shadow: 2px 1px 3px #b7b7b7;
}

.title h4,
.title h5 {
  color: #000;
  text-shadow: 2px 1px 3px #b7b7b7;
}

.title h5 {
  font-style: italic;
}

.title .logo {
  width: 250px;
  margin-bottom: 30px;
  filter: drop-shadow(2px 1px 3px #b7b7b7);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

#hero-carousel-1 {
  height: auto;
}

.hero .carousel {
  width: 100%;
  min-height: 1080px;
  padding: 0;
  margin: 0;
  position: relative;
  color: #000;
}

.hero .hero-banner{
  width: 1920px;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero .hero-video {
  position: absolute;
  width: 1920px;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* WRAPPER – area hover BESAR untuk icon + slider */
.volume-wrapper {
  position: absolute;
  left: 70px;
  bottom: 18px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  cursor: pointer;
  z-index: 9999;
  background: #c03f3f7d;
  padding: 2px 6px;
  border-radius: 10px;
}

.volume-wrapper:hover {
  background: #c03f3f;
}

/* ICON */
#volumeIcon {
  font-size: 24px;
  color: white;
  z-index: 10;
}

/* SLIDER CONTAINER */
/* .slider-container {
  position: absolute;
  bottom: 82px;
  display: flex;
  justify-content: center;
  padding: 10px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 10;
} */

/* MUNCUL saat hover di wrapper ATAU slider */
/* .volume-wrapper:hover .slider-container,
.slider-container:hover {
  opacity: 1;
  pointer-events: auto;
} */

/* SLIDER VERTICAL */
/* #volumeSlider {
  appearance: none;
  width: 120px;
  height: 6px;
  transform: rotate(-90deg);
  background: #c03f3f;
  border-radius: 5px;
}

#volumeSlider::-webkit-slider-runnable-track {
  height: 6px;
  background: #c03f3f;
  border-radius: 3px;
}

#volumeSlider::-webkit-slider-thumb {
  appearance: none;
  width: 16px;
  height: 16px;
  background: #c03f3f;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -5px;
} */

.playpause-wrapper {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 10000;
  pointer-events: auto;
}

.playpause-btn {
  font-size: 24px;
  background: #c03f3f7d;
  color: white;
  padding: 4px 6px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.25s;
}

.playpause-btn:hover {
  background: #c03f3f;
}

.hero img.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  mask-image: linear-gradient(to right, transparent 0%, black 20%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 20%);
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background: #ffffff;
  display: flex;
  justify-content: center;
}

.hero .carousel.img .carousel-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, 
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.85) 30%,
    rgba(255, 255, 255, 0.3) 60%,
    transparent 70%
  );
  z-index: 2;
}

.hero .container {
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 50px;
  z-index: 3;
}

.hero h2 {
  font-size: 75px;
  font-weight: 700;
  color: var(--third-color);
  line-height: 106%;
}

.hero h4 {
  font-size: 32px;
  color: #000;
}

.hero h5 {
  font-size: 22px;
  color: #000;
  font-style: italic;
}

.hero .logo {
  position: unset;
  width: 250px;
  margin: 10px 0 40px 0;
}

.hero label {
  font-weight: bold;
  color: var(--third-color);
}

.hero .carousel-control-prev {
  justify-content: start;
}

.hero .carousel-control-next {
  justify-content: end;
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 50px;
  color: var(--contrast-color);
  transition: 0.3s;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  transition: 0.3s;
  opacity: 0.5;
  pointer-events: none;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

.hero .carousel-control-next .carousel-control-next-icon,
.hero .carousel-control-prev .carousel-control-prev-icon {
  pointer-events: auto;
}

.hero .carousel-control-prev:hover .carousel-control-next-icon,
.hero .carousel-control-prev:hover .carousel-control-prev-icon,
.hero .carousel-control-next:hover .carousel-control-next-icon,
.hero .carousel-control-next:hover .carousel-control-prev-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.hero .carousel-indicators li {
  cursor: pointer;
  background: var(--contrast-color);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 1;
  transition: 0.3s;
}

.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--accent-color);
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }

  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

@media (max-width: 1920px) { 
  .hero .carousel {
    min-height: 800px;
  }

  .hero .hero-video {
    width: 1400px;
  }

  .hero .hero-banner {
    width: 1400px;
  }
}

@media (max-width: 1399px) {
  .hero .carousel {
    min-height: 676px;
  }

  .hero .hero-video {
    width: 1200px;
  }

  .hero .hero-banner {
    width: 1200px;
  }

  .header .topbar {
    font-size: 30px;
  }

  .hero h4 {
    font-size: 27px;
  }

  .hero h2 {
    font-size: 55px;
  }

  .hero h5 {
    font-size: 22px;
  }
}

@media (max-width: 1199px) {
  .hero .container {
    margin-left: 10px;
    margin-right: 10px;
  }

  .hero .carousel {
    min-height: 558px;
  }

  .hero .hero-video {
    width: 992px;
  }

  .hero .hero-banner {
    width: 992px;
  }

  .header .topbar {
    font-size: 25px;
  }

  .hero .logo {
    width: 400px;
  }

  .hero .content {
    width: 600px;
  }

  .hero h4 {
    font-size: 22px;
  }

  .hero h2 {
    font-size: 50px;
  }

  .hero h5 {
    font-size: 19px;
  }
}

@media (max-width: 991px) {
  .hero .carousel {
    min-height: 432px;
  }

  .hero .hero-video {
    width: 768px;
  }

  .hero .hero-banner {
    width: 768px;
  }

  .header .topbar {
        font-size: 18px;
    }

  .hero .logo {
    width: 300px;
  }

  .hero .content {
    width: 400px;
  }

  .hero h4 {
    font-size: 16px;
  }

  .hero h2 {
    font-size: 35px;
  }

  .hero h5 {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .header .topbar {
      font-size: 14px;
  }

  .hero .carousel {
    min-height: 325px;
  }

  .hero .carousel.img .carousel-item::before {
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.85) 30%, rgba(255, 255, 255, 0.3) 100%, transparent 100%);
  }

  .hero .hero-video {
    width: 576px;
  }

  .hero .hero-banner {
    width: 576px;
  }

  .hero .logo {
    width: 200px;
    margin-top: 0;
    margin-bottom: 20px;
  }

  .hero .content {
    width: 350px;
  }

  .hero h4 {
    font-size: 14px;
  }

  .hero h2 {
    font-size: 30px;
  }

  .hero h5 {
    font-size: 12px;
  }
}

@media (max-width: 575px) {
  .hero .carousel.img {
    min-height: 500px;
  }

  .header .topbar {
    font-size: 16px;
  }

  .hero .carousel {
    min-height: 211px;
  }

  .hero .hero-video {
    width: 425px;
  }

  .hero .hero-banner {
    width: 375px;
  }

  .hero h4 {
    font-size: 20px;
  }

  .hero h2 {
    font-size: 30px;
  }

  .hero h5 {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-weight: 500;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 4px;
  transition: 0.3s;
  margin: 10px;
  background: #82c316;
  color: #FFF;
  border-radius: 25px;
  box-shadow: 2px 3px 3px #00000091;
}

.call-to-action .cta-btn.dark-bg {
  box-shadow: 2px 3px 3px #363636;
}

.call-to-action .cta-btn:hover {
  scale: 1.1;
}

.call-to-action.red .cta-btn {
  background: var(--third-color);
}

.call-to-action.dark-red .cta-btn {
  background: var(--second-color);
}

.call-to-action .cta-btn div:first-child {
  font-size: 25px;
  font-weight: bold;
  line-height: normal;
}

.call-to-action .cta-btn div:last-child {
  font-size: 17px;
  line-height: normal;
}

.call-to-action .cta-btn hr {
  color:#FFF;
  margin: 5px 0;
  border-top: 3px solid;
  opacity: 1;
}

.call-to-action img {
  width: 250px;
}

.call-to-action .logo-img {
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.call-to-action .logo-content {
  font-size: 20px;
  font-weight: 600;
  color: var(--second-color);
  line-height: normal;
  text-transform: uppercase;
}

.call-to-action h2 {
    font-weight: bold;
    text-transform: uppercase;
    color: var(--second-color);
    margin-bottom: 20px;
}

.call-to-action h4 {
    font-weight: 600;
    color: var(--main-color);
}

.call-to-action .mission-badge {
  position: relative;
  margin: 60px auto;
  padding: 0 15px;
}

.call-to-action .badge-label {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--second-color);
  color: white;
  padding: 10px 30px;
  border-radius: 15px;
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(139, 21, 56, 0.3);
  z-index: 2;
  white-space: nowrap;
}

.call-to-action .badge-content {
  border: 2.5px solid var(--second-color);
  border-radius: 20px;
  padding: 35px 25px 25px 25px;
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.call-to-action .badge-content p {
  color: var(--second-color);
  font-size: 32px;
  font-weight: bold;
  margin: 0;
  text-align: center;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .call-to-action .badge-label,
  .call-to-action .badge-content p {
    font-size: 23px;
  }

  .call-to-action .badge-label {
    top: -30px;
  }

  .call-to-action .logo-content {
    font-size: 20px;
  }

  .call-to-action img {
    width: 200px;
  }
  
  .call-to-action .badge-content {
    padding: 30px 20px 20px 20px;
  }

  .call-to-action .cta-btn div:first-child {
    font-size: 20px;
  }

  .call-to-action .cta-btn div:last-child {
    font-size: 15px;
  }

  .call-to-action h5 {
    font-size: 27px;
  }
}

/*--------------------------------------------------------------
# Program Section
--------------------------------------------------------------*/
.program.section {
  padding-bottom: 0;
  padding-top: 0;
}

.program .program-back {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.program .program-back::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/assets/img/hero-carousel/second-banner.png') top/cover;
  z-index: 1;
}

.program .program-back::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, 
      #DC2A26 0%,
      rgba(220, 42, 38, 0.95) 30%,
      rgba(220, 42, 38, 0.7) 50%,
      rgba(220, 42, 38, 0.3) 70%,
      rgba(220, 42, 38, 0) 100%
  );
  z-index: 2;
}

.program .program-banner {
  position: relative;
  z-index: 2;
  width: 580px;
}

.program .content-container {
  position: relative;
  z-index: 3;
  margin-top: 0;
}

.program .content-container img {
  width: 100%;
  margin-top: 20px;
  filter: drop-shadow(2px 4px 6px black);
}

.program .content-container h5 {
  font-size: 30px;
  color: #fff;
  filter: drop-shadow(2px 4px 6px black);
}

.program .content-container h2 {
  font-size: 50px;
  color: #fff;
  text-transform: uppercase;
  filter: drop-shadow(2px 4px 6px black);
}

.program .badge {
  font-size: 25px;
  font-weight: 600;
  padding: 15px 30px;
  background: var(--second-color);
  border-radius: 32px;
}

.program-badge .item-content {
  font-size: 25px;
  font-weight: 600;
  line-height: normal;
}

@media (max-width: 1199px) {
  .program .program-banner {
    width: 458px;
  }

  .program .badge {
    font-size: 20px;
  }

  .program .content-container h5 {
    font-size: 20px;
  }

  .program .content-container h2 {
    font-size: 42px;
  }

  .program-badge .item-content {
    font-size: 20px;
  }

  .program .program-back {
    height: 600px;
  }
}

@media (max-width: 768px) {
  .program .program-bg {
    padding-top: 50px;
  }

  .program .program-banner {
    width: 400px;
  }

  .program .badge {
    font-size: 18px;
  }

  .program .content-container h5 {
    font-size: 18px;
  }

  .program .content-container h2 {
    font-size: 32px;
  }

  .program-badge.section {
    padding: 50px 0 30px 0;
  }

  .program-badge .item-content {
    font-size: 18px;
  }

  .program-badge img {
    width: 30px;
  }
}

@media (max-width: 575px) {
  .program-badge.section {
    padding: 50px 0 15px 0;
  }

  .program .content-container {
    margin-bottom: 15px;
    margin-top: 30px;
    text-align: center;
  }

  .program-badge .item-content {
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats.section {
  padding-bottom: 100px;
}

.stats .item-number {
  font-weight: bold;
  font-size: 100px;
}

.stats .item-content {
  font-size: 30px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .stats .item-number {
    font-size: 70px;
  }

  .stats .item-content {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Registration Section
--------------------------------------------------------------*/
.registration .form-block {
  border: 3px solid #e7e7e7;
  border-radius: 40px;
  padding: 30px 60px;
}

.registration .regis-tag {
  font-size: 20px;
  font-weight: 600;
  color: var(--main-color);
}

.registration .regis-tag.check-box {
  display: flex;
  gap: 10px;
  color: var(--third-color);
  font-style: italic;
  align-items: center;
}

.registration .php-email-form {
  width: 100%;
}

.registration .php-email-form .form-group {
  padding-bottom: 30px;
}

.registration .php-email-form input,
.registration .php-email-form textarea,
.registration .php-email-form select {
  color: var(--main-color);
  background-color: #fff;
  border: 3px solid #CCCACA;
  border-radius: 15px;
  box-shadow: none;
  font-size: 15px;
  padding: 10px !important;
}

.registration .php-email-form input:focus,
.registration .php-email-form textarea:focus,
.registration .php-email-form select:focus {
  border-color: var(--accent-color);
}

.registration .php-email-form input::placeholder,
.registration .php-email-form textarea::placeholder,
.registration .php-email-form select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.registration .php-email-form input,
.registration .php-email-form select {
  height: 50px;
}

.registration .php-email-form select {
  width: 100%;
}

.registration .php-email-form select:has(option[value=""]:checked) {
  color: #c6c6c6;
}
 .registration .php-email-form select option {
  color: var(--main-color);
}

.registration .php-email-form textarea {
  padding: 10px 12px;
}

.registration .php-email-form button[type=submit] {
  background: var(--accent-color);
  font-size: 20px;
  font-weight: 600;
  border: 0;
  padding: 10px;
  color: #fff;
  transition: 0.4s;
  border-radius: 20px;
  width: 300px;
  line-height: normal;
}

.registration .php-email-form button[type=submit]:hover {
  background: var(--main-color);
}

@media (max-width: 768px) {
  .registration .php-email-form .form-group {
    padding-bottom: 15px;
  }

  .registration .php-email-form button[type=submit] {
    margin-top: 15px;
  }

  .registration .regis-tag.check-box {
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .registration .form-block {
    padding: 30px 30px;
  }
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials h2 {
  font-weight: 600;
  color: #fff;
  font-style: italic;
}

.testimonials h3 {
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
}

.testimonials .testimonial-badge {
  padding: 10px 30px;
  border-radius: 40px;
  border: 3px solid #fff;
  justify-self: center;
}

.testimonials .testimonial-item {
  color: var(--main-color);
  background: #fff;
  border-radius: 25px;
  font-size: 20px;
  line-height: normal;
  box-sizing: content-box;
  margin-bottom: 25px;
  gap: 30px
}

.testimonials .testimonial-item .item-content {
  padding: 30px 30px 30px 0;
}

.testimonials .testimonial-item .item-content .name {
  font-size: 25px;
  font-weight: bold;
  color: var(--second-color);
  margin-bottom: 15px;
}

.testimonials .call-to-action {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  z-index: 10;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid var(--background-color);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1199px) {
  .testimonials .testimonial-item img {
    width: 250px;
    height: 250px;
  }

  .testimonials .testimonial-item .item-content {
    padding: 10px 15px 10px 0;
  }

  .testimonials .testimonial-item .item-content .name {
    font-size: 20px;
  }

  .testimonials .testimonial-item .item-content .content {
    font-size: 17px;
  }

  .testimonials .testimonial-item {
    gap: 10px
  }
}

@media (max-width: 768px) {
  .testimonials .testimonial-item img {
    width: 200px;
    height: 200px;
  }

  .testimonials h5 {
    font-size: 32px;
  }
}

@media (max-width: 575px) {
  .testimonials .testimonial-item .item-content {
    padding: 5px 5px 5px 0;
  }

  .testimonials .testimonial-item img {
    width: 100px;
    height: 100px;
  }

  .testimonials .testimonial-item .item-content .name {
    font-size: 12px;
    margin-bottom: 2px;
  }

  .testimonials .testimonial-item .item-content .content {
    font-size: 10px;
  }
}

/*--------------------------------------------------------------
# Career Prospect Section
--------------------------------------------------------------*/
.career-badge .arrow-path {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.career-badge .arrow-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px 40px 20px 20px;
  color: white;
  font-weight: bold;
  font-size: 15px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%, 30px 50%);
  overflow: hidden;
  min-height: 300px;
}

.career-badge .arrow-item .arrow-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.3s ease;
}

.career-badge .arrow-item:hover .arrow-bg {
  transform: scale(1.05);
}

.career-badge .arrow-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  transition: background 0.3s ease;
}

.career-badge .arrow-item:hover::before {
  background: rgba(0, 0, 0, 0.3);
}

.career-badge .arrow-item .title {
  position: relative;
  z-index: 3;
  font-size: 37px;
  line-height: 1.3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.career-badge .arrow-item:first-child {
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 50%, calc(100% - 30px) 100%, 0 100%);
  padding-left: 30px;
}

.career-badge .arrow-item:last-child {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 30px 50%);
  padding-right: 30px;
}

.career-badge .arrow-item.main-accent::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--main-color);
  opacity: 0.3;
  z-index: 2;
}

.career-badge .arrow-item.second-accent::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--second-color);
  opacity: 0.3;
  z-index: 2;
}

.career-badge .arrow-item.third-accent::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--third-color);
  opacity: 0.3;
  z-index: 2;
}

.career-badge .arrow-item.main-accent {
  z-index: 3;
}

.career-badge .arrow-item.second-accent {
  z-index: 2;
  margin-left: -30px;
}

.career-badge .arrow-item.third-accent {
  z-index: 1;
  margin-left: -30px;
}

@media (max-width: 768px) {
  .career-badge .arrow-path {
    flex-direction: column;
    gap: 15px;
  }

  .career-badge .arrow-item {
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    padding: 20px 30px;
    margin-left: 0 !important;
    min-height: 200px;
  }

  .career-badge .arrow-item:first-child,
  .career-badge .arrow-item:last-child {
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  }

  .career-badge .arrow-item .title {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Benefit Section
--------------------------------------------------------------*/
.benefit .item-content {
  font-size: 25px;
  margin-top: 20px;
  color: var(--second-color);
}

.benefit-badge.section {
  padding: 12px 0;
}

.benefit-badge .item-badge {
  font-size: 25px;
  color: #fff;
  font-style: italic;
}

@media (max-width: 1199px) {
  .benefit .item-content {
    font-size: 25px;
  }

  .benefit-badge .item-badge {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .benefit .item-content {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .benefit-badge .item-badge {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Course Section
--------------------------------------------------------------*/
.course .course-container .course-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 6px 2px 5px #ccc;
}

.course .course-container .course-item:last-child {
  margin-bottom: 0;
}

.course .course-container .course-item h3 {
  font-weight: 600;
  font-size: 25px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #000;
}

.course .course-container .course-item h3:hover {
  color: var(--main-color);
}

.course .course-container .course-item .course-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.course .course-container .course-item .course-content p {
  margin-bottom: 0;
  overflow: hidden;
  color: #000;
  font-size: 20px;
}

.course .course-container .course-item .course-toggle {
  position: absolute;
  top: 25px;
  right: 20px;
  font-size: 25px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
  color: var(--main-color);
}

.course .course-container .course-item .course-toggle:hover {
  color: var(--main-color);
}

.course .course-container .course-active {
  border-color: var(--main-color);
}

.course .course-container .course-active h3 {
  color: var(--main-color);
}

.course .course-container .course-active .course-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.course .course-container .course-active .course-toggle {
  transform: rotate(180deg);
  color: var(--main-color);
}

@media (max-width: 768px) {
  .course .course-container .course-item h3 {
    font-size: 20px;
  }

  .course .course-container .course-item .course-content p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Mentors Section
--------------------------------------------------------------*/
.mentor .item-content {
  font-size: 25px;
  font-weight: 600;
  color: #000;
  line-height: normal;
}

.mentor img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .mentor .item-content {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Our Partners Section
--------------------------------------------------------------*/
.partner img {
  width: 100%;
  height: auto;
}

/*--------------------------------------------------------------
# Success Story Section
--------------------------------------------------------------*/
.story {
  color: #fff;
}

.story.section {
  padding-bottom: 120px;
}

.story .item-name {
  font-weight: bold;
  font-size: 25px;
  margin-top: 20px;
  margin-bottom: 5px;
}

.story .item-content {
  font-size: 20px;
}

.story img {
  width: 100%;
  height: auto;
}

@media (max-width: 1199px) {
  .story.section {
    padding-bottom: 170px;
  }

  .story .item-name {
    font-size: 21px;
  }

  .story .item-content {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .story.section {
    padding-bottom: 240px;
  }

  .story .item-name {
    font-size: 15px;
  }

  .story .item-content {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Our Entry Requirements Section
--------------------------------------------------------------*/
.requirement {
  color: #fff;
  line-height: normal;
}

.requirement.section {
  padding-top: 450px;
  margin-top: -490px;
}

.requirement .req-table {
  width: 450px;
  transition: 0.3s;
}

.requirement .req-table:hover,
.requirement .fee:hover {
  scale: 1.1;
}

.requirement .head {
  background: var(--third-color);
  font-size: 25px;
  font-weight: bold;
  padding: 15px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
}

.requirement .content {
  background: #fff;
  color: #000;
  font-size: 20px;
  padding: 15px;
  border-bottom: 3px solid var(--main-color);
}

.requirement .content:last-child {
  border-bottom: none;
  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
}

.requirement .essential-container {
  font-size: 20px;
  margin-bottom: 100px;
  line-height: 2;
}

.requirement .timeline-container {
    width: 100%;
    /* max-width: 1200px; */
    padding: 0;
}

.requirement .timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.requirement .timeline::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 200px;
    right: 0;
    height: 4px;
    background: var(--third-color);
    transform: translateY(-50%);
    z-index: 1;
}

.requirement .timeline.second-section::before {
    left: 0;
    right: 250px;
}

.requirement .timeline-item {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.requirement .timeline-circle {
    width: 70px;
    height: 70px;
    background: var(--third-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    color: white;
    position: relative;
    z-index: 3;
}

.requirement .timeline-circle.last {
    background: var(--second-color);
}

.requirement .timeline-content {
    margin-top: 25px;
    text-align: center;
    color: white;
    max-width: 220px;
}

.requirement .timeline-content h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.requirement .fee {
  background: #fff;
  padding: 30px 14px;
  border-radius: 40px;
  width: 500px;
  transition: 0.3s;
  box-shadow: 8px 10px 20px #00000091;
}

.requirement .fee .section-title {
  margin-bottom: 0;
  padding-bottom: 0;
}

.requirement .fee .content {
  border-bottom: none;
  color: var(--main-color);
  padding: 0 0 15px 10px;
  display: flex;
  align-items: start;
  gap: 10px;
  font-weight: 600;
}

.requirement .fee .content img {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.requirement .fee .content span {
  flex: 1;
  line-height: 1.5;
}

.requirement .fee .badge {
  color: #fff;
  background: var(--second-color);
  padding: 10px 15px 20px 15px;
  border-radius: 20px;
  margin-top: 20px;
}

.requirement .fee .badge .price {
  font-weight: bold;
  font-size: 40px;
  margin-bottom: 10px;
}

.requirement .fee .badge .price-detail {
  font-weight: 600;
  font-size: 20px;
  font-style: italic;
  white-space: break-spaces;
}

.requirement .fee .additional {
  font-weight: 600;
  font-size: 20px;
  font-style: italic;
  color: var(--main-color);
  margin-top: 10px;
}

@media (max-width: 1199px) {
  .requirement.section {
    padding-top: 390px;
  }

  .requirement .essential-container {
    font-size: 20px;
  }

  .requirement .timeline::before {
    left: 100px;
  }

  .requirement .timeline.second-section::before {
    right: 180px;
  }

  .requirement .fee .badge .price {
    font-size: 37px;
  }
}

@media (max-width: 768px) {
  .requirement.section {
    padding-top: 300px;
  }

  .requirement .timeline {
      flex-direction: column;
      gap: 40px;
  }

  .requirement .essential-container {
    text-align: center;
  }

  .requirement .timeline::before,
  .requirement .timeline.second-section::before {
    width: 4px;
    height: 100%;
    left: 50%;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
  }

  .requirement .timeline.second-section::before {
    top: -55px;
  }

  .requirement .timeline-content {
      max-width: 300px;
      margin-top: 0;
  }

  .requirement .timeline-content h3 {
      font-size: 14px;
      background: var(--main-color);
      padding: 5px;
  }

  .requirement .timeline-circle {
      width: 60px;
      height: 60px;
      font-size: 24px;
  }

  .requirement .content:last-child {
    margin-bottom: 15px;
  }

  .requirement .head {
    font-size: 20px;
  }

  .requirement .content,
  .requirement .fee .badge .price-detail,
  .requirement .fee .additional {
    font-size: 15px;
  }

  .requirement .req-table {
    width: 320px;
  }

  .requirement .fee .badge {
    margin-top: 0;
  }

  .requirement .fee .badge .price {
    font-size: 33px;
  }
}

@media (max-width: 575px) {
  .requirement.section {
    padding-top: 1145px;
    margin-top: -1345px;
  }

  .story .item-content {
    margin-bottom: 20px;
  }

  .requirement .fee .badge .price {
    font-size: 28px;
  }

  .requirement .fee .badge .price-detail {
    font-size: 13px;
    white-space: break-spaces;
  }

  .requirement .fee .additional {
    font-size: 13px;
  }

  .requirement .essential-container {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# 4 Reasons Section
--------------------------------------------------------------*/
.reason {
  color: var(--main-color);
}

.reason .reason-title {
  color: var(--third-color);
  font-weight: bold;
  font-size: 25px;
}

.reason .reason-content {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .reason .reason-title {
    font-size: 30px;
  }

  .reason .reason-content {
    font-size: 20px;
  }
}

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

  .reason .reason-content {
    font-size: 17px;
  }
}


/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq.section {
  padding-top: 20px;
}

.faq .faq-container .faq-item {
  border-bottom: 3px solid #cacaca;
  position: relative;
  padding: 25px;
  margin-bottom: 25px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  border-bottom: none;
}


.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: bold;
  font-size: 25px;
  line-height: normal;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: var(--second-color);
}

.faq .faq-container .faq-item h3:hover,
.faq .faq-container .faq-active h3 {
  color: var(--second-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  color: var(--main-color);
  font-size: 20px;
  margin-left: 30px;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 27px;
  right: 20px;
  font-size: 22px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
  color: #fff;
  background: var(--third-color);
  padding: 4px;
  border-radius: 25px;
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 15px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(180deg);
}

@media (max-width: 1199px) {
  .faq .faq-container .faq-item h3,
  .faq .faq-container .faq-item .faq-toggle {
    font-size: 25px;
  }
}

@media (max-width: 768px) {
  .faq .faq-container .faq-item h3,
  .faq .faq-container .faq-item .faq-toggle {
    font-size: 18px;
    top: 22px;
  }

  .faq .faq-container .faq-item .faq-content p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# End Section
--------------------------------------------------------------*/
.end.section {
  background: var(--main-color);
  padding: 50px;
}

/*--------------------------------------------------------------
# Career Path Section
--------------------------------------------------------------*/
.path.section {
  position: relative;
  z-index: 2;
  padding-top: 150px;
}

.path .title {
  color: var(--main-color);
  line-height: 1;
  font-weight: bold;
  font-size: 40px;
  position: relative;
  z-index: 2;
}

.path .path-bg {
  width: 100%; /* Ubah dari 700px fixed */
  max-width: 700px;
  height: auto;
  aspect-ratio: 700/1120;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.path .path-banner {
  position: relative;
  margin-top: -130px;
  z-index: 2;
  width: 100%;
}

.path .content-container {
  position: relative;
  z-index: 3;
}

.path .content-container img {
  width: 100%;
  margin-top: 20px;
}

.path .content-container h5 {
  font-size: 30px;
  color: #fff;
}

.path .content-container h2 {
  font-size: 50px;
  color: #fff;
  text-transform: uppercase;
}

.path .badge {
  font-size: 25px;
  font-weight: 600;
  padding: 15px 30px;
  background: var(--second-color);
  border-radius: 32px;
}

.path-badge .item-content {
  font-size: 26px;
  font-weight: 600;
  line-height: normal;
}

@media (max-width: 1199px) {
  .path .title {
    font-size: 37px;
  }

  .path .path-bg {
    width: 515px;
    height: 847px;
  }

  .path .path-banner {
    margin-top: -10px;
  }
}

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

  .path .path-bg {
    width: 380px;
    height: 661px;
  }

  .path .path-banner {
    margin-top: -10px;
  }
}

@media (max-width: 575px) {
  .path .path-banner {
    margin-top: 150px;
  }

  .path .title {
    text-align: center;
    font-size: 28px;
  }
}