:root {
    --primary-color: #2a4951;
    --secondary-color: #0e293b;
    --background-dark: #091e2b;
    --card-bg: #2a4951;
    --text-light: #f8f9fa;
    --text-muted: #adb5bd;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    background-color: #f0f4f8;
    color: #333;
  }
/* ========================================================== */
/* ====== CSS FINAL & LENGKAP UNTUK HERO SECTION & CAROUSEL ====== */
/* ========================================================== */

/* --- 1. Container Utama Header --- */
.header-hero-section {
    min-height: 85vh;
    position: relative; /* KUNCI: Ini adalah jangkar untuk panah & indikator */
    background-size: cover;
    background-position: center;
    transition: background-image 0.7s ease-in-out;
}

/* --- 2. Ukuran Carousel & Penataan Slide --- */
#heroCarousel, 
.carousel-inner, 
.carousel-item {
    height: 100%;
    min-height: 85vh; /* Samakan tinggi dengan parent */
}

#heroCarousel .carousel-item.active {
    display: flex !important;
    align-items: center; /* Rata tengah vertikal untuk konten di dalam slide */
}

/* --- 3. Latar Belakang per Slide (SEMUA DENGAN LAPISAN GELAP) --- */
.header-hero-section,
.header-hero-section:has(#slide1.active),
.header-hero-section:has(#slide2.active),
.header-hero-section:has(#slide3.active),
.header-hero-section:has(#slide4.active),
.header-hero-section:has(#slide5.active),
.header-hero-section:has(#slide6.active),
.header-hero-section:has(#slide7.active) {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}

.header-hero-section:has(#slide1.active) { background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://www.device42.com/wp-content/uploads/2024/02/header-image.webp'); }
.header-hero-section:has(#slide2.active) { background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/assets/img/carousel/p.png'); }
.header-hero-section:has(#slide3.active) { background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/assets/img/carousel/cloudwise2.png'); }
.header-hero-section:has(#slide4.active) { background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://www.dbappsecurity.com/Upload/image/20250402/20250402092405_4874_2063x1156.jpg');}
.header-hero-section:has(#slide5.active) { background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://www.colasoft.com/img/slides/banner.jpg');}
.header-hero-section:has(#slide6.active) { background-image: none; background-color: #003a32; }
.header-hero-section:has(#slide7.active) { background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/assets/img/carousel/udesk2.png');}


/* --- 4. Posisi Tetap & Gaya untuk Kontrol (Panah & Indikator) --- */
.header-hero-section .carousel-control-prev,
.header-hero-section .carousel-control-next,
.header-hero-section .carousel-indicators {
    position: absolute;
    z-index: 20;
}

/* Posisi Panah */
.header-hero-section .carousel-control-prev { left: 2rem; top: 50%; transform: translateY(-50%); }
.header-hero-section .carousel-control-next { right: 2rem; top: 50%; transform: translateY(-50%); }

/* Posisi Indikator */
.header-hero-section .carousel-indicators { bottom: 30px; left: 50%; transform: translateX(-50%); margin: 0; }

/* Gaya Tombol Panah */
.header-hero-section .carousel-control-prev,
.header-hero-section .carousel-control-next {
    background: none; border: none; opacity: 0.7; transition: opacity 0.3s ease;
}
.header-hero-section .carousel-control-prev:hover,
.header-hero-section .carousel-control-next:hover { opacity: 1; }

/* Gaya Ikon di dalam Panah */
.header-hero-section .carousel-control-prev i,
.header-hero-section .carousel-control-next i { font-size: 2.5rem; color: white; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }

/* Gaya Tombol Indikator */
.header-hero-section .carousel-indicators button { width: 12px; height: 12px; border-radius: 50%; background-color: white; opacity: 0.5; border: none; margin: 0 5px; }
.header-hero-section .carousel-indicators .active { opacity: 1; }


/* --- 5. Gaya Khusus untuk Konten Slide 5 --- */
.hero-title-large { font-size: 3rem; font-weight: 700; line-height: 1.2; margin-bottom: 0.5rem; }
.hero-title-large .highlight-text { color: #f39c12; font-weight: 700; }
.hero-subtitle-large { font-size: 1.5rem; font-weight: 400; color: #f8f9fa; margin-bottom: 2rem; }
.feature-list-hero { list-style: none; padding-left: 0; text-align: left; max-width: 600px; }
.feature-list-hero li { position: relative; padding-left: 30px; margin-bottom: 0.75rem; font-size: 1.1rem; }
.feature-list-hero li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: #f39c12; position: absolute; left: 0; top: 5px; }
.hero-buttons { display: flex; align-items: center; gap: 1.5rem; }
.learn-more-link { color: white; font-weight: 600; text-decoration: none; transition: color 0.3s ease; }
.learn-more-link:hover { color: #f39c12; }


  .navbar {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  
  .navbar-brand img {
    max-height: 40px; 
  }
  
  .navbar-nav .nav-link {
    color: var(--text-light);
    margin: 0 1rem;
    font-weight: 500;
  }
  
  .navbar-nav .nav-link.active,
  .navbar-nav .nav-link:hover {
    color: var(--primary-color);
  }

  /* ================================================== */
/* ====== CSS KHUSUS UNTUK NAVIGASI HALAMAN NEWS ====== */
/* ================================================== */
.navbar-toggler {
    border-color: var(--primary-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(42, 73, 81, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.page-news .navbar-nav .nav-link {
  color: #000000;
}

.page-news .navbar.sticky-top {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
}

.page-news .navbar-nav .nav-link.active,
.page-news .navbar-nav .nav-link:hover {
  color: var(--primary-color); 
}
  
  .btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
  }
  
  .btn-primary-custom:hover {
    background-color: #0099d1;
    border-color: #0099d1;
  }
  
  .btn-outline-light {
    border-color: var(--text-light);
    color: var(--text-light);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
  }
  
  .btn-outline-light:hover {
    background-color: var(--text-light);
    color: var(--background-dark);
  }
  
  .hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 1.5rem 0;
  }
  
  #heroCarousel .carousel-item {
    padding-top: 4rem;
  }
  
  .section-title {
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    position: relative;
  }

    /* ========================================= */
  /* ====== CSS UNTUK BAGIAN TRUSTED ====== */
  /* ========================================= */
  
  .trusted-by-section {
    padding: 5rem 0;
    background-color: #fff;
  }
  
  .logo-slider {
    display: flex;
    align-items: center;
  }
  
  .logo-slider img {
    max-height: 60px;
    width: auto;
    margin: 0 auto;
    transition: all 0.3s ease;
  }
  
  .logo-slider img:hover {
    filter: grayscale(0%);
    opacity: 1;
  }
  
  .slick-slide {
    margin: 0 15px;
  }

    /* ========================================= */
  /* ====== CSS UNTUK BAGIAN SOLUSI KAMI====== */
  /* ========================================= */
  
  .our-solutions-section {
    background-color: #f0f4f8;
    padding: 6rem 0;
    overflow: hidden;
  }
  
  .solutions-slider .slick-list {
    padding: 40px 0 !important; 
  }
  
  .solution-card-wrapper {
    padding: 0 15px;
  }
  
  .solution-card {
    background-color: var(--card-bg);
    color: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid #204156;
    
    /* KUNCI PERBAIKAN FINAL: Atur tinggi kartu secara paksa */
    height: 330px; /* <--- NILAI TETAP (bisa disesuaikan) */
}
  
  .card-icon {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
  }
  
  .solution-card h5 {
    font-weight: 600;
    margin-bottom: 1rem;
  }
  
  .solution-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
  }
  
  .slick-center .solution-card {
    transform: scale(1.15); 
    background-color: #072c44;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  }

  
  .solutions-slider .slick-dots {
    bottom: -35px; 
  }
  
  .solutions-slider .slick-dots li {
    margin: 0 8px;
  }
  
  .solutions-slider .slick-dots li button:before {
    font-size: 12px;
    color: var(--secondary-color);
    opacity: 0.5;
    transition: all 0.3s ease;
  }
  
  .solutions-slider .slick-dots li.slick-active button:before {
    color: var(--primary-color);
    opacity: 1;
  }
  
  .solutions-slider .slick-arrow {
    position: absolute;
    top: 50%; 
    transform: translateY(-50%);
    z-index: 10; 
  
    /* Styling tombol */
    background-color: rgba(
      255,
      255,
      255,
      0.8
    ); 
    color: var(--primary-color); 
    border: none;
    border-radius: 50%; 
    width: 50px; 
    height: 50px; 
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .solutions-slider .slick-arrow:hover {
    background-color: var(--primary-color);
    color: white; 
  }

.solutions-slider .slick-prev::before,
.solutions-slider .slick-next::before {
    display: none;
}
  
  .solutions-slider .slick-prev {
    left: -25px; 
  }
  
  .solutions-slider .slick-next {
    right: -25px; 
  }
  
  @media (max-width: 1200px) {
    .solutions-slider .slick-prev {
      left: 10px;
    }
    .solutions-slider .slick-next {
      right: 10px;
    }
  }
  
  @media (max-width: 576px) {
  }
  
  /* ========================================= */
  /* ====== CSS UNTUK BAGIAN PRODUK KAMI ====== */
  /* ========================================= */
  
  .our-product-section {
    padding: 2rem 0;
    background-color: #f0f4f8;
  }
  
  .our-product-section .product-block,
  .our-product-section .product-block-dark {
    margin-top: 5rem;
  }
  
  .product-text {
    padding-right: 2rem; 
  }
  
  .product-title {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .product-subtitle {
    font-size: 1.1rem;
    color: #55626b;
    margin-bottom: 1.5rem;
  }
  
  .product-features {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 2rem;
  }
  
  .product-features li {
    position: relative;
    padding-left: 25px; 
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    font-weight: 500;
  }
  
  .product-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -2px;
    color: var(--primary-color); 
    font-size: 1.5rem; 
  }
  
  .read-more {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .read-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
  }
  
  .read-more:hover {
    color: #007bb5;
  }
  
  .read-more:hover i {
    transform: translateX(5px); 
  }
  
  .product-image-container {
    text-align: center;
  }
  
  .reverse-layout {
    flex-direction: row-reverse;
  }

  @media (max-width: 991px) {
    .reverse-layout {
      flex-direction: row; 
    }
    .product-text {
      padding-right: 0;
      margin-top: 2rem;
    }
    .product-block,
    .product-block-dark {
      text-align: center;
    }
    .product-features {
      display: inline-block;
      text-align: left;
    }
  }
  
  .product-card-dark {
    background-color: var(--secondary-color); 
    color: white;
    padding: 3rem;
    border-radius: 20px;
    height: 100%;
  }
  
  .product-card-dark .product-title,
  .product-card-dark .product-subtitle,
  .product-card-dark .product-features li {
    color: white;
  }
  
  .product-card-dark .product-subtitle {
    color: var(--text-muted);
  }
  
  /* ========================================= */
  /* ====== CSS UNTUK BAGIAN LATEST NEWS ====== */
  /* ========================================= */
  
  .latest-news-section {
    padding: 6rem 0;
    background-color: #e9eef2;
  }
  
  .latest-news-section .section-subtitle {
    font-size: 1.15rem;
    color: #55626b;
    max-width: 500px;
    margin: 0 auto 4rem auto;
  }
  
  .news-card {
    background-color: #f0f4f8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }
  
  .news-image-wrapper {
    overflow: hidden;
    height: 250px;
  }
  
  .news-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.4s ease;
  }
  
  .news-card:hover .news-image-wrapper img {
    transform: scale(1.05);
  }
  
  .news-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
  }
  
  .news-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1; 
  }
  
  .btn-see-all {
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    font-weight: 700;
    padding: 0.8rem 2.5rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }
  
  .btn-see-all:hover {
    background-color: var(--secondary-color);
    color: white;
  }
  
  /* ================================================== */
  /* ====== CSS RESPONSIVE UNTUK PRODUK & NEWS ====== */
  /* ================================================== */
  
  @media (max-width: 991.98px) {
    .our-product-section .product-block,
    .our-product-section .product-block-dark {
      text-align: center;
    }
  
    .product-text {
      padding-right: 0;
    }
  
    .our-product-section .col-md-12 + .col-md-12 {
      margin-top: 2rem;
    }
  
    .product-features {
      display: inline-block;
      text-align: left;
      margin-bottom: 1.5rem;
    }
  
    .product-card-dark {
      padding: 2rem; 
    }
  }
  
  @media (max-width: 767.98px) {
    .product-title {
      font-size: 1.5rem; 
    }
  
    .product-subtitle {
      font-size: 1rem;
    }
  
    .latest-news-section .section-subtitle {
      font-size: 1rem; 
    }
  
    .news-title {
      font-size: 1.1rem;
    }
  
    .news-image-wrapper {
      height: 220px; 
    }
  }
  /* ========================================= */
  /* ====== CSS UNTUK BAGIAN CTA ====== */
  /* ========================================= */
  
  .cta-section {
    padding: 1rem 0;
  }
  
  .cta-content {
    background-color: var(--primary-color); 
    padding: 1.5rem 1.5rem;
    border-radius: 25px; 
  }
  
  .cta-title {
    color: white;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    margin-bottom: 0.5rem;
  }
  
  .cta-text {
    color: var(--text-muted);
    font-size: 0.9rem; 
  }
  
  .btn-cta {
    background-color: var(--secondary-color); 
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 50px; 
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .btn-cta:hover {
    background-color: #00c1ff; 
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 174, 239, 0.4);
  }
  
  @media (max-width: 991.98px) {
    .cta-content {
      text-align: center;
      padding: 3rem 1.5rem;
    }
    .cta-title {
      font-size: 2rem;
    }
    .cta-text {
      max-width: 100%;
      margin-bottom: 2rem;
    }
  }
  
  /* ========================================= */
  /* ====== CSS UNTUK BAGIAN FOOTER ====== */
  /* ========================================= */
  
  .site-footer {
    background-color: var(--primary-color);
    color: var(--text-muted);
    padding-top: 5rem;
    font-size: 0.95rem;
  }
  
  .footer-logo {
    max-width: 100px;
    opacity: 0.8;
    color: var(--text-light);
  }
  
  .widget-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
  }
  
  .contact-list {
    list-style: none;
    padding-left: 0;
  }
  
  .contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
  }
  
  .contact-list i {
    color: var(--text-light); 
    margin-right: 15px;
    font-size: 1.1rem;
    width: 20px; 
    text-align: center;
    margin-top: 3px;
  }
  
  .footer-links {
    list-style: none;
    padding-left: 0;
  }
  
  .footer-links li {
    margin-bottom: 0.75rem;
  }
  
  .footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .footer-links a:hover {
    color: white;
    padding-left: 5px;
  }
  
  .subscribe-form {
    position: relative;
    display: flex;
  }
  
  .subscribe-form input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.9rem 1rem;
    color: white;
  }
  
  .subscribe-form input::placeholder {
    color: var(--text-muted);
  }
  
  .subscribe-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 45px;
    border: none;
    background-color: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
  }
  
  .subscribe-form button:hover {
    background-color: #00c1ff;
  }
  
  /* Bagian Copyright */
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding: 1.5rem 0;
  }
  
  .copyright-text {
    margin: 0;
    color: var(--text-muted);
  }
  
  .social-icon {
    color: var(--text-muted);
    font-size: 1.3rem;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .social-icon:hover {
    color: white;
  }
  
  /* ========================================= */
/* ====== CSS UNTUK HALAMAN PRODUK ====== */
/* ========================================= */

.product-page-section {
  padding: 6rem 0;
  background-color: white; 
}

.product-tabs {
  border-bottom: 2px solid #dee2e6; 
  margin-bottom: 3rem;
  justify-content: center; 
}

.product-tabs .nav-link {
  border: none;
  border-bottom: 3px solid transparent; 
  color: #6c757d; 
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.8rem 1.2rem;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.product-tabs .nav-link:not(.active):hover {
  color: var(--secondary-color);
}

.product-tabs .nav-link.active {
  color: var(--primary-color); 
  background-color: transparent;
  border-bottom: 3px solid var(--primary-color); 
}

.tab-content {
  padding-top: 2rem;
}

/* ================================================== */
/* ====== CSS HALAMAN NEWS (FINAL) ====== */
/* ================================================== */

.news-page-section {
  padding: 5rem 0;
  background-color: #fff;
}

/* --- Header Halaman (Judul & Search) --- */
.page-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e9ecef;
}

.page-main-title {
  font-weight: 700;
  margin: 0;
  color: var(--primary-color); 
}

.search-form {
  position: relative;
  max-width: 280px;
  width: 100%;
}

.search-form .form-control {
  border-radius: 50px;
  padding-left: 1.25rem;
  padding-right: 3.5rem;
  border-color: #ced4da;
}

.search-form .btn {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-form .btn:hover {
  background-color: #0099d1;
}

/* --- Kartu Berita (Gaya dari Halaman Home) --- */
.news-card {
  background-color: #f0f4f8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.news-image-wrapper { 
  height: 220px; 
  overflow: hidden; 
}
.news-image-wrapper img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.4s ease;
}
.news-card:hover .news-image-wrapper img {
  transform: scale(1.05);
}
.news-content { 
  padding: 1.75rem; 
  display: flex; 
  flex-direction: column; 
  flex-grow: 1; 
}
.news-title { 
  font-size: 1rem; 
  font-weight: 600; 
  color: var(--secondary-color); 
  line-height: 1.5; 
  margin-bottom: 1rem; 
  flex-grow: 1; 
}

/* --- Navigasi Halaman (Pagination) --- */
.pagination-container {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

.pagination .page-item .page-link {
  border: 2px solid #dee2e6;
  color: var(--secondary-color);
  font-weight: 600;
  margin: 0 5px;
  border-radius: 8px !important;
  padding: 0.5rem 1rem;
}

.pagination .page-item .page-link:hover {
  background-color: #e9ecef;
  border-color: var(--primary-color);
}

.pagination .page-item.active .page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
  box-shadow: 0 4px 8px rgba(0, 174, 239, 0.3);
}

/* ================================================== */
/* ====== CSS HALAMAN SERVICES ====== */
/* ================================================== */

/* --- Hero Section --- */
.services-hero-section {
  min-height: 45vh;
  padding: 4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: linear-gradient(rgba(9, 30, 43, 0.6), rgba(9, 30, 43, 0.6)), url('/assets/img/Group\ 143726069.png');
  background-size: cover;
  background-position: center;
}

.services-hero-section .hero-title {
  color: white; 
    font-size: 2rem; 
    font-weight: 700;
    max-width: 850px;
    line-height: 1.3;
}

/* --- Our Services Section --- */
.services-list-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.section-title {
  font-weight: 700;
  color: var(--secondary-color, #0E293B);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.15rem;
  color: #55626b;
  margin-bottom: 3rem;
}

.service-card {
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 15px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px); 
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  padding: 1.75rem;
}

.service-card h5 {
  font-weight: 600;
  color: var(--secondary-color, #0E293B);
}

.service-card p {
  color: #55626b;
  margin-bottom: 1.5rem;
}


/* --- Join Program Section --- */
.join-program-section {
  padding: 5rem 0;
  background-color: var(--primary-color, #0E293B);
}

.feature-box {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  color: white;
  font-weight: 500;
  text-align: left;
  display: flex;
  align-items: center;
}

.feature-box::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #ffffff;
  font-size: 1.2rem;
  margin-right: 12px;
}

.level-partner-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.partner-card {
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
  height: 100%;
  transition: all 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.partner-icon {
  max-height: 80px;
  margin-bottom: 1.5rem;
}

.partner-card h4 {
  font-weight: 700;
  color: var(--secondary-color, #0E293B);
  margin-bottom: 1rem;
}

.partner-card p {
  color: #55626b;
  margin-bottom: 2rem;
}

.btn-dark-custom {
  background-color: var(--primary-color, #0E293B);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-dark-custom:hover {
  background-color: #00AEEF;
  color: white;
}

/* ================================================== */
/* ====== CSS HALAMAN ABOUT US ====== */
/* ================================================== */

.about-section {
  padding: 5rem 0;
}

/* --- Welcome Section --- */
.welcome-section {
  background-color: #fff;
}

.welcome-section .text-primary-custom {
  color: var(--primary-color, #00AEEF);
  font-weight: 600;
  font-size: 1.2rem;
}

.welcome-section .section-title {
  margin-bottom: 1.5rem;
}

.welcome-section .text-secondary {
  color: #55626b;
  line-height: 1.8;
}

/* --- Grup Company Section --- */
.grup-company-section {
  background-color: var(--primary-color, #0E293B);
}

.company-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  border: 1px solid #dee2e6;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  height: 100%;
}

.company-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1rem;
  aspect-ratio: 4 / 3; 
  object-fit: cover;
}


.company-card p {
  margin: 0;
}


.company-card .company-title {
  font-size: 1.1rem; 
  font-weight: 700; 
  color: var(--secondary-color, #0E293B);
  margin-bottom: 0.25rem; 
}

.company-card .company-subtitle {
  font-size: 0.85rem; 
  color: #6c757d;    
}

.authorized-badge-img {
  max-width: 400px; 

}

@media (max-width: 991px) {
.distributor-section .col-lg-6 {
  text-align: center;
}
.authorized-badge-img {
  margin-left: auto;
  margin-right: auto;
}
}

/* ================================================== */
/* ====== CSS HALAMAN CONTACT ====== */
/* ================================================== */

.contact-page-section {
    padding: 5rem 0;
    background-color: #fff;
}

.contact-logo {
    max-height: 100px;
    width: 100px;
}

.page-main-title {
    font-weight: 600;
    color: var(--secondary-color, #0E293B);
}

.contact-subtitle {
    font-weight: 600;
    color: var(--secondary-color, #0E293B);
    margin-bottom: 2rem;
}

.contact-info-list {
    list-style: none;
    padding-left: 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-info-list i {
    font-size: 1.8rem;
    color: var(--secondary-color, #0E293B);
    width: 40px;
    text-align: center;
    margin-right: 1.5rem;
    margin-top: 5px;
}

.contact-info-list div {
    display: flex;
    flex-direction: column;
}

.contact-info-list strong {
    font-weight: 600;
    font-size: 1.1rem;
    color: #343a40;
}

.contact-info-list span {
    color: #6c757d;
}

/* --- Form Kontak --- */
.contact-form-wrapper {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.form-title {
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary-color, #0E293B);
}

.contact-form-wrapper .form-control {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 0.9rem 1rem;
}

.contact-form-wrapper .form-control:focus {
    background-color: #fff;
    border-color: var(--primary-color, #00AEEF);
    box-shadow: none;
}


/* ================================================== */
/* ====== CSS HALAMAN TRAINING ====== */
/* ================================================== */

/* --- Hero Section --- */
.training-hero-section {
  min-height: 45vh;
  padding: 4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: linear-gradient(rgba(9, 30, 43, 0.6), rgba(9, 30, 43, 0.6)), url('/assets/img/training/training.jpg');
  background-size: cover;
  background-position: center;
  flex-direction: column;
}

/* Style untuk judul utama H1 */
.training-hero-section .hero-title {
  color: white; 
  font-size: 3rem; 
  font-weight: 700;
  max-width: 850px;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.training-hero-section .hero-subtitle {
  color: white;
  font-size: 1.25rem; 
  font-weight: 400; 
  max-width: 700px;
  line-height: 1.5;
}

.training-cards-section {
  padding: 5rem 0;
}

.training-subtitle {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-top: -10px;
}

.training-card {
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.training-icon {
  max-height: 100px;
  width: 100px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem; 
}
.training-card-title {
  font-weight: 700;
  color: var(--secondary-color, #0E293B);
  margin-bottom: 1.5rem;
  min-height: 50px;
}

.module-title {
  font-weight: 700;
  text-align: left;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: #343a40;
}

.training-list {
  list-style-type: none;
  padding-left: 0;
  text-align: left;
  color: #55626b;
  margin-bottom: 1rem;
  flex-grow: 1; 
}

.training-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 0.5rem;
}

.training-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color, #00AEEF);
  font-size: 1.5rem;
  line-height: 1;
}

.btn-light-custom {
  background-color: var(--secondary-color, #0E293B);
  color: #f0f4f8;
  border: 1px solid #dee2e6;
  font-weight: 600;
  padding: 0.75rem 2rem;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-light-custom:hover {
  background-color: #00AEEF;
  color: white;
  border-color: #00AEEF;
}

/* ======================================= */
/* ====== STYLE UNTUK TOMBOL SCROLL TO TOP ====== */
/* ======================================= */

#scrollToTopBtn {
  position: fixed; 
  bottom: 25px;    
  right: 25px;     
  z-index: 99;     
  

  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: opacity 0.4s, visibility 0.4s, transform 0.3s;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}


#scrollToTopBtn.show {
  opacity: 1;
  visibility: visible;
}


#scrollToTopBtn:hover {
  background-color: #0099d1; 
  transform: scale(1.1);
}