/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Roboto', sans-serif;
  color: #444444;
  background-color: #f1f8ff;
}

a {
  text-decoration: none;
  color: #eda500;
}

a:hover {
  color: #eda500;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto', sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #eda500;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #eda500;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #eda500;
  border-top-color: #bfe0fd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

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

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

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

/*--------------------------------------------------------------
# Top Bar Teks Berjalan
--------------------------------------------------------------*/

#topbar {
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  margin-bottom: 5px;
}

.text-berjalan {
  position: relative;
  width: 100%;
  height: 40px; /* Sesuaikan tinggi sesuai kebutuhan */
  background-color: #fff;
  overflow: hidden;
}

.text-wrapper {
  display: flex;
  width: max-content;
  margin-top: 10px;
  animation: berjalan 20s linear infinite; /* Sesuaikan durasi dan kecepatan berjalan */
}

.text {
  white-space: nowrap;
  padding-right: 2rem; /* Tambahkan jarak antar teks */
  color: #222222;
}

@keyframes berjalan {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Media queries untuk responsivitas */
@media (max-width: 600px) {
  .text-berjalan {
    height: 40px; /* Sesuaikan tinggi untuk layar kecil */
  }

  .text {
    font-size: 0.8rem; /* Sesuaikan ukuran font untuk layar kecil */
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #eda500;
  transition: all 0.5s;
  z-index: 997;
  height: 70px;
  top: 40px;
}

#header.header-scrolled {
  background: #eda500;
  top: 0;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

.header-inner-pages {
  background: #ff7337 !important;
}

.topbar-inner-pages {
  background: #ff7337 !important;
}

.scrolled-offset {
  margin-top: 60px;
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
  text-decoration: solid;
}

.navbar>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

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

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #f1f8ff;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}


@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
  

}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block !important;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 12px 20px;
  
}

.navbar-mobile li+li {
  margin: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  font-size: 16px;
  position: relative;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ff7337;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ff7337;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Carousel Section
--------------------------------------------------------------*/

#carousel-banner {
  padding-top: 45px;
  width: 100%;
  height: 760px;
  overflow: hidden;
  position: relative;
  align-items: center;
  background-size: cover;
  z-index: 99;
  transition: 0.3s;
}

@media (max-width: 1024px) {
  #carousel-banner .carousel-control-prev,
  #carousel-banner .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 992px),
(max-height: 600px) {
  #carousel-banner {
    max-height: fit-content;
  }
  #carousel-banner .carousel-control-prev,
  #carousel-banner .carousel-control-next {
    width: 10%;
    margin-top: 60px;
  }
  #carousel-banner .container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
.section {
  overflow: hidden;
}

.section-bg {
  background-color: #ffff;
}

.section-title {
  text-align: center;
  padding-bottom: 20px;
}

.section-title h2 {
  font-size: 26px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 0;
  color: #eda500;
}

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

@media (max-width: 992px) {

  .section-title h2 {
    font-size: 20px;
  }
}


#main-menu {
  padding-top: 45px;
  padding-bottom: 15px;
}
/*--------------------------------------------------------------
# Why Us section
--------------------------------------------------------------*/
.why-us {
  background: #ffff;
  border-radius: 10px;
}
.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 16px;
  color: #848484;
}

.why-us .video-box {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
  position: relative;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li+li {
  margin-top: 16px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: #eda500;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 6px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
  color: #f8c255;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

.why-us .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#eda500 50%, rgba(218, 172, 72, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.why-us .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.why-us .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(242, 187, 4, 0.816);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.why-us .play-btn:hover::after {
  border-left: 15px solid #eda500;
  transform: scale(20);
}

.why-us .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@media (max-width: 1024px) {

  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .content {
    padding-top: 20px;
  }
  .why-us .content h3 {
    font-size: 25px;
  }
  .why-us .accordion-list {
    padding-bottom: 10px;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Tentang Kami
--------------------------------------------------------------*/
.about {
  padding: 40px;
  background: url("../img/about-bg.png") top center no-repeat;
  position: relative;
}

.about:before {
  content: "";
  background: rgba(255, 255, 255, 0.75);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.about .container {
  position: relative;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #eda500;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}



.about .about-slider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
}

.about .about-carousel,
.about .about-slider {
  overflow: hidden;
  margin-top: 10px;
}

.about .about-item {
  text-align: center;
  color: #eda500;
}

.about .about-item .about-img {
  width: 600px;
  margin: 0 auto;
}

.about .about-item .quote-icon-left,
.about .about-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

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

.about .about-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.about .swiper-pagination {
  margin-top: 5px;
  position: relative;
}

.about .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: rgba(194, 190, 190, 0.896);
  opacity: 1;
}

.about .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #eda500;
}


@media (max-width: 992px) {
  .about{
    margin-bottom: -20px;
    padding: 10px;
  }
  .about .content {
    margin-bottom: -5px;
  }


  .about .about-item .about-img {
    width: 100%;
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
# Produk section
--------------------------------------------------------------*/
/* Mengatur margin antara kartu produk */
.produk {
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(16, 110, 234, 0.15);
  text-align: center;
  margin-bottom: 20px; /* Jarak antar produk */
}

.produk-img img {
  width: 100%;
  height: auto;
  display: block;
}

.produk-info {
  padding: 10px;
  margin-top: 5px;
}

.produk-info h4 {
  margin-bottom: 5px;
  font-size: 16px;
}

.produk-info p {
  font-size: 12px;
  color: red;
}

.produk-info span {
  font-size: 14px;
  font-weight: bold;  
}

@media (max-width: 992px) {
.produk-info {
    margin-top: 2px;
}
.produk-info h4 {
    font-size: 14px;
    margin-top: 2px;
}
.produk-span{
margin-top: -6px;
}
}

/*--------------------------------------------------------------
# Layanan section
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.services .icon-box i {
  float: left;
  padding: 10px;
  color: #eda500;
  font-size: 40px;
  line-height: 0;
}

.services .icon-box h4 {
  padding: 5px 0px;
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.services .icon-box h4 a {
  color: #eda500;
  transition: 0.3s;
  
}

.services .icon-box h4 a:hover {
  color: #eda500;
}

.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 20px;
  margin-right: 50px;
}

@media (max-width: 992px) {
    .services {
        margin-top: -80px;
    }
  
    .services .icon-box {
        margin-bottom: 5px;
        overflow: hidden;
    }
  
    .services .icon-box i {
      padding: 10px;
    }
    
    .services .icon-box h4 {
      padding: 10px 0px;
    }

    .services .icon-box p {
      margin-bottom: 15px;
      margin-right: 5px;
    }

}

/*--------------------------------------------------------------
# Testimonial section
--------------------------------------------------------------*/
.testimonial {
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonial .testimonial-slider {
  padding: 5px 0px;
  background: url("../img/contact-bg.png") no-repeat;
}

.testimonial .testimonial-slider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
}


.testimonial .section-header {
  margin-bottom: 40px;
}

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

.testimonial .testimonial-item {
  text-align: center;
  color: #eda500;
}

.testimonial .testimonial-item .testimonial-img {
  width: 250px;
  border: 4px solid rgba(236, 121, 5, 0.689);
  margin: 0 auto;
}

.testimonial .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #eda500;
}

.testimonial .testimonial-item h4 {
  font-size: 14px;
  color: #eda500;
  padding-top: 10px;
  margin: 0 0 10px 0;
}

.testimonial .testimonial-item .quote-icon-left,
.testimonial .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);
  font-size: 26px;
}

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

.testimonial .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonial .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #c4bdbd;
}

.testimonial .swiper-pagination {
  margin-top: 5px;
  position: relative;
}

.testimonial .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: rgba(194, 190, 190, 0.896);
  opacity: 1;
}

.testimonial .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #eda500;
}


/*--------------------------------------------------------------
# Kontak section
--------------------------------------------------------------*/
#contact {
  margin-bottom: 6px;
}
#contact .social-media {
  text-align: center;
  margin-bottom: 15px;
}

#contact .social-media a {
  color: #ffc107;
}

#contact .social-media a:hover {
  color: #000000;
}

#contact .social-media i {
  font-size: 25px;
  margin: 0 5px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #eda500;
  padding: 0 0 15px 0;
  color: #444444;
  font-size: 14px;
}

#footer .footer-top {
  background: #f7fffe;
  padding: 40px 0 20px 0;
  border-top: 2px solid #f8c255;
}

#footer .footer-top .social-links a {
  font-size: 16px;
  display: inline-block;
  background: #eda500;
  color: #ffff;
  line-height: 1;
  padding: 10px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ffff;
  color: #eda500;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #eda500;
  font-size: 18px;
  line-height: 1;
}

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

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

#footer .footer-top .footer-links ul a {
  color: #444444;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #eda500;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .copyright {
  text-align: center;
  padding-top: 15px;
  color: #fff;
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: #f6b024;
}