
/* General Footer Styling */
.footer {
    background-color: #2D328D; /* Dark background */
    color: #f1f1f1; /* Light text */
    padding: 40px 0;
    font-size: 16px; /* Increased font size */
    font-family: 'Roboto', sans-serif; /* Set Roboto font */
}

.footer-column h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 18px; /* Increased font size for headings */
}

.footer-links {
    list-style-type: none;
    padding-left: 0;
    
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #dcdcdc;
    text-decoration: none; /* Remove underline */
    font-size: 16px; /* Increased link font size */
    transition: color 0.3s ease;
}
.company-desc{
    color: #fefdfd;
}

.footer-links a:hover {
    color: #FF4A17; /* Gold accent on hover */
}

/* Contact section styling */
.footer p {
    margin-bottom: 5px;
    font-size: 16px; /* Increased font size */
}

/* Footer bottom styling */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #faf7f7;
    padding-top: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px; /* Increased font size for footer bottom */
    color: #fefdfd;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer-column {
        margin-bottom: 30px;
    }
    .footer-bottom {
        text-align: center;
    }
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* Pastikan navbar berada di atas elemen lain */
    background-color: #ffffff; /* Warna background navbar */
    border-bottom: 1px solid #e0e0e0; /* Garis bawah untuk memisahkan navbar */
    transition: background-color 0.3s ease;
}
body {
    padding-top: 70px; /* Tambahkan padding pada body agar konten tidak tertutup navbar */
}
.navbar .nav-link {
    color: #343a40; /* Teks berwarna abu gelap */
    font-size: 1.1rem;
    padding: 10px 20px;
    transition: color 0.3s ease;
    font-weight: bold;
}
.navbar-nav .nav-item {
    margin-left: 10px; /* Jarak antara item menu */
    margin-right: 10px; /* Jarak antara item menu */
}
.navbar-nav {
    margin-left: auto;
    margin-right: auto;
}
.navbar .nav-link:hover {
    color: #2D328D; /* Warna biru saat hover */
}

/* Navbar Toggle Icon for Mobile */
.navbar-toggler-icon {
    filter: invert(0.5); /* Sedikit lebih terang untuk icon di navbar abu-abu */
}
@media (max-width: 991px) {
    body {
        padding-top: 50px; /* Padding lebih kecil pada mobile */
    }
}


/* General Navbar Styling */
.elegant-navbar {
    background-color: #1a1a1a; /* Dark background for elegance */
    padding: 15px 0; /* Padding for space */
    transition: background-color 0.3s ease; /* Smooth transition on hover */
}

.elegant-navbar .navbar-brand {
    color: #2D328D; /* Gold color for branding */
    font-size: 24px; /* Slightly bigger branding */
    font-weight: 1200;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.elegant-navbar .navbar-brand:hover {
    color: #ffffff; /* Brand hover effect */
}

.elegant-navbar .nav-link {
    color: #dcdcdc; /* Light grey text for nav links */
    font-size: 16px; /* Slightly bigger font for elegance */
    padding: 10px 15px;
    transition: color 0.3s ease, background-color 0.3s ease;
}

.elegant-navbar .nav-link:hover {
    color: #ffffff; /* White text on hover */
    background-color: rgba(239, 239, 240, 1.0); /* Light background hover effect */
    border-radius: 5px;
}

.elegant-navbar .navbar-nav .nav-item.active .nav-link {
    color: #2D328D; /* Gold color for active link */
}

.navbar-toggler {
    border: none; /* Remove border from toggler */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28%255,255,255,0.7%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Hover effect for navbar */
.elegant-navbar:hover {
    background-color: #222; /* Slightly lighter background on hover */
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .navbar-nav {
        background-color: #ffffff; /* Maintain background in mobile view */
        padding: 15px;
    }
    .nav-item {
        margin-bottom: 10px;
    }
}

.navbar .navbar-brand img {
    max-height: 40px; /* Atur tinggi maksimal logo */
    width: 130px; /* Pastikan logo tetap proporsional */
}

.navbar {
    padding: 10px 15px; /* Sesuaikan padding navbar agar tetap rapi */
}

@media (max-width: 768px) {
    .navbar .navbar-brand img {
        max-height: 40px; /* Ukuran logo untuk perangkat mobile */
    }
}

/* Swiper Styling */
.swiper-container {
    width: 100%;
    height: 500px;
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

.swiper-caption {
    position: absolute;
    bottom: 20%;
    left: 10%;
    right: 10%;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.swiper-caption h5 {
    font-size: 48px;
    font-weight: bold;
    color: #2D328D; /* Gold color */
}

.swiper-caption p {
    font-size: 20px;
    color: #f1f1f1;
}

.swiper-button-next,
.swiper-button-prev {
    color: #2D328D; /* Gold color for navigation arrows */
}

.swiper-pagination-bullet {
    background: #fff; /* White pagination bullets */
}

.swiper-pagination-bullet-active {
    background: #2D328D; /* Gold color for active bullet */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .swiper-container {
        height: 400px;
    }

    .swiper-caption h5 {
        font-size: 28px;
    }

    .swiper-caption p {
        font-size: 16px;
    }
}

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #007bff;
}

/* Styling untuk Judul Post */
.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

/* Styling untuk Gambar Post */
.post-image-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.post-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Styling untuk Konten Post */
.post-content {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 50px;
}

/* Sidebar Kategori dan Tags */
.sidebar-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #007bff;
}

/* Styling untuk Kategori */
.category-link {
    color: #333;
    font-size: 1.1rem;
    text-decoration: none;
}

.category-link:hover {
    color: #007bff;
    text-decoration: underline;
}

/* Styling untuk Tags */
.post-tags {
    margin-top: 20px;
}

.tag-link {
    background-color: #007bff;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    text-decoration: none;
    margin: 3px;
    display: inline-block;
    font-size: 0.9rem;
}

.tag-link:hover {
    background-color: #0056b3;
}

/* Responsiveness */
@media (max-width: 991px) {
    .post-title {
        font-size: 2rem;
    }
    .post-content {
        font-size: 1rem;
    }
    .sidebar-title {
        font-size: 1.2rem;
    }
}


/* Styling untuk kode */
.code-snippet {
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    overflow-x: auto;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.875rem;
    line-height: 1.5;
}

.code-snippet pre {
    margin: 0;
    padding: 0;
}

.code-snippet code {
    display: block;
    white-space: pre-wrap;
}

pre code {
    display: block;
    overflow-x: auto;
    padding: 1em;
    background: #f5f5f5;
    border-radius: 4px;
}

/* Sidebar Title Styling */
.sidebar-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000; /* Ganti warna menjadi hitam */
    text-transform: uppercase;
    border-bottom: 2px solid #000; /* Ganti garis bawah menjadi hitam */
    padding-bottom: 10px;
}

/* Styling untuk Kategori */
.post-categories {
    margin-bottom: 40px;
}

.post-categories ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.post-categories li {
    margin-bottom: 15px;
}

.category-link {
    display: block;
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    font-size: 1.1rem;
    color: #000; /* Ganti warna teks menjadi hitam */
    text-decoration: none; /* Hilangkan underline */
    transition: background-color 0.3s ease, color 0.3s ease;
}

.category-link:hover {
    background-color: #2D328D; /* Background hitam saat hover */
    color: #fff; /* Warna teks putih saat hover */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

/* Sidebar Spacing and Visual Improvements */
.col-lg-4 {
    margin-top: 30px;
}

.sidebar-section {
    margin-bottom: 50px;
}

.post-tags {
    margin-top: 40px;
}

.tag-link {
    background-color: #343a40; /* Ganti warna background menjadi abu-abu gelap */
    color: #fff; /* Warna teks putih */
    padding: 5px 15px;
    border-radius: 30px;
    text-decoration: none; /* Hilangkan underline */
    margin: 5px;
    display: inline-block;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.tag-link:hover {
    background-color: #2D328D; /* Ganti background menjadi hitam saat hover */
    text-decoration: none;
    color:#fff;
}

/* Responsiveness for Sidebar */
@media (max-width: 991px) {
    .sidebar-title {
        font-size: 1.25rem;
    }
    .category-link {
        font-size: 1rem;
    }
    .tag-link {
        font-size: 0.85rem;
    }
}

/* Styling untuk Meta (Penulis dan Tanggal) */
.post-meta {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 20px;
}

.post-meta .post-author {
    font-weight: bold;
    color: #000; /* Warna hitam untuk penulis */
}

.post-meta .post-date {
    color: #6c757d; /* Warna abu-abu untuk tanggal */
    margin-left: 10px;
}

/* Responsiveness */
@media (max-width: 768px) {
    .post-meta {
        font-size: 0.85rem;
    }
}


/* Portfolio Card Styles */
.portfolio-card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}


.portfolio-card img {
    height: 200px;
    object-fit: cover;
}

.portfolio-card .card-body {
    padding: 20px;
}

.portfolio-card .card-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #333;
    text-transform: capitalize;
}

.portfolio-card .card-text {
    color: #555;
    font-size: 1rem;
    margin-bottom: 20px;
}

.portfolio-card .btn {
    background-color: #007bff;
    border: none;
    padding: 10px 15px;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.portfolio-card .btn:hover {
    background-color: #0056b3;
    color: #fff;
}

/* Additional global styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    color: #333;
}

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

@media (max-width: 768px) {
    .portfolio-card img {
        height: 150px;
    }

    h1 {
        font-size: 2rem;
    }
}


/* Ensure all cards have the same height */
.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card img {
    height: 200px;
    object-fit: cover; /* Ensure images are properly cropped to fit */
}

.service-card .card-body {
    flex-grow: 1; /* Allow the card body to grow and fill available space */
    display: flex;
    flex-direction: column;
}

.service-card .card-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.service-card .card-text {
    flex-grow: 1; /* This will make the text area flexible */
    margin-bottom: 15px;
}

.service-card .btn {
    margin-top: auto; /* Push the button to the bottom */
    background-color: #007bff;
    color: white;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.service-card .btn:hover {
    background-color: #0056b3;
}

.service-detail-container {
    padding: 30px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* Service Image Styling */
.service-image img {
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
}

/* Service Title */
.service-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

/* Service Description */
.service-description {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}
.ck-content{
    text-align: justify;
}

/* Service Meta Information */
.service-meta {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.service-meta .meta-date, .service-meta .meta-category {
    display: inline-block;
    margin-right: 15px;
}

.service-meta i {
    margin-right: 5px;
}

/* Hire Button */
.btn-hire-service {
    background-color: #007bff;
    color: #fff;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-hire-service:hover {
    background-color: #0056b3;
}

/* Additional Service Details */
.additional-details {
    margin-top: 50px;
}

.additional-details h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.additional-details p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-content {
        text-align: center;
    }

    .service-title {
        font-size: 28px;
    }

    .service-description {
        font-size: 16px;
    }

    .service-meta {
        text-align: center;
    }
}
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons i {
    font-size: 24px;
    color: #333;
    transition: color 0.3s ease;
}

.social-icons i:hover {
    color: #007bff; /* Warna biru pada hover */
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px; /* Mengurangi margin bawah */
}

.team-member h5 {
    min-height: 50px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px; /* Mengurangi jarak antara judul dan deskripsi */
}

.team-member p {
    min-height: 80px;
    font-size: 14px;
    color: #777;
    margin-bottom: 0px; /* Mengurangi jarak deskripsi dengan social icons */
}

.social-icons-team {
    margin-top: 0px; /* Mengurangi margin atas social icons */
}

.social-icons-team a {
    font-size: 20px;
    color: #fff;
    margin-right: 10px; /* Jarak antar icon */
    transition: color 0.3s;
}

.social-icons-team a:hover {
    color: #007bff; /* Ganti sesuai warna tema */
}

.section-title {
    text-align: center; /* Untuk memusatkan teks */
    margin-bottom: 30px;
}

.section-title h1, .section-title h2 {
    font-size: 36px; /* Ukuran font untuk H1 atau H2 */
    font-weight: bold;
    margin-bottom: 10px; /* Mengatur jarak antara judul dan garis */
}

.section-title .underline {
    width: 100px; /* Lebar garis */
    height: 4px;  /* Tinggi garis */
    background-color: #000; /* Warna garis, sesuaikan dengan tema */
    margin: 0 auto; /* Memastikan garis terpusat */
    margin-top: 10px; /* Jarak garis dari judul */
}

/* Navbar style normal */
#navbar {
    transition: all 0.3s ease-in-out;
    background-color: #fff;
    padding: 12px 0; /* Sedikit lebih besar */
}

#navbar.shrink {
    padding: 10px 0; /* Ukuran lebih besar saat mengecil */
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 26px; /* Font sedikit lebih besar */
    transition: all 0.3s ease-in-out;
}

#navbar.shrink .navbar-brand {
    font-size: 22px; /* Tetap besar saat mengecil */
}

.nav-link {
    font-size: 18px; /* Font normal sedikit lebih besar */
    transition: all 0.3s ease-in-out;
}

#navbar.shrink .nav-link {
    font-size: 16px; /* Font tidak terlalu kecil saat mengecil */
}
.client-slider img {
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
}

.owl-carousel .item {
    text-align: center;
}

.client-header{
    margin-top: 50px;
}

.btn-primary {
    background-color: #2D328D;
    border-color: #2D328D;
  }
  .btn-primary:hover {
    background-color: #1E2370; /* Warna saat hover (lebih gelap) */
    border-color: #1E2370;
  }

  /* career page */

.career-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2D328D;
    margin-bottom: 20px;
    position: relative;
}

.career-title:after {
    content: '';
    width: 100px;
    height: 3px;
    background-color: #2D328D;
    display: block;
    margin: 10px auto;
}

.career-description {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 50px;
}

/* Card Styling */
.career-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.career-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.card-body {
    padding: 20px;
    text-align: center;
}

.career-position {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2D328D;
    margin-bottom: 10px;
}

.career-location {
    font-size: 1rem;
    color: #777;
    margin-bottom: 15px;
}

.career-description {
    font-size: 1rem;
    color: #555;
}

.btn-primary {
    background-color: #2D328D;
    border-color: #2D328D;
    padding: 10px 20px;
    font-size: 1rem;
}

.btn-primary:hover {
    background-color: #1E2370;
    border-color: #1E2370;
}

/* Responsive */
@media (max-width: 768px) {
    .career-card {
        margin-bottom: 20px;
    }

    .career-title {
        font-size: 2rem;
    }
}


/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2D328D;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background-color: #2D328D;
    margin: 0 auto 2rem auto;
    border-radius: 2px;
}

.shadow{
    box-shadow:0 1px 3px #0000001a,0 1px 2px #0000000f!important}
.bg-gray{background-color:#f4f4f5}
.bg-light-custom{background-color:#fff}

.learn-more {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background-color: #2D328D; /* Warna background */
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  position: relative;
}

.learn-more:hover {
  background-color: #1a1f60; /* Warna saat hover */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px); /* Efek hover naik sedikit */
}

.learn-more i {
  margin-left: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.learn-more:hover i {
  transform: translateX(5px); /* Ikon bergerak saat hover */
}

.learn-more::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.learn-more:hover::before {
  opacity: 1; /* Membuat efek overlay lebih terang saat hover */
}

.btn-primary {
  background-color: #2D328D !important;
  border-color: #2D328D !important;
}

.btn-primary:hover {
  background-color: #1a1f60 !important; /* Warna saat hover */
  border-color: #1a1f60 !important;
}

@media (max-width: 767.98px) {
  h3 {
    font-size: 18px; /* Sesuaikan ukuran sesuai kebutuhan */
  }
}

.post-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.post-card:hover {
    transform: translateY(-10px);
}

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

.post-content {
    padding: 15px;
}

.post-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.post-content p {
    font-size: 16px;
    color: #666;
}

.read-more-btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: #2D328D;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.read-more-btn:hover {
    background-color: #1a237e;
}

/* Pagination Styling */
.pagination-container {
    margin-top: 30px;
    text-align: center;
}

.pagination .page-item .page-link {
    color: #2D328D;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    margin: 0 5px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
    background-color: #2D328D;
    color: #fff;
}

.pagination .page-item:hover .page-link {
    background-color: #1a237e;
    color: #fff;
}
.btn-browse-all {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2D328D;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-browse-all:hover {
    background-color: #1a237e;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}


/* Container for About Us */
.about-us-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background-color: #f4f4f4;
}

/* Left section for Image */
.about-us-image {
    flex: 1 1 50%;
    max-width: 50%;
    margin-right: 20px;
    text-align: center;
}

.about-us-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

/* Right section for Content */
.about-us-content {
    flex: 1 1 45%;
    max-width: 45%;
    text-align: left;
}

.about-us-title {
    font-size: 36px;
    font-weight: bold;
    color: #2D328D;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
}

.about-us-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background-color: #2D328D;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
}

.about-us-description {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-top: 20px;
}

.about-us-description p {
    margin-bottom: 15px;
}

.about-us-btn {
    display: inline-block;
    padding: 12px 30px;
    margin-top: 20px;
    background-color: #2D328D;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-align: center;
}

.about-us-btn:hover {
    background-color: #1b225e;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-us-section {
        flex-direction: column;
        padding: 30px;
    }

    .about-us-image,
    .about-us-content {
        max-width: 100%;
        flex: 1 1 100%;
        text-align: center;
    }

    .about-us-image {
        margin-bottom: 30px;
    }

    .about-us-title {
        font-size: 28px;
    }
}

.navigation-posts {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid #ddd;
}

.post-nav-link {
    text-decoration: none;
    color: #333;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.post-nav-link:hover {
    background-color: #f0f0f0;
}

.nav-content h6 {
    font-size: 14px;
    color: #2D328D;
    margin: 0;
    font-weight: bold;
}

.nav-content p {
    font-size: 18px;
    margin: 5px 0 0;
}

/* Wrapper tanpa padding atau margin */
.pre-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: auto;
}

/* Tombol copy menyatu dengan kode */
.copy-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: #2D328D;
    color: white;
    border: none;
    padding: 4px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 12px;
    opacity: 0.8;
}

/* Pastikan <pre> tidak ada padding ekstra */
pre {
    margin: 0;
    padding: 1px 0; /* Padding hanya atas bawah */
    white-space: pre;
    overflow-x: auto;
    border-radius: 8px;
}
/* Custom Scrollbar */
.pre-wrapper::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.pre-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.pre-wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.pre-wrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Service Detail Button Styling */
.service-detail-btn {
    display: inline-block;
    padding: 7px 15px;
    background: linear-gradient(135deg, #2D328D, #5D68DA);
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration:none;
}

.service-detail-btn:hover {
    background: linear-gradient(135deg, #5D68DA, #2D328D);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

.service-detail-btn::after {
    font-size: 18px;
    position: absolute;
    right: -20px;
    transition: 0.3s;
}

.service-detail-btn:hover::after {
    right: 10px;
}
.card-container {
    display: flex;
    gap: 20px; /* Jarak antar card */
}
.pcard {
    flex: 1; /* Semua card akan memiliki lebar yang sama */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Agar elemen di dalam card tersebar */
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.package-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.package-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color:#2F1C6A;
}

.package-price {
    font-size: 1.25rem;
    font-weight: 600;
}

.card-body ul li {
    margin: 8px 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.card-body ul li i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.card-footer button {
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 8px;
}

.row.text-center {
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .package-card {
        margin-bottom: 20px;
    }
}
.btn-choose-plan {
    display: inline-block;
    padding: 5px 15px;
    font-size: 15px;
    font-weight: bold;
    color: white;
    background-color: #2D328D;
    text-transform: uppercase;
    border-radius: 8px;
    border: 2px solid #2D328D;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-choose-plan:hover {
    background-color: white;
    color: #2D328D;
    border-color: #2D328D;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-choose-plan:active {
    background-color: #1E2266;
    color: white;
    border-color: #1E2266;
}
.package-start {
    font-size: 12px;
    color: #6c757d;
    display: block;
    margin-bottom: 1px;
}
.card-header{
    background-color: #FAFBFF;
}

.hljs {
    background: #1e1e2f !important; /* Lebih gelap dan netral */
    color: #f8f8f2;
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    overflow-x: auto;
    font-family: 'Fira Code', monospace;
    line-height: 1.6;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
/* General Typography */
body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #fff;
}

h1, h2, h3, h4 {
    font-weight: 700;
    color: #1a1a1a;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #2D328D;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
}

/* Hero Section */
.hero {
    background: #2D328D;
    background-attachment: fixed;
    min-height: 80vh;
    padding: 40px 20px 60px; /* sebelumnya 80px terlalu besar */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.her{
    margin-top: 0;
}
.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    color: #f0f0f0;
}

/* Packages */
.package-card {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.package-title {
    font-size: 1.3rem;
    margin-bottom: 0;
}

.package-start {
    font-size: 0.85rem;
    color: #777;
}

.package-price {
    font-size: 1.4rem;
    margin-top: 0.5rem;
}

.btn-choose-plan {
    background-color: #2D328D;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-choose-plan:hover {
    background-color: #1a1e6f;
}

.read-more-btn:hover {
    text-decoration: underline;
}

/* Clients */
.client-slider img {
    max-height: 60px;
    margin: 0 auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-slider img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Buttons */
.btn-primary {
    background-color: #2D328D;
    border-color: #2D328D;
}

.btn-primary:hover {
    background-color: #1f235e;
    border-color: #1f235e;
}

.btn-browse-all {
    padding: 10px 24px;
    font-weight: bold;
    color: #fff;
    background-color: #2D328D;
    border-radius: 6px;
    text-decoration: none;
}

.btn-browse-all:hover {
    background-color: #1a1e6f;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 60vh; /* lebih pendek di layar kecil */
        padding: 40px 15px 30px; /* kurangi jarak atas & bawah */
    }
    .hero h1 {
        font-size: 1.0rem;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }
    .btn.btn-lg {
        padding: 10px 20px;
        font-size: 1rem;
    }
}
.hero h1 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
	color: #f0f0f0;
}
.icon-navy {
    color: #1a1e6f;
}
.icon-navy:hover {
    color: #2D328D;
}
.section-title-h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2D328D;
    margin-bottom: 1rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px 20px;
  margin-bottom: 30px;
  box-shadow: 0 0 12px rgba(0,0,0,0.03);
  transition: all 0.3s ease-in-out;
}
.pricing-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}

.pricing-card .plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-card .plan-price {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2D328D;
  margin-bottom: 20px;
}

.pricing-card .plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 1rem;
}

.pricing-card .plan-features li {
  margin-bottom: 10px;
}

.pricing-card .btn {
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
}

/* Highlighted Middle Card */
.pricing-card.featured {
  border: 2px solid #2D328D;
  background: #f7f8ff;
  position: relative;
}

.pricing-card.featured .btn {
  background-color: #2D328D;
  color: #fff;
  border: none;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2D328D;
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  z-index: 1;
}

@media (max-width: 576px) {
  /* Container navbar */
  .navbar {
    padding: 0.3rem 1rem;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  }

  .navbar-brand {
    font-size: 1.1rem;
    padding: 0.25rem 0;
  }

  .navbar-toggler {
    border: none;
    padding: 0.25rem;
  }

  .navbar-toggler-icon {
    width: 24px;
    height: 24px;
    background-size: contain;
  }

  /* Menu collapse */
  .navbar-collapse {
    background: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    transition: transform 0.25s ease;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    border-top: 1px solid #eee;
  }

  .navbar-collapse.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  /* Daftar menu */
  .navbar-nav {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }

  .navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    color: #333;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus {
    background-color: #f7f7f7;
  }

  /* Dropdown dalam menu mobile */
  .dropdown-menu {
    position: static !important;
    float: none !important;
    display: block;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0.25rem 0;
    background: transparent;
  }

  .dropdown-item {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    color: #555;
    transition: background-color 0.2s;
  }

  .dropdown-item:hover,
  .dropdown-item:focus {
    background-color: #f1f1f1;
  }

  /* Arrow kecil di dropdown toggle */
  .dropdown-toggle::after {
    margin-left: 0.3rem;
  }
}

.navbar-toggler-icon {
  display: none;
}

/* Gaya baru toggler */
.custom-toggler {
  border: none;
  background: transparent;
  padding: 0.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}


.custom-toggler .toggler-bar {
  width: 24px;
  height: 2px;
  background-color: #2D328D; /* 🔵 Biru terang (ubah sesuai tema) */
  border-radius: 2px;
  transition: all 0.3s ease;
}

.team-card {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.team-card-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.team-card-body {
  padding: 1.25rem;
  text-align: center;
}

.team-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-position {
  font-size: 0.95rem;
  color: #6c757d;
  margin-bottom: 0.75rem;
}

.team-description {
  font-size: 0.9rem;
  color: #555;
}

.team-card-footer {
  padding: 0.75rem 1rem 1rem;
  text-align: center;
}

.social-icon {
  display: inline-block;
  margin: 0 0.4rem;
  color: #2D328D;
  background-color: #e9f3ff;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  transition: background 0.2s, transform 0.2s;
}

.social-icon:hover {
  background-color: #2D328D;
  color: white;
  transform: scale(1.1);
}

/* Mobile adjustment */
@media (max-width: 575.98px) {
  .team-card-image img {
    height: 220px;
  }

  .team-name {
    font-size: 1rem;
  }

  .team-position,
  .team-description {
    font-size: 0.85rem;
  }

  .social-icon {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 0.9rem;
  }
}

