/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/
.hero-logo {
    margin-bottom: 20px; /* Jarak antara logo dan teks */
    text-align: left; /* Pastikan logo rata kiri sesuai teks */
}

.hero-logo img {
    width: 350px; /* Sesuaikan ukuran logo */
    height: auto; /* Jaga proporsi logo */
    display: block;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Full height of viewport */
    background: url('./../images/cover/mki_underground.jpg') no-repeat center center/cover; /* Replace with your image path */
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Overlay effect */
    display: flex;
    justify-content: left;
    align-items: center;
    padding-left: 10px;
}

.hero-content {
    color: white;
    text-align: left;
    max-width: 100vw; /* Restrict width for readability */
    padding: 20px;
}

.hero-content h1 {
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.hero-content h2 {
    color: white;
    font-size: 4.5rem;
    margin: 10px 0 20px;
    font-weight: bold;
    line-height: 1.2;
}

.hero-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #FFC107; /* Button color */
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.hero-button:hover {
    background-color: #e0a800;
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {

    .hero-overlay {
        justify-content: center;
        padding-left: 0;
    }

    .hero-content {
        align-items: center;
        text-align: center; /* Center align text for smaller devices */
        max-width: 90%; /* Reduce max width */
    }

    .hero-logo img {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {

    .hero-overlay {
        justify-content: center;
        padding-left: 0;
    }

    .hero-content {
        align-items: center;
    }

    .hero-logo img {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-content h1 {
        font-size: 1.2rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-button {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}


.why-choose-us {
    background-color: #4a4a4a; /* Dark grey background */
    color: #fff; /* White text */
    padding: 50px 20px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #FFC107; /* Gold color */
    margin-bottom: 30px;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.about-us {
    flex: 1;
    max-width: 45%;
    text-align: left;
}

.about-us h2 {
    font-size: 1.8rem;
    color: #FFC107;
    margin-bottom: 15px;
}

.about-us p {
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: none;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #FFC107;
    color: #4a4a4a;
}

.video {
    position: relative;
    flex: 1;
    max-width: 45%;
}

.video img {
    width: 100%;
    border-radius: 10px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-button a svg {
    cursor: pointer;
}

.our-values {
    margin-top: 20px;
}

.our-values h2 {
    font-size: 1.8rem;
    color: #FFC107;
    margin-bottom: 20px;
    text-align: left;
}

.values-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 40px;
}

.value {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100px;
}

.value i {
    background: #797873;
    border-radius: 3px;
    width: 50px;
    height: 50px;
    display: flex; /* Aktifkan Flexbox */
    justify-content: center; /* Pusatkan secara horizontal */
    align-items: center; /* Pusatkan secara vertikal */
    margin-bottom: 10px;
}

.value p {
    font-size: 0.9rem;
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        align-items: center;
    }

    .about-us, .video {
        max-width: 100%;
    }

    .about-us {
        text-align: center;
    }

    .video {
        margin-top: 20px;
    }

    .our-values h2 {
        text-align: center;
    }

    .values-icons {
        justify-content: center;
    }
}


/* Solutions Section */
.solutions-section {
    padding: 50px 20px;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h1 {
    font-size: 2.5rem;
}

.cta-button {
    padding: 10px 20px;
    background-color: #FFC107;
    color: #333;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #e0a800;
    color: #fff;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.solution-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
}

.solution-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.solution-card h2 {
    font-size: 1.5rem;
    margin: 15px;
    color: #FFC107;
}

.solution-card p {
    margin: 0 15px 15px;
    font-size: 0.9rem;
    color: #555;
}

.btn {
    display: inline-block;
    margin: 15px;
    padding: 10px 20px;
    background-color: #fff;
    color: #333;
    border: 2px solid #FFC107;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #FFC107;
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        text-align: center;
    }

    .cta-button {
        margin-top: 10px;
    }
}

.about-timeline-carousel {
    padding: 86px 6.9444% 90px 6.9444%;
    position: relative;
    overflow: hidden;
}

.about-timeline-carousel:after,
.about-timeline-carousel:before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    height: 100%;
    width: 6.9444%;
    background-color: #fff;
    z-index: 3;
}

.about-timeline-carousel:after {
    left: 0;
}

.about-timeline-carousel:before {
    right: 0;
    opacity: 0;
}

.about-timeline-carousel .slick-list {
    overflow: visible;
}

.about-timeline-carousel .slick-dots {
    bottom: -73px;
}

.about-timeline-carousel h1 {
    color: #000000;
    font-size: 46px;
    line-height: 50pd;
    margin-bottom: 40px;
    font-weight: 900;
}

.about-timeline-carousel__image {
    padding-right: 30px;
}

.about-timeline-carousel__item {
    cursor: pointer;
}

.about-timeline-carousel__item .media-wrapper {
    opacity: 0.4;
    padding-bottom: 71.4%;
    -webkit-transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    -o-transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.about-timeline-carousel__item:last-child .about-timeline-carousel__item-inner:after {
    width: calc(100% - 30px);
}

.about-timeline-carousel__item-inner {
    position: relative;
    padding-top: 45px;
}

.about-timeline-carousel__item-inner:after {
    position: absolute;
    width: 100%;
    top: 45px;
    left: 0;
    content: "";
    border-bottom: 1px solid #000000;
}

.about-timeline-carousel__item-inner .year {
    font-size: 36px;
    line-height: 36px;
    color: #ffffff;
    display: table;
    letter-spacing: -1px;
    padding-right: 10px;
    background-color: #1d1d1e;
    z-index: 1;
    position: relative;
    margin: -15px 0 20px;
    font-weight: 900;
}

.about-timeline-carousel__item-inner .year:after {
    content: "";
    position: absolute;
    display: block;
    left: -10px;
    top: 0;
    height: 100%;
    width: 10px;
    background-color: #1d1d1e;
    z-index: 3;
}

.about-timeline-carousel__item-inner .month {
    font-size: 12px;
    text-transform: uppercase;
    color: #dfb04a;
    display: block;
    margin-bottom: 10px;
    font-weight: 900;
}

.about-timeline-carousel__item-inner p {
    font-size: 14px;
    line-height: 18px;
    color: #000000;
    width: 75%;
    font-weight: 400;
    margin-bottom: 15px;
}

.about-timeline-carousel__item-inner .read-more {
    font-size: 12px;
    color: #dfb04a;
    display: table;
    margin-bottom: 10px;
    font-weight: 900;
    text-decoration: none;
    position: relative;
}

.about-timeline-carousel__item-inner .read-more:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    border-bottom: 2px solid #dfb04a;
    -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    -o-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

.about-timeline-carousel__item-inner .read-more:hover:after {
    width: 100%;
}

.about-timeline-carousel__item-inner .pointer {
    height: 29px;
    position: relative;
    z-index: 1;
    margin: -4px 0 16px;
}

.about-timeline-carousel__item-inner .pointer:after,
.about-timeline-carousel__item-inner .pointer:before {
    position: absolute;
    content: "";
}

.about-timeline-carousel__item-inner .pointer:after {
    width: 9px;
    height: 9px;
    border-radius: 100%;
    top: 0;
    left: 0;
    background-color: #dfb04a;
}

.about-timeline-carousel__item-inner .pointer:before {
    width: 1px;
    height: 100%;
    top: 0;
    left: 4px;
    background-color: #dfb04a;
}

.about-timeline-carousel .slick-active .media-wrapper {
    opacity: 1 !important;
}

.slick-dots {
    bottom: 60px;
    list-style: none;
    position: absolute;
    width: 100%;
    left: 0;
    text-align: center;
    z-index: 2;
}

.slick-dots li {
    cursor: pointer;
    display: inline-block;
    margin: 0 6px;
    position: relative;
    width: 10px;
    height: 10px;
}

.slick-dots li:last-child {
    margin-right: 0;
}

.slick-dots li.slick-active button {
    background: #dfb04a;
    border-color: #dfb04a;
}

.slick-dots li button {
    display: block;
    font-size: 0;
    width: 10px;
    height: 10px;
    padding: 0;
    background-color: #000000;
    border-color: #000000;
    cursor: pointer;
}

.slick-dots li button:hover {
    background: #dfb04a;
    border-color: #dfb04a;
}

.about-link {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 20px;
    z-index: 9999;
}

.about-link a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.about-link .fa {
    font-size: 28px;
    margin-right: 8px;
    color: #fff;
}

/* Our Team Section
--------------------------------*/

/* #team {
    background: #fff;
    padding: 0 0 30px 0;
  }

  #team .member {
    text-align: center;
    margin-bottom: 20px;
  }

  #team .member .pic {
    overflow: hidden;
    text-align: center;
  }

  #team .member .pic img {
    max-width: 100%;
  }

  #team .member .pic:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  #team .member .details {
    background: #dfb04a;
    color: #fff;
    padding: 15px;
    border-radius: 0 0 3px 3px;
    height: 120px;
  }

  #team .member .details-overlay {
    text-align: left;
    padding: 5px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all ease-in-out 0.4s;
  }

  #team .member .details-overlay h4{
    font-size: 20px;
    color: #dfb04a;
  }

  #team .member .details-overlay h5{
    font-size: 18px;
    color: #dfb04a;
  }

  #team .member .details-overlay h6{
    font-size: 16px;
    line-height: 0.2;
    color: #dfb04a;
  }

  #team .member .details-overlay p{
    font-size: 14px;
    color: #ffffff;
  }

  #team .member:hover .details-overlay {
    color: #ffffff;
    opacity: 1;
    background: rgba(0, 0, 0, 0.800);
  }

  #team .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
  }

  #team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
  }

  #team .member .social {
    margin-top: 5px;
  }

  #team .member .social a {
    color: #fff;
  }

  #team .member .social i {
    font-size: 16px;
    margin: 0 2px;
  } */

/*-- Team --*/
/* #team .team-title {
    box-sizing: border-box;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }

  @media (min-width: 768px) {
    .team-title {
      width: 750px;
    }
  }

  @media (min-width: 992px) {
    .team-title {
      width: 970px;
    }
  }

  @media (min-width: 1200px) {
    .team-title {
      width: 1170px;
    }
  }
  .team-grid {
    text-align: center;
  } */
  /*-- Team --*/

  /* .team {
    padding: 5em 0;
  }

  .team-grid {
    text-align: center;
  }

  .team-grid h4 {
    font-size: 25px;
    color: #000;
    font-weight: 600;
    margin: 40px 0 20px;
  }

  .team-grid p {
    color: #777;
    font-size: 1em;
  }


  .stack img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
    border: 10px solid #fff;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -o-border-radius: 3px;
    -ms-border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    -o-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    -ms-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  }

  .stack:last-of-type {
    margin-right: 0;
  } */

  /* Third stack example (One stack element rotated in the opposite direction) */

  /* .stack.twisted:before {
    -webkit-transform: rotate(4deg);
    -moz-transform: rotate(4deg);
    transform: rotate(4deg);
    -moz-transform: rotate(4deg);
    -o-transform: rotate(4deg);
  }

  .stack.twisted:after {
    -webkit-transform: rotate(-4deg);
    -moz-transform: rotate(-4deg);
    transform: rotate(-4deg);
    -ms-transform: rotate(-4deg);
    -o-transform: rotate(-4deg);
  } */

/* Reset all rotations on hover */

/* .stack:hover:before,
.stack:hover:after,
.team-grid:hover .stack:before,
.team-grid:hover .stack:after {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
} */

/* Stacks creted by the use of generated content */

/* .stack:before,
.stack:after {
  content: "";
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -o-border-radius: 3px;
  -ms-border-radius: 3px;
  -moz-border-radius: 3px;
  width: 100%;
  height: 100%;
  position: absolute;
  border: 10px solid #fff;
  left: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  -ms-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  -o-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  -webkit-transition: 0.3s all ease-out;
  -moz-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
  -o-transition: 0.3s all ease-out;
  -ms-transition: 0.3s all ease-out;
}

.stack:before {
  top: 4px;
  z-index: -10;
} */

/* 1st element in stack (behind image) */

/* .stack:after {
  top: 8px;
  z-index: -20;
} */

/* 2nd element in stack (behind image) */

/* .stack {
  float: none;
  width: 92%;
  margin: 3% 0% 8% 4%;
  position: relative;
  z-index: 1;
} */

/* Expert Detail Container */
/* .expert-detail-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}

.expert-detail-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
} */

/* Text Section */
/* .expert-detail-text {
    flex: 1;
    max-width: 600px;
    padding: 20px;
}

.expert-detail-name {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.expert-detail-title {
    font-size: 1.2rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.expert-detail-description {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
} */

/* Social Links */
/* .expert-detail-social {
    display: flex;
    gap: 15px;
}

.expert-detail-social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #333;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.expert-detail-social-link:hover {
    background-color: #555;
} */

/* Image Section */
/* .expert-detail-image {
    flex: 1;
    max-width: 500px;
    text-align: center;
    top: 0;
}

.expert-detail-image img {
    max-width: 100%;
    border-radius: 5px;
} */

/* Responsive Design */
/* @media (max-width: 768px) {
    .expert-detail-content {
        flex-direction: column;
        text-align: center;
    }

    .expert-detail-text {
        max-width: 100%;
    }

    .expert-detail-image {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .expert-detail-name {
        font-size: 2rem;
    }

    .expert-detail-title {
        font-size: 1rem;
    }

    .expert-detail-description {
        font-size: 0.9rem;
    }
} */
