/**
* Template Name: Company - v4.1.0
* Template URL: https://bootstrapmade.com/company-free-html-bootstrap-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #4d4643; /** warna semua tulisan */
}
 
a {
  color: #042847;
  text-decoration: none;
}

a:hover {
  color: #0095ff;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
#Tombol untuk ke atas otomatis
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #042847;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #0095ff;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #042847; /* biru */
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  margin: 0;
  padding: 0;
  line-height: 1;
}

#header .logo a {
  color: #ffffff;
}

#header .logo a span {
  color: #0095ff;
}

#header .logo img {
  max-height: 70px; /* Perbesar ukuran logo */
}

#navbar {
  padding: 15px 0; /* Tetapkan padding navbar untuk menjaga ukurannya */
}

@media (max-width: 991px) {
  #header .logo img {
    max-height: 60px; /* Perbesar ukuran logo untuk layar kecil */
  }
}


/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
.header-social-links {
  margin-left: 20px;
  border-left: 1px solid #c4c4c4;
}

.header-social-links a {
  color: #ffffff;
  display: inline-block;
  line-height: 0px;
  transition: 0.3s;
  padding-left: 20px;
}

.header-social-links a i {
  line-height: 0;
}

.header-social-links a:hover {
  color: #0095ff;
}

@media (max-width: 768px) {
  .header-social-links {
    padding: 0 15px 0 0;
    border-left: 0;
  }
}

/*--------------------------------------------------------------
# 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;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff; /** warna tulisan navbar */
  white-space: nowrap;
  text-transform: uppercase;
  transition: 0.3s;
  
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: #0095ff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-top: 2px solid #0095ff;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #111;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #0095ff;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #ffffff;
  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;
  }
  .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;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #111;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #0095ff;
}

.navbar-mobile .getstarted {
  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: #1bbd36;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}
/* CSS khusus untuk tombol "Hubungi Kami" */
.navbar .btn-hubungi-kami {
  background: #28a745; /* Warna hijau */
  color: white; /* Warna teks putih */
  padding: 10px 20px; /* Padding */
  border-radius: 5px; /* Membulatkan sudut */
  text-decoration: none; /* Menghilangkan garis bawah */
  transition: background-color 0.3s; /* Animasi perubahan warna */
  margin-left: 20px; /* Memberikan jarak dari elemen sebelumnya */
}

.navbar .btn-hubungi-kami:hover {
  background: #218838; /* Warna hijau lebih gelap saat hover */
}

/* Untuk memastikan tombol terlihat baik di perangkat mobile */
@media (max-width: 991px) {
  .navbar-mobile .btn-hubungi-kami {
    display: block;
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
  bottom: 60px;
  top: 70px;
  left: 55px;
  right: 55px;
}

#hero .carousel-content {
  background: rgba(4, 4, 4, 0.7);
  padding: 20px;
  color: #fff;
  border-top: 5px solid #0095ff;
}

#hero .carousel-content h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 700;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  border: 2px solid #0095ff;
}

#hero .btn-get-started:hover {
  background: #042847;
  color: #fff;
  text-decoration: none;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: #042847;
  border-radius: 50px;
  transition: 0.3s;
  color: #0095ff;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: #042847;
  color: #0095ff;
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: .6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #0095ff;
}

@media (min-width: 1024px) {
  #hero .carousel-content {
    width: 60%;
  }
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 992px) {
  #hero .carousel-container {
    top: 58px;
  }
  #hero .carousel-content h2 {
    margin-bottom: 15px;
    font-size: 22px;
  }
  #hero .carousel-content p {
    font-size: 15px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f7f7f7;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #0095ff;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 90px 0;
  background-image: url('../img/bread.jpg');
  min-height: 40px;
  margin-top: 72px;
  background-size: cover; /* Menggunakan cover untuk mengisi elemen sepenuhnya */
  background-position: center; /* Memusatkan gambar */
  background-repeat: no-repeat; /* Tidak mengulangi gambar */
  background-attachment: scroll; /* Menonaktifkan parallax */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 10px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol a {
  color: #fff;
  text-decoration: none;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

/* Media Queries */
@media (max-width: 991px) {
  .breadcrumbs {
    margin-top: 58px;
    padding: 60px 0; /* Kurangi padding untuk layar yang lebih kecil */
    background-size: auto 100%; /* Mempertahankan tinggi dan menyesuaikan lebar */
  }
  .breadcrumbs h2 {
    font-size: 22px; /* Sesuaikan ukuran font */
  }
  .breadcrumbs ol {
    display: block;
    text-align: center;
  }
  .breadcrumbs ol li {
    display: inline-block;
    margin-bottom: 5px; /* Berikan ruang antar elemen pada layar kecil */
  }
}

@media (max-width: 768px) {
  .breadcrumbs {
    padding: 40px 0; /* Lebih sedikit padding untuk perangkat yang lebih kecil */
  }
  .breadcrumbs h2 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .breadcrumbs h2 {
    font-size: 18px;
  }
  .breadcrumbs ol li {
    display: block; /* Menampilkan elemen breadcrumb secara vertikal */
    margin-bottom: 10px;
  }
  .breadcrumbs ol li + li::before {
    content: ">" !important; /* Mengubah separator untuk layar kecil */
    padding-right: 5px;
  }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;
  background: #fff;
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .icon-box .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .icon-box .icon svg path {
  transition: 0.5s;
  fill: #f5f5f5;
}

.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}

.services .icon-box h4 a {
  color: #111;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.08);
}

.services .iconbox-blue i {
  color: #47aeff;
}

.services .iconbox-blue:hover .icon i {
  color: #fff;
}

.services .iconbox-blue:hover .icon path {
  fill: #47aeff;
}

.services .iconbox-orange i {
  color: #ffa76e;
}

.services .iconbox-orange:hover .icon i {
  color: #fff;
}

.services .iconbox-orange:hover .icon path {
  fill: #ffa76e;
}

.services .iconbox-pink i {
  color: #e80368;
}

.services .iconbox-pink:hover .icon i {
  color: #fff;
}

.services .iconbox-pink:hover .icon path {
  fill: #e80368;
}

.services .iconbox-yellow i {
  color: #ffbb2c;
}

.services .iconbox-yellow:hover .icon i {
  color: #fff;
}

.services .iconbox-yellow:hover .icon path {
  fill: #ffbb2c;
}

.services .iconbox-red i {
  color: #ff5828;
}

.services .iconbox-red:hover .icon i {
  color: #fff;
}

.services .iconbox-red:hover .icon path {
  fill: #ff5828;
}

.services .iconbox-teal i {
  color: #11dbcf;
}

.services .iconbox-teal:hover .icon i {
  color: #fff;
}

.services .iconbox-teal:hover .icon path {
  fill: #11dbcf;
}

/*--------------------------------------------------------------
# Layanan Kami
--------------------------------------------------------------*/
.detailed-services {
  position: relative; /* Menetapkan posisi relatif untuk memungkinkan penggunaan elemen pseudo */
  padding: 60px 0;
  background-image: url('../img/berita/layanan.jpg');
  background-size: cover;
  background-attachment: fixed; /* Menambahkan efek parallax */
  background-position: center;
  text-align: center;
  color: #ffffff; /* Warna teks putih untuk kontras */
  overflow: hidden; /* Memastikan elemen pseudo tidak melampaui batas */
}

.detailed-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Overlay hitam dengan transparansi */
  z-index: 0; /* Menempatkan overlay di bawah konten */
}

.detailed-services .section-title {
  position: relative; /* Memastikan konten berada di atas overlay */
  z-index: 1; /* Mengatur z-index agar konten berada di atas overlay */
  margin-bottom: 40px;
}

.detailed-services .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 15px;
  display: inline-block;
  background: #ffffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.detailed-services .section-title p {
  margin-bottom: 0;
  color: #ffffff;
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.5;
}

.detailed-services .service-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  border: 2px solid transparent;
  background-clip: padding-box;
  position: relative;
  overflow: hidden;
}

.detailed-services .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background: #ffffff;
  transition: all 0.5s;
  z-index: -1;
}

.detailed-services .service-card:hover::before {
  width: 400%;
  height: 400%;
}

.detailed-services .service-card .icon {
  margin-bottom: 15px;
  display: inline-block;
  background: #f1f7ff;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  transition: all 0.3s;
  color: #175c8d;
  font-size: 36px;
}

.detailed-services .service-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
  color: #000000;
}

.detailed-services .service-card p {
  font-size: 15px;
  margin-bottom: 15px;
  color: #000000;
  line-height: 1.6;
}

.detailed-services .service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  padding-left: 10px;
}

.detailed-services .service-card ul li {
  padding: 5px 0;
  position: relative;
  padding-left: 22px;
  color: #000000;
  font-size: 14px;
}

.detailed-services .service-card ul li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'FontAwesome';
  font-size: 16px;
  color: #042847;
}

.detailed-services .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: #042847;
}

.detailed-services .service-card:hover .icon {
  background: #042847;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .detailed-services .section-title h2 {
    font-size: 28px;
  }

  .detailed-services .section-title p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .detailed-services .section-title h2 {
    font-size: 24px;
  }

  .detailed-services .section-title p {
    font-size: 14px;
  }
}



/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
  background-image: url('../img/port.jpg');
  background-size: cover;
  background-attachment: fixed; /* Menambahkan efek parallax */
  background-position: center;
  text-align: center;
  padding: 60px 0;
  position: relative;
}

.portfolio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  z-index: 1;
}

.portfolio .container {
  position: relative;
  z-index: 2;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 50px auto;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #4d4643;
  transition: all 0.3s;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.8);
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #fff;
  background: #042847;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #444444;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #2b2b2b;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #0095ff;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;
  margin: 0 2px;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #57e76f;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

.portfolio .portfolio-item:hover .portfolio-links {
  opacity: 1;
}


/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #1bbd36;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1bbd36;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(17, 17, 17, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .clients-wrap {
  border-top: 1px solid #ececec;
  border-left: 1px solid #ececec;
  
}

.clients .client-logo {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  overflow: hidden;
  background: #fff;
  height: 100px;
}

.clients .client-logo img {
  transition: all 0.3s ease-in-out;
  height: 36px;
  filter: grayscale(100%);
}

.clients .client-logo:hover img {
  filter: none;
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about-us .content h2 {
  font-weight: 700;
  font-size: 42px;
  line-height: 60px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about-us .content h3 {
  font-weight: 500;
  line-height: 32px;
  font-size: 24px;
}

.about-us .content ul {
  list-style: none;
  padding: 0;
}

.about-us .content ul li {
  padding: 10px 0 0 28px;
  position: relative;
}

.about-us .content ul i {
  left: 0;
  top: 7px;
  position: absolute;
  font-size: 20px;
  color: #0095ff;
}

.about-us .content p:last-child {
  margin-bottom: 0;
}

/* WhatsApp Popup CSS */
#whatsapp-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(45deg, #007e79, #00b34e);
  color: white;
  border-radius: 50px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
}

#whatsapp-popup:hover {
  transform: scale(1.1);
}

@keyframes pop-up {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.pop-up-animation {
  animation: pop-up 1s infinite;
}

#whatsapp-chat {
  display: none;
  position: fixed;
  bottom: 90px;
  left: 20px;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  z-index: 1000;
}

#whatsapp-chat-header {
  background: linear-gradient(45deg, #007e79, #00b34e);
  color: white;
  padding: 10px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

#whatsapp-chat-body {
  padding: 10px;
}

#whatsapp-chat-body textarea {
  width: 100%;
  height: 80px;
  resize: none;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
}

#whatsapp-chat-body button {
  background-color: #25D366;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  margin-top: 10px;
}

#whatsapp-chat-body button:hover {
  background-color: #076327;
}

/* Responsive Design */
@media (max-width: 767px) {
  #whatsapp-popup {
    width: 50px;
    height: 50px;
    bottom: 10px;
    left: 10px;
  }

  #whatsapp-chat {
    width: 90%;
    left: 5%;
    bottom: 70px;
  }

  #whatsapp-chat-header {
    font-size: 14px;
  }

  #whatsapp-chat-body textarea {
    height: 60px;
    font-size: 14px;
  }

  #whatsapp-chat-body button {
    padding: 8px;
    font-size: 14px;
  }
}


/*--------------------------------------------------------------
# CSS Terbaru Tambahan Fitur
--------------------------------------------------------------*/
/* 
---------------------------------------------
Ada Apa
--------------------------------------------- 
*/
.adaapa {
  padding: 60px 0;
  background-image: url('../img/slid/c6.png');
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
  background-attachment: fixed; /* Menambahkan efek parallax */
  text-align: center;
  overflow: hidden; /* Untuk menjaga elemen tetap berada di dalam container */
  animation: backgroundPan 20s infinite linear; /* Animasi pergerakan background */
}

.adaapa::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Overlay hitam semi-transparan */
  z-index: 0; /* Menempatkan overlay di bawah konten */
}

.adaapa .section-heading {
  position: relative; /* Memastikan konten berada di atas overlay */
  z-index: 1; /* Mengatur z-index agar konten berada di atas overlay */
  text-align: center;
  margin-bottom: 40px;
}

.adaapa .section-heading h6 {
  font-size: 20px;
  color: #007e79;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-in-out; /* Menambahkan animasi */
}

.adaapa .section-heading h4 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1.2s ease-in-out; /* Menambahkan animasi */
}

.adaapa .section-heading .highlight {
  animation: textGlow 2s infinite alternate; /* Menambahkan efek glow khusus pada ROHTEK */
}

.adaapa-item {
  position: relative;
  z-index: 1; /* Pastikan konten berada di atas overlay */
  padding: 20px;
  margin-bottom: 30px;
  transition: transform 0.3s ease-in-out;
  background-repeat: no-repeat;
}

.adaapa-item:hover {
  transform: translateY(-10px); /* Efek hover pada item */
}

.adaapa-item h4 {
  color: black; /* Menetapkan warna hitam untuk teks Arsitektur, Konstruksi, dan Perawatan */
  animation: fadeIn 1.5s ease-in-out;
}

/* Animasi */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes textGlow {
  from {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.4);
  }
  to {
    text-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 30px rgba(255, 255, 255, 0.9), 0 0 40px rgba(255, 255, 255, 0.7);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .adaapa .section-heading h6 {
    font-size: 18px;
  }
  .adaapa .section-heading h4 {
    font-size: 28px;
  }
  .adaapa-item {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .adaapa .section-heading h6 {
    font-size: 16px;
  }
  .adaapa .section-heading h4 {
    font-size: 24px;
  }
  .adaapa-item {
    padding: 10px;
  }
}
/* 
---------------------------------------------
Mengapa Rohtek
--------------------------------------------- 
*/
.mengapa-rohtek {
  padding: 60px 0;
  background-image: url('../img/slid/c6.png');
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
  background-attachment: fixed; /* Menambahkan efek parallax */
  text-align: center;
  overflow: hidden; /* Untuk menjaga elemen tetap berada di dalam container */
  animation: backgroundPan 20s infinite linear; /* Animasi pergerakan background */
}

.mengapa-rohtek::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Overlay hitam semi-transparan */
  z-index: 0; /* Menempatkan overlay di bawah konten */
}

.mengapa-rohtek .section-title {
  margin-bottom: 40px;
  position: relative;
  z-index: 1; /* Memastikan konten di atas overlay */
}

.mengapa-rohtek .section-title h2 {
  font-size: 36px;
  color: #042847;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  animation: fadeInDown 1s ease-in-out;
}

.mengapa-rohtek .section-title h2 .highlight {
  color: #0095ff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.mengapa-rohtek .section-title p {
  max-width: 800px;
  margin: 0 auto;
  color: #000000; /* Mengubah teks menjadi putih agar kontras dengan overlay */
  font-size: 16px;
  line-height: 1.6;
  animation: fadeInUp 1s ease-in-out;
}

.mengapa-rohtek .service-item {
  margin-bottom: 30px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  animation: fadeIn 1.5s ease-in-out;
}

.mengapa-rohtek .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.mengapa-rohtek .icon-box {
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: left;
  position: relative;
  height: 100%;
  overflow: hidden;
}

.mengapa-rohtek .icon-box .icon {
  font-size: 48px;
  color: #042847;
  margin-bottom: 15px;
  display: inline-block;
  animation: bounceIn 1s ease-in-out;
}

.mengapa-rohtek .icon-box h4 {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.mengapa-rohtek .icon-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #555;
}

.mengapa-rohtek .icon-box ul li {
  font-size: 14px;
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
  transition: color 0.3s;
}

.mengapa-rohtek .icon-box ul li:hover {
  color: #0095ff;
}

.mengapa-rohtek .icon-box ul li::before {
  content: "\f00c"; /* Checkmark icon from Font Awesome */
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  color: #042847;
  font-size: 14px;
  transition: color 0.3s;
}

.mengapa-rohtek .icon-box ul li:hover::before {
  color: #0095ff;
}

/* Text Box for Section Title */
.mengapa-rohtek .text-box {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: inline-block;
  margin-bottom: 40px;
  transition: box-shadow 0.3s ease-in-out;
}

.mengapa-rohtek .text-box:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Animasi */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  100% {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

/* Animasi background */
@keyframes backgroundPan {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .mengapa-rohtek .section-title h2 {
    font-size: 30px;
  }

  .mengapa-rohtek .section-title p {
    font-size: 15px;
  }

  .mengapa-rohtek .icon-box h4 {
    font-size: 20px;
  }

  .mengapa-rohtek .icon-box ul li {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .mengapa-rohtek .section-title h2 {
    font-size: 26px;
  }

  .mengapa-rohtek .section-title p {
    font-size: 14px;
  }

  .mengapa-rohtek .icon-box h4 {
    font-size: 18px;
  }

  .mengapa-rohtek .icon-box ul li {
    font-size: 12px;
  }
}



/* 
---------------------------------------------
Mengapa
--------------------------------------------- 
*/
.mengapa {
  padding: 60px 0;
  background-image: url('../img/mengapa.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  color: white;
  position: relative;
  background-attachment: fixed; /* Menambahkan efek parallax */
  overflow: hidden; /* Untuk menjaga elemen tetap berada di dalam container */
  animation: backgroundPan 20s infinite linear; /* Animasi pergerakan background */
}

.mengapa::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Overlay hitam semi-transparan */
  z-index: 1; /* Menempatkan overlay di bawah konten */
}

.mengapa .container {
  position: relative;
  z-index: 2; /* Memastikan konten berada di atas overlay */
}

.mengapa .section-heading {
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-in-out; /* Menambahkan animasi masuk */
}

.mengapa .section-heading h6,
.mengapa .section-heading h4 {
  margin: 0;
  position: relative;
  z-index: 2;
  animation: slideInFromLeft 1.5s ease-out; /* Animasi geser dari kiri */
}

.mengapa .section-heading h6 {
  font-size: 16px;
  color: #00b34e;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  padding: 5px;
  display: inline-block;
}

.mengapa .section-heading h4 {
  font-size: 32px;
  font-weight: 700;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  padding: 5px;
  display: inline-block;
  animation-delay: 0.3s; /* Menambahkan sedikit delay untuk efek berurutan */
}

.mengapa .section-heading .highlight {
  color: white;
  animation: textGlow 1.5s infinite alternate; /* Efek glow */
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  background: linear-gradient(45deg, #007e79, #00b34e);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  animation: fadeIn 1.5s ease-in-out; /* Menambahkan animasi masuk */
}

.testimonial-slider .slide {
  display: none;
  padding: 20px;
  font-size: 16px;
  line-height: 1.5;
  transition: all 0.5s ease;
  color: white;
  text-align: justify; /* Membuat teks rata kiri dan kanan */
  animation: fadeIn 1s ease-in-out; /* Animasi fade in untuk slide */
}

.testimonial-slider .slide.active {
  display: block;
}

.testimonial-slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 3;
  transition: background-color 0.3s ease;
}

.testimonial-slider button:hover {
  background-color: rgba(255, 255, 255, 0.8); /* Menambahkan efek hover pada tombol */
}

.testimonial-slider .prev {
  left: 20px;
}

.testimonial-slider .next {
  right: 20px;
}

/* Animasi */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes textGlow {
  from {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.7), 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.5);
  }
  to {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 0 30px rgba(255, 255, 255, 0.8), 0 0 40px rgba(255, 255, 255, 0.7);
  }
}

@keyframes backgroundPan {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

/* Responsive Design */
@media (max-width: 767px) {
  .mengapa .section-heading h4 {
    font-size: 24px;
  }

  .testimonial-slider {
    padding: 20px;
  }

  .testimonial-slider .slide {
    font-size: 14px;
  }
}


/* 
---------------------------------------------
Galeri
--------------------------------------------- 
*/
.backgr .gallery {
  padding: 60px 0;
  background-image: url('../img/galeri.jpg');
  background-size: cover;
  background-position: center;
}

.gallery .section-heading {
  text-align: left;
  margin-bottom: 20px;
}

.gallery .section-heading h2 {
  font-weight: bold;
  color: #000000;
}

.btn-group {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 40px;
}

.btn-custom {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 10px 20px;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.btn-custom.active,
.btn-custom:hover {
  background: linear-gradient(45deg, #007e79, #00b34e);
  color: white;
}

.gallery-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  position: relative;
  margin-bottom: 20px;
}

.gallery-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.gallery-item img:hover {
  transform: scale(1.1);
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.gallery-item:hover::before {
  opacity: 1;
}

/* Responsive Layout */
@media (max-width: 1199px) {
  .btn-group {
    justify-content: center;
  }

  .gallery .section-heading {
    text-align: center;
  }
}

@media (max-width: 991px) {
  .gallery .section-heading {
    text-align: center;
  }

  .btn-group {
    justify-content: center;
    margin-bottom: 20px;
  }

  .gallery-item {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .gallery .section-heading {
    text-align: center;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-custom {
    margin: 10px 0;
  }

  .gallery-item {
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .gallery .section-heading {
    text-align: center;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-custom {
    margin: 10px 0;
  }

  .gallery-item {
    margin-bottom: 15px;
  }
}

/* Additional styling for modal (if applicable) */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 80%;
  max-width: 700px;
}

.modal-image {
  width: 100%;
  height: auto;
  display: block;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}




/* 
---------------------------------------------
Profil dan Sejarah Section
--------------------------------------------- 
*/
#profil-sejarah {
  background-image: url('../img/green-01.jpg');
  background-size: cover;
  background-attachment: fixed; /* Menambahkan efek parallax */
  background-position: center;
  text-align: center;
  padding: 60px 0;
  position: relative;
}

#profil-sejarah::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 /* background: rgba(0, 0, 0, 0.5);  Overlay efek */
  z-index: 1;
}

#profil-sejarah .container {
  position: relative;
  z-index: 2;
}

.profil-sejarah-box {
  background: linear-gradient(45deg, #007e79, #00b34e);
  color: #ffffff; /* Ensure text is readable on gradient background */
  border: 1px solid #ddd;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 40px;
  text-align: justify;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profil-sejarah-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.justified-text {
  text-align: justify;
  margin-bottom: 1.5em; /* Add spacing after each paragraph */
  color: #ffffff; /* Ensure text is readable on gradient background */
}

#profil-sejarah h4 {
  color: #ffffff; /* Change heading color to white for better contrast */
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px; /* Add spacing after heading */
}

#profil-sejarah h2 {
  color: #ffffff; /* Change subheading color to white for better contrast */
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px; /* Add spacing after subheading */
}

@media (max-width: 576px) {
  .profil-sejarah-box {
    padding: 20px;
  }
}


/* 
---------------------------------------------
Projects
--------------------------------------------- 
*/
.projects {
  padding: 60px 0;
  background-image: url('../img/galeri.jpg');
  background-size: cover;
  background-attachment: fixed; /* Menambahkan efek parallax */
  background-position: center;
  text-align: center;
}

.projects .section-heading {
  text-align: left;
  margin-bottom: 20px;
}

.projects .section-heading h4 {
  color: #ffffff; /* Mengubah warna teks menjadi putih */
}

.btn-portfolio {
  background: linear-gradient(45deg, #007e79, #00b34e);
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.btn-portfolio:hover {
  background: linear-gradient(45deg, #007e79, #00b34e);
}

.project-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  text-align: center;
}

.project-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 15px;
}

.project-item h4 {
  color: #ffffff; /* Mengubah warna teks menjadi putih */
  margin-bottom: 15px;
  font-weight: bold;
}

.btn-primary {
  background: linear-gradient(45deg, #007e79, #00b34e);
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background: linear-gradient(45deg, #007e79, #00b34e);
}

.timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  border-top: 2px solid #ddd;
  padding-top: 20px;
}

.timeline-item {
  text-align: center;
}

.timeline-item span {
  display: block;
  font-size: 18px;
  color: #ffffff; /* Mengubah warna teks menjadi putih */
}



/* 
---------------------------------------------
Proyek
--------------------------------------------- 
*/
.project-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease-in-out;
}

.project-item:hover {
  transform: translateY(-10px);
}

.project-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.project-item h4 {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

.project-item .caption-text {
  color: black; /* Menetapkan warna hitam untuk teks caption gambar proyek */
}

.project-item .btn {
  margin-top: 10px;
  background: linear-gradient(45deg, #007e79, #00b34e);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  text-align: center;
  transition: background 0.3s ease;
}

.project-item .btn:hover {
  background: linear-gradient(45deg, #00b34e, #007e79);
  color: white;
}

@media (max-width: 767px) {
  .project-item {
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .project-item {
    margin-bottom: 30px;
  }
}

/* 
---------------------------------------------
Keunggulan
--------------------------------------------- 
*/
.keunggulan {
  padding: 60px 0;
  background-image: url('../img/galeri.jpg');
  background-size: cover;
  background-attachment: fixed; /* Menambahkan efek parallax */
  background-position: center;
  text-align: center;
}


.keunggulan .section-heading {
  margin-bottom: 40px;
}

.keunggulan .section-heading h2 {
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.keunggulan .section-heading .highlight {
  color: #fff; /* Make ROHTEK text white */
  font-weight: bold;
}

.keunggulan .keunggulan-item {
  background: linear-gradient(45deg, #007e79, #00b34e);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.keunggulan .keunggulan-item h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #fff;
}

.keunggulan .keunggulan-item p {
  font-size: 16px;
  line-height: 1.5;
  color: #e0e0e0;
}

.keunggulan .keunggulan-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  .keunggulan .keunggulan-item {
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .keunggulan .keunggulan-item {
    margin-bottom: 30px;
  }
}

/* 
---------------------------------------------
Maps
--------------------------------------------- 
*/
.maps {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.maps .section-heading {
  margin-bottom: 40px;
}

.maps .section-heading h2 {
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
}

.maps .section-heading .highlight {
  color: #00b34e;
}

.map-image {
  position: relative;
  overflow: hidden;
}

.map-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.map-image img.zoom:hover {
  transform: scale(1.1);
}


.map-label {
  position: absolute;
  top: 70%; /* Ubah nilai ini untuk menggeser vertikal */
  left: 30%; /* Ubah nilai ini untuk menggeser horizontal */
  transform: translate(-50%, -50%);
  background: linear-gradient(45deg, #007e79, #00b34e);
  padding: 5px 7px;
  border-radius: 8px;
  color: white;
  text-align: center;
}

.map-label h4 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
}

.map-label p {
  margin: 0;
  font-size: 14px;
}

.btn-custom {
  background: #042847;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

.btn-custom:hover {
  background: #0095ff;
  color: white;
}

/* Media Queries */
@media (max-width: 767px) {
  .maps .section-heading h2 {
    font-size: 28px;
  }

  .map-label h4 {
    font-size: 16px;
  }

  .map-label p {
    font-size: 12px;
  }
}
/* 
---------------------------------------------
Berita dan Artikel
--------------------------------------------- 
*/
.news-section {
  background-image: url('../img/slid/c4.png');
background-size: cover;
background-attachment: fixed; /* Menambahkan efek parallax */
background-position: center;
text-align: center;
  padding: 50px 0;
  animation: fadeIn 1s ease-in-out;
}

.news-section h2 {
  color: white;
  margin-bottom: 20px;
  animation: slideInFromLeft 1s ease-in-out;
}

.filter-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  animation: fadeIn 1s ease-in-out;
}

.filter-btn {
  background: white;
  border: 1px solid #00b34e;
  color: #000000;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.filter-btn.active, .filter-btn:hover {
  background: #00b34e;
  color: white;
  transform: scale(1.1);
}

.news-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  animation: fadeInUp 1s ease-in-out;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-card .news-content {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-card h4 {
  color: #00b34e;
  margin-bottom: 15px;
  flex-grow: 1;
}

.news-card p {
  color: #333;
  margin-bottom: 15px;
}

.news-card .btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background 0.3s, transform 0.3s;
}

.news-card .btn:hover {
  background: #0056b3;
  transform: scale(1.1);
}

.btn-outline-light {
  color: white;
  border: 1px solid white;
  padding: 10px 20px;
  margin-top: 20px;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.btn-outline-light:hover {
  background: white;
  color: #007e79;
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .filter-buttons {
      justify-content: center;
      margin-bottom: 20px;
  }

  .news-card {
      margin-bottom: 30px;
  }

  .news-section h2 {
      text-align: center;
      margin-bottom: 30px;
  }
}

#search-results {
  margin-top: 20px;
}

#search-results ul {
  list-style-type: none;
  padding: 0;
}

#search-results li {
  margin: 5px 0;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInFromLeft {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeInUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* 
---------------------------------------------
Mitra
--------------------------------------------- 
*/
.mitra {
  padding: 60px 0;
  background-image: url('../img/konten/mit1.jpg');
  background-size: cover;
  background-attachment: fixed; /* Menambahkan efek parallax */
  background-position: center;
  text-align: center;
}

.mitra .section-heading {
  margin-bottom: 40px;
}

.mitra .section-heading h4 {
  font-size: 32px;
  font-weight: 700;
  color: #333;
}

.mitra .section-heading .highlight {
  color: #00b34e;
}

.mitra-item {
  background: white;
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 280px;
  margin: 0 auto;


}

.mitra-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.mitra-logo {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.mitra h4 {
  font-size: 18px;
  font-weight: bold;
  color: #0095ff;
  margin-bottom: 10px;
}

.mitra p {
  font-size: 14px;
  color: #333;
}

@media (max-width: 767px) {
  .mitra-item {
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .mitra-item {
    margin-bottom: 30px;
  }
}


/* 
---------------------------------------------
Proses Order
--------------------------------------------- 
*/
.proses-order {
  
  padding: 60px 0;
  background-color: #f9f9f9;
}

.proses-order .section-heading {
  margin-bottom: 40px;
}

.proses-order .section-heading h2 {
  font-size: 32px;
  font-weight: bold;
  color: #333;
}

.proses-order .section-heading .highlight {
  color: #0095ff;
  
}

.order-step {
  background: rgba(255, 255, 255, 0.9); /* Putih transparan */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 300px; /* Menyamakan tinggi text box */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.order-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5); /* Overlay putih transparan */
  z-index: 1;
}

.order-step i {
  color: #0095ff;
  margin-bottom: 15px;
  z-index: 2;
  position: relative;
}

.order-step h4 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  z-index: 2;
  position: relative;
}

.order-step p {
  font-size: 14px;
  color: #666;
  text-align: center;
  z-index: 2;
  position: relative;
}

.order-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  .order-step {
    margin-bottom: 20px;
    height: auto; /* Menyesuaikan tinggi pada perangkat mobile */
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .order-step {
    margin-bottom: 30px;
    height: auto; /* Menyesuaikan tinggi pada perangkat mobile */
  }
}

/*--------------------------------------------------------------
# Visi, Misi, dan Tujuan Section
--------------------------------------------------------------*/
.visi-misi {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.visi-misi .section-heading {
  margin-bottom: 40px;
}

.visi-misi .section-heading h2 {
  font-size: 36px;
  font-weight: bold;
  color: #000000;
}

.visi-misi .section-heading h4 {
  font-size: 24px;
  font-weight: 400;
  color: #042847; 
}

.visi-misi .card {
  background: white;
  border: none;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Ensure all cards have the same height */
}

.visi-misi .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.visi-misi .card-icon {
  font-size: 40px;
  color: #0095ff;
  margin-bottom: 20px;
}

.visi-misi .card-title {
  font-size: 18px;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 15px;
}

.visi-misi .card-text {
  font-size: 14px;
  color: #333;
  text-align: justify;
}

@media (max-width: 767px) {
  .visi-misi .card {
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .visi-misi .card {
    margin-bottom: 30px;
  }
}



/* ---------------------------------------------
Chief Executive Officer Section
--------------------------------------------- */
#ceo {
  background-image: url('../img/green-01.jpg');
  background-size: cover;
  background-attachment: fixed; /* Menambahkan efek parallax */
  background-position: center;
  text-align: center;
  padding: 60px 0;
  position: relative;
}

#ceo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 
  z-index: 1;
}

#ceo .container {
  position: relative;
  z-index: 2;
}

.description-box {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: justify;
}

.name-tag {
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: deepskyblue;
  padding: 10px 20px;
  border-radius: 20px;
  color: white;
  font-weight: bold;
}

.img-fluid {
  border-radius: 20px;
}

.position-relative {
  position: relative;
  display: inline-block;
}

@media (max-width: 992px) {
  #ceo .order-lg-2 {
    order: 1 !important;
  }

  #ceo .order-lg-1 {
    order: 2 !important;
  }

  #ceo .text-center {
    text-align: center !important;
  }
}

@media (max-width: 576px) {
  .description-box {
    padding: 15px;
  }
  .name-tag {
    bottom: -15px;
    padding: 8px 15px;
  }
}



/* 
---------------------------------------------
Legalitas
--------------------------------------------- 
*/
.profile-card {
  background-color: #fff;
  border: 5px solid #ddd;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 10px;
  text-align: center;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%; /* Ensures the card takes full height of its container */
}

.image-container {
  position: relative;
  width: 100%;
  padding-top: 125%; /* 4:5 Aspect Ratio */
  overflow: hidden;
  border-radius: 20px;
}

.image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  width: 100%;
  padding: 10px;
  text-align: center;
}

.profile-card:hover {
  transform: translateY(-10px);
}

.profile-card h5 {
  margin: 0;
  font-size: 1rem;
}

#legalitas .row {
  margin-bottom: 0;
}

/* Responsive CSS */
@media (max-width: 768px) {
  .profile-card {
    margin-bottom: 0;
  }
}

@media (max-width: 576px) {
  .profile-card {
    margin-bottom: 0;
  }
  .col-sm-12 {
    padding-left: 0;
    padding-right: 0;
  }
}
@media print {
  body {
    display: none;
  }
}

/* Career Form Styling */
#career-form {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#career-form .form-group {
  margin-bottom: 15px;
}

#career-form label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

#career-form .form-control {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}

#career-form .form-control:focus {
  border-color: #007bff;
  outline: none;
}

#career-form .btn-apply {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  color: #fff;
  background-color: #007bff;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
}

#career-form .btn-apply:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  #career-form .form-group {
    margin-bottom: 20px;
  }
}

/* CSS untuk section Struktur Organisasi */
#struktur-organisasi .profile-card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 10px; /* Kurangi padding untuk memperkecil card */
  text-align: center;
  margin-bottom: 0px; /* Tambahkan jarak antar baris */
  max-width: 320px; /* Batasi lebar maksimum card */
  margin-left: auto; /* Pusatkan card */
  margin-right: auto; /* Pusatkan card */
}

#struktur-organisasi .profile-card img {
  height: 300px; /* Set ukuran tinggi gambar */
  width: 100%; /* Agar lebar gambar menyesuaikan */
  object-fit: cover;
  border-radius: 20px; /* Memastikan gambar menyesuaikan area */
  margin-bottom: 10px; /* Memberi jarak antara gambar dan teks */
}

#struktur-organisasi h5 {
  font-size: 1.2rem; /* Ukuran font judul */
  margin-bottom: 5px;
}
 
#struktur-organisasi p {
  font-size: 1rem; /* Ukuran font paragraf */
}

/* Tambahkan jarak antar kolom di desktop */
#struktur-organisasi .col-lg-4, #struktur-organisasi .col-md-6 {
  margin-bottom: 20px; /* Tambahkan jarak antar kolom di desktop */
}

/* Responsive CSS */
@media (max-width: 768px) {
  #struktur-organisasi .col-md-6 {
    margin-bottom: 20px; /* Tambahkan jarak antar kolom di perangkat kecil */
  }

  #struktur-organisasi .profile-card img {
    height: 200px; /* Sesuaikan ukuran gambar untuk perangkat kecil */
  }
}

@media (max-width: 800px) {
  #struktur-organisasi .col-md-6 {
    margin-bottom: 20px; /* Tambahkan jarak antar kolom di perangkat sangat kecil */
  }

  #struktur-organisasi .profile-card img {
    height: 360px; /* Sesuaikan ukuran gambar untuk perangkat sangat kecil */
  }
}


/*--------------------------------------------------------------
# Our Team
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 40px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  transition: color 0.3s;
  color: #111;
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.team .member .social a i {
  line-height: 0;
}

.team .member .social a:hover {
  color: #0095ff;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #111;
}

.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #b4aca8;
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #847872;
}

.team .member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Our Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #111;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e7e7e7;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: .9s;
  background: linear-gradient(45deg, #007e79, #00b34e);
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: ease-in-out 0.3s;
}

.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.features .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .icon-box h3 a {
  color: #111;
  transition: ease-in-out 0.3s;
}

.features .icon-box h3 a:hover {
  color: #1bbd36;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #847872;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #1bbd36;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #4d4643;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #1bbd36;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.pricing .btn-buy {
  background: #1bbd36;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #2ae149;
}

.pricing .featured h3 {
  color: #fff;
  background: #1bbd36;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #1bbd36;
  color: #fff;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: lightgray;
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #1bbd36;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 40px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #dddddd;
  font-size: 26px;
}

.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;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-wrap {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.contact .info {
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #1bbd36;
  float: left;
  width: 44px;
  height: 44px;
  border: 1px solid #1bbd36;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #111;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #444444;
}

.contact .info:hover i {
  background: #1bbd36;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  padding: 30px;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #1bbd36;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #1bbd36;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #2ae149;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #111;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #1bbd36;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #777777;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li + li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #847872;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #1bbd36;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #1ed33c;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #4d4643;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #111;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #5e5e5e;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #1e1e1e;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #1bbd36;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li + li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #111;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(17, 17, 17, 0.5);
  margin-right: 5px;
}

.blog .blog-author p {
  font-style: italic;
  color: #bfb9b6;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
  width: 60px;
}

.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #4d4643;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #1bbd36;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #111;
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #2b2b2b;
  margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #57e76f;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #57e76f;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #111;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #1e1e1e;
}

.blog .blog-pagination {
  color: #444444;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #111;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active, .blog .blog-pagination li:hover {
  background: #1bbd36;
}

.blog .blog-pagination li.active a, .blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #111;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type="text"] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #1bbd36;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: #1ecf3b;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li + li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #111;
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: #1bbd36;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #b4aca8;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #111;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #1bbd36;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #b4aca8;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #515151;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #c4c4c4;
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #042847;
  background: #042847;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: #aaaaaa;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #111;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #042847;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 22px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: rgba(255, 255, 255, 0.7);
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  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: #0095ff;
  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: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #fff;
}

#footer .footer-newsletter {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px 0 0 4px;
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -4px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #0095ff;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #0095ff;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #fff;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #0095ff;
  color: #fff;
  text-decoration: none;
}
