/**
* Template Name: Impact
* Template URL: https://bootstrapmade.com/impact-bootstrap-business-website-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "DM Sans", "Sans Serif";
  --heading-font: "DM Sans", "Sans Serif";
  --nav-font: "DM Sans", "Sans Serif";
}


body {
  font-family: var(--default-font);
}

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

.navbar, .menu {
  font-family: var(--nav-font);
}



/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #222222; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #172a28; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f3f8ff; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #000000; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #000000;  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #f3f8ff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #000000; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f3f8ff; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f2f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #f3f8ff;
  --default-color: #000000;
  --heading-color: #00000;
  --accent-color: #ffffff;
  --surface-color: #f3f8ff;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

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

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);
}

/* Pulsating Play Button
------------------------------*/

.custom-btn {
  border-radius: 50px; /* Semakin besar nilainya, semakin bulat */
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #f3f8ff;
  --heading-color: #000000;
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: var(--background-color);
}

.header .topbar {
  background-color: color-mix(in srgb, var(--accent-color) 90%, black 10%);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

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

.header .logo img {
  max-height: 36px;
  margin-right: 10px;
}


.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

.navmenu .btn-register {
  font-size: 14px !important; /* Ukuran teks */
  padding: 8px 28px !important; /* Padding agar tombol tetap proporsional */
  font-weight: bold;
  border-radius: 10px !important; /* Agar tombol tetap rapi */
  display: inline-block !important;
  min-width: 120px;
  height: auto;
  background-color: #00b5d9 !important; 
  color: white !important; /* Warna teks default putih */
  border: 2px solid #00b5d9; 
  transition: color 0.3s ease-in-out; /* Efek transisi hanya untuk warna teks */
}

.navmenu .btn-register:hover {
  color: black !important; 
}



/* .navmenu .btn-primary.btn-register {
  font-size: 16px;
  padding: 10px 32px;
} */



@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }
 
  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-color);
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/* .footer {
  color: var(--default-color);
  background-color: #2C2C2C;
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}


.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: #ffff;
  margin-right: 10px;
  margin-bottom: 40px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--default-color);
  border-color: var(--default-color);
}

.footer h4 {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: #ffff;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--default-color);
} */

.footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 20px 0; /* Tambahkan padding lebih besar */
  /* min-height: 400px; Sesuaikan tinggi minimal footer */
  font-family: 'DM Sans', sans-serif;
}


.footer-menu {
  margin-bottom: 15px;
  padding-bottom: 60px;
}

.footer-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 28px;
  font-weight: 500;
  margin: 0 10px;
}

.footer-menu span {
  color: #fff;
  font-size: 28px;
}

.footer-social {
  margin-bottom: 20px;
}

.footer-social a {
  margin: 0 10px;
}

.footer-social img {
  width: 32px;
  height: 32px;
}

.footer-info {
  font-size: 10px;
  margin-bottom: 5px;
  min-height: 800;
}

.footer-info p {
  padding-top: 15px;
  margin-top: 15px;
  margin: 5px 0;
}

.footer-bottom {
  font-size: 12px;
  border-top: 1px solid #444;
  padding-top: 10px;
  /* max-width: 200; */
}

.footer-bottom p{
  font-size: 10px;
  color: #6c757d;
  font-weight: 800;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: 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 #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s 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: 44px;
  height: 44px;
  border-radius: 50px;
  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;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  [data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
  }
}


/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: var(--accent-color);
  --default-color: #fff;
  --heading-color: #fff;
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol a {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title nav ol a:hover {
  color: var(--default-color);
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/

.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 112px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  padding: 140px 0 0 0;
}

.hero.accent-background {
  background-image: url('assets/img/TUGUMALANG.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero {
  min-height: 100vh;
  padding: 140px 0 0 0;
  position: relative;
}



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

.hero h2 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
}

.accent {
  color: #007bff;
  font-weight: bold; /* Opsional, jika ingin lebih menonjol */
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 0%);
  font-weight: 550;
  margin-bottom: 30px;
  font-size: 28px;
}

/* .hero .btn-register {
  font-size: 12px !important;
  padding: 10px 30px !important;
} */

.hero-swc-img {
  max-width: 300px; /* Atur ukuran sesuai kebutuhan */
  height: auto;
  display: block;
  margin: 0 auto; /* Tengah secara horizontal */
}



.hero .icon-boxes {
  padding-bottom: 60px;
  z-index: 4;
}

@media (min-width: 1200px) {
  .hero .icon-boxes:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(50% + 20px);
    background-color: var(--default-color);
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }
}

.hero .icon-box {
  padding: 60px 30px;
  position: relative;
  overflow: hidden;
  background: var(--background-color);
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: center;
}

.hero .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}

.hero .icon-box .title a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.hero .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 48px;
  line-height: 1;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .icon-box:hover {
  background-color: color-mix(in srgb, var(--background-color), white 10%);
}

.hero .icon-box:hover .title a,
.hero .icon-box:hover .icon {
  color: var(--contrast-color);
}
.custom-btn {
  width: 200px; /* Sesuaikan panjang yang diinginkan */
  text-align: center; /* Pastikan teks berada di tengah */
}



/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about {
  position: relative; /* Pastikan parent memiliki posisi relatif */
  padding: 140px 0;
  min-height: auto;
  }
  
  .about .col-lg-5 {
    position: relative;
    margin-left: 70px; /* Geser ke kanan */
  }

  .about .content {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Menyamakan posisi vertikal */
  }
  
  .about .row {
    align-items: center; /* Menyamakan tinggi elemen */
  }
  
  .about img {
    max-width: 100%;
    height: auto;
  }
  
  @media (max-width: 768px) {
    .about .col-lg-5 {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }
  }
  

/*  */

.about .content h3 {
  font-size: 38px;
  font-weight: 800;
  margin-top: 80px;
  padding-top: 50px;
}

.about .content p {
  font-weight: 500;
  font-size: 24px;
  padding-bottom: 120px;
  text-align: left;
}

.about .pulsating-play-btn {
  position: absolute;
  left: 50%;
  top: 50%; /* Pindahkan tombol ke atas gambar */
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(0, 157, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}

.about .pulsating-play-btn::before {
  content: '\25B6'; /* Tambahkan ikon play */
  font-size: 40px;
  color: white;
}

.about .pulsating-play-btn:hover {
  background-color: rgb(0, 140, 255);
}

.about .pulsating-play-btn:hover::before {
  color: white;
}


/*--------------------------------------------------------------
# Announcement Section
--------------------------------------------------------------*/
.card-container {
  display: flex;
  justify-content: center; /* Pusatkan card secara horizontal */
  align-items: center; /* Pusatkan card secara vertikal */
  min-height: auto; /* Pastikan card selalu di tengah layar */
}

.card {
  width: 1325px; /* Perbesar card agar teks tidak terlalu sempit */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Efek bayangan agar lebih menarik */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Pusatkan konten secara vertikal */
  align-items: center; /* Pusatkan konten secara horizontal */
  text-align: justify; /* Pastikan teks di dalamnya rata tengah */
  background-color: #ffc731;
}i

.card-body {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Pusatkan teks secara vertikal */
  align-items: center; /* Pusatkan teks secara horizontal */
  text-align: justify;
}

.title-container {
  font-weight: bolder;
  display: flex;
  align-items: center; /* Menjaga gambar dan teks tetap sejajar */
  justify-content: center; /* Agar tetap berada di tengah */
  gap: 10px; /* Jarak antara gambar dan teks */
  margin-bottom: 5px; /* Kurangi jarak antara elemen ini dengan teks di bawah */
}

.card-title {
  font-weight: 800;
  font-size: 38px;
}


.announcement-img {
  width: 100px; /* Atur ukuran gambar */
  height: 100px;
  object-fit: contain;
  margin-bottom: 0; /* Pastikan tidak ada margin bawah */
}

.card-body.text-center {
  padding-bottom: 0; /* Kurangi padding bawah untuk mengurangi jarak */
}

.card-text {
  margin-top: 5px; /* Kurangi margin atas teks agar lebih dekat */
  font-weight: 550;
  font-size: 22px;
}

.card:hover .announcement-img {
  transform: scale(1.5); /* Memperbesar gambar saat hover */
  transition: transform 1s ease-in-out; /* Animasi smooth */
}

.card {
  transform: scale(0.8); /* Awalnya lebih kecil */
  opacity: 0; /* Awalnya transparan */
  transition: transform 0.4s ease-out, opacity 0.4s ease-out; /* Animasi smooth */
}

.card.show {
  transform: scale(1); /* Muncul dengan ukuran normal */
  opacity: 1; /* Menjadi terlihat */
}

@media screen and (max-width: 768px) {
  .card-body {
    text-align: left;
  }
}

/*--------------------------------------------------------------
# Reasons Section
--------------------------------------------------------------*/
.reason-item {
  background-color: #ffffff; /* Warna default */
  padding: 20px;
  border-radius: 10px; /* Agar sudut membulat */
  transition: background-color 0.3s ease-in-out; /* Animasi smooth */
  text-align: center;
  margin-bottom: 10px;
}

.reasons .reason-item {
  background-color: var(--surface-color);
  padding: 40px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.reason-item .icon img {
  display: inline-block; /* Agar mengikuti text-align */
  width: 60px; /* Sesuaikan ukuran ikon */
  height: 60px;
  object-fit: contain;
  margin-bottom: 35px;
}

.reason-item p{
  font-size: 20px;
}



/* Efek saat hover */
.reason-item:hover {
  background-color: #2A9EF4; /* Warna saat hover */
  color: #ffffff; /* Teks berubah menjadi putih agar kontras */
}

.reason-item:hover p {
  color: #ffffff; /* Ubah teks menjadi putih */
}

.reason-item:hover .icon img {
  filter: brightness(0) invert(1); /* Ubah ikon menjadi putih */
}

/*--------------------------------------------------------------
# Requirement Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Requirements Section
--------------------------------------------------------------*/
.requirements .img {
  border-radius: 8px;
  overflow: hidden;
}

.requirements .img img {
  transition: 0.6s;
  width: 100%; /* Pastikan gambar memenuhi lebar container */
  height: 250px; /* Sesuaikan tinggi agar seragam dengan gambar lain */
  object-fit: cover; /* Pastikan gambar tidak terdistorsi dan tetap proporsional */
  transition: 0.6s;
  }
  
.requirements .details {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  position: relative;
  text-align: center;
  border-radius: 8px;
  min-height: 160px; /* Pastikan semua container memiliki tinggi minimal yang sama */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Pastikan konten dalamnya seimbang */
  text-align: center;
  }
  
.requirements .details p{
  font-size: 20px;
}

.requirements .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--contrast-color);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
}

.requirements .requirement-item:hover .details {
  background: #007bff; /* Ubah latar belakang menjadi biru saat hover */
  color: white; /* Sesuaikan warna teks agar kontras */
}

.requirements .requirement-item:hover .details h3 {
  color:white;
}

.requirements .requirement-item:hover .details .icon {
  background: white;
  border: #007bff;
}

.requirements .requirement-item:hover .details .icon i {
  color: #007bff;
}

.requirements .requirement-item:hover .img img {
  transform: scale(1.2);
}


/*--------------------------------------------------------------
# Judges Section
--------------------------------------------------------------*/
/*  */

.section-title {
  margin-top: 80px; /* Sesuaikan jaraknya */
}

.judge {
  flex: 1; /* Agar semua card memiliki tinggi yang sama */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: white !important;
  border: 3px solid; /* Tambahkan border */
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-height: 300px;
  overflow: visible; /* Pastikan elemen dalamnya tidak terpotong */
 
  
}

/* Terapkan warna border berdasarkan urutan col-xl-3, bukan langsung ke .judge */
.col-xl-3:nth-child(1) .judge { border-color: #FFC247; } /* Kuning */
.col-xl-3:nth-child(2) .judge { border-color: #4472C4; } /* Biru */
.col-xl-3:nth-child(3) .judge { border-color: #E5823E; } /* Oranye */


/* Pastikan gambar memiliki ukuran yang sama */
.judge img {
  width: 100px; /* Atur ukuran gambar */
  height: 120px;
  object-fit: cover; /* Mencegah gambar terdistorsi */
  border-radius: 50%;
}

.judge h4 {
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 18px;
}

.judge span {
  font-style: italic;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}

.judge .social {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.judge .social a {
  color: rgba(0, 0, 0, 0.6);
  transition: 0.3s;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.6);
}

.judge .social a:hover {
  color: #ffffff;
  border-color: #ffffff;
  background-color: #2A9EF4;
}

.judge .social i {
  font-size: 16px;
}

.timeline-img {
  max-width: 500px; 
  height: auto;
}

.timeline h2{
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 38px;
}


/*--------------------------------------------------------------
# Timeline Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Partner Section
--------------------------------------------------------------*/
/* .partners h2 {
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 20px;
} */
.partnership-container {
  margin-top: 60px;
  text-align: center;
}

.partnership-container h2 {
  font-size: 22px;
  font-weight: bold;
  color: white;
  margin-bottom: 20px;
}

.partnership-container .swiper {
  padding: 10px 0;
  margin-top: 20px; /* Mengurangi jarak agar lebih rapat dengan sponsor */
  margin-bottom: 30px; 
}

.partnership-container .swiper-wrapper {
  height: auto;
}

.partnership-container .swiper-slide img {
  transition: 0.3s;
}

.partnership-container .swiper-slide img:hover {
  transform: scale(1.1);
}



.sponsor-container {
  max-width: 1100px; /* Atur agar tidak full layar */
  background-color: #2da0f0; /* Background biru hanya untuk container ini */
  text-align: center;
  padding: 40px;
  border-radius: 20px; /* Opsional untuk sudut melengkung */
  margin: 0 auto; /* Agar tetap berada di tengah */
}

.sponsor-container h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  justify-content: center;
}

.sponsor {
  background: white;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.sponsor img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

.sponsor img[src*="kpmg.png"] {
  max-width: 150px; /* Sesuaikan ukuran agar sama */
  max-height: 80px;
}


/* Background dengan efek gradasi */
.champion-section {
  background: #002B9C;
  height: 172px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

/* Container agar konten berada di tengah */
.champion-container {
  display: flex;
  flex-direction: row; /* Agar gambar dan teks tersusun horizontal */
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 15px; /* Jarak antara elemen */
}

/* Judul teks */
.champion h2 {
  font-size: 32px;
  font-weight: bold;
  color: #ffffff;
  margin: 0;
}

/* Link */
.champion a {
  display: block;
  color: #ffffff;
  text-decoration: underline;
  font-size: 16px;
  margin-top: 10px;
}

.champion .link:hover {
  color: #FFD700; /* Warna emas saat hover */
}

/* Gambar dan teks sejajar */
.champion-section .content {
  display: flex;
  align-items: center;
  justify-content: center; /* Pastikan konten di tengah */
  gap: 15px; /* Jarak antara trofi dan teks */
}

/* Gambar */
.champion-img {
  width: 65px; /* Atur ukuran gambar */
  height: 65px;
  object-fit: contain;
  margin-bottom: 0; /* Pastikan tidak ada margin bawah */
}


/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/* REGISTER */

.index-page .section-register {
  background-color: #4A90E2 !important;
}

.section-register {
  width: 100vw;
  margin-left: 0;
  margin-right: 0;
}

.section-register {
  padding: 0;
  margin: 0;
}


.section-register h2 {
  color: black !important; /* Pastikan warna kontras */
  font-size: 30px; /* Sesuaikan ukuran */
  font-weight: bold; /* Tebalkan agar lebih terlihat */
  margin-top: 40px;
}

.section-register {
  padding-top: 50px; /* Menambah jarak dari atas */
}

.register {
  width: 300px;
  height: auto;
  margin-top: 70px;
}

.section-register p {
  margin-bottom: 10px;
}

