/**
* Template Name: Bocor
* Template URL: https://bootstrapmade.com/bocor-bootstrap-template-nice-animation/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Poppins",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2699d3; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #2699d3; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #2699d3; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f5f9fc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #223b51;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #315575;
  --contrast-color: #223b51;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}
.main,
.main * {
    font-family: 'Poppins', sans-serif !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Lebar scrollbar disamping*/
::-webkit-scrollbar {
    width: 4px;  /* sangat tipis */
}

/* Track (background scrollbar) */
::-webkit-scrollbar-track {
    background: rgb(255, 255, 255); /* putih seperti gambar */
}

/* Thumb (bagian yang digeser) */
::-webkit-scrollbar-thumb {
    background: linear-gradient(
        135deg,
        rgba(9, 156, 247, 0.9),
        rgba(22, 117, 165, 0.90)
    );
    border-radius: 50px;
}

 .insight-title a {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* maksimal 2 baris */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  }
  
.catalog-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.catalog-clickable {
    position: relative;
    display: block;
    text-decoration: none;
}

.catalog-image {
    width: 100%;
    height: auto;
    display: block;
    transition: 
        transform 0.6s ease,
        filter 0.4s ease;
}

.catalog-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        135deg,
        rgba(9, 156, 247, 0.85),
        rgba(22, 117, 165, 0.85)
    );

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    opacity: 1; /* tetap tampil */
}

.catalog-card:hover .catalog-overlay {
    opacity: 1;
}

.catalog-card:hover .catalog-btn {
    background: #ffffff;
    color: #000;
}

@media (max-width: 768px) {
    .catalog-content h2 {
        font-size: 1.6rem;
    }

    .catalog-content p {
        font-size: 0.95rem;
    }

    .catalog-btn {
        padding: 10px 22px;
        font-size: 0.9rem;
    }
}

/* tim */
  .team {
    position: relative;
    color: #fff;
    overflow: hidden;
    border-radius: 10px;
  }
  .team p{
    color: #fff;
  }
  /* ===== CARD FIX HEIGHT ===== */
  .team-member {
    background: rgba(255,255,255,.07);
    border-radius: 18px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    transition: .35s ease;

    display: flex;
    flex-direction: column;

    height: 100%;
    min-height: 430px; /* 🔒 KUNCI TINGGI CARD */
  }

  .team-member:hover {
    transform: translateY(-8px);
  }

  /* ===== IMAGE FIX ===== */
  .member-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
    overflow: hidden;
  }

  .member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }

  /* ===== SOCIAL FIX ===== */
  .member-social {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    gap: 14px;
    padding: 12px;
    background: linear-gradient(135deg, rgba(92,178,222,.9), rgba(22,117,165,.9));
  }

  /* ===== INFO FIX ===== */
  .member-info {
    flex: 1; /* 🔒 SISA RUANG SAMA */
    min-height: 110px;
    padding: 16px 14px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(92,178,222,.9), rgba(22,117,165,.9));
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .member-social a {
    color: #fff;
    font-size: 15px;
    transition: .3s;
  }
  .member-social a:hover {
    color: #ffffffff;
  }
  .member-social a.disabled {
    opacity: .35;
    pointer-events: none;
  }
  /* ===== FORCE TEXT COLOR WHITE ===== */
  .member-info,
  .member-info h4,
  .member-info .position,
  .member-info .position small,
  .member-info .division {
    color: #edececff !important;
  }


  /* ===== NAV ===== */
  .team-swiper-nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
  }

  .team-swiper-nav button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    color: #fff;
    cursor: pointer;
    transition: .3s;
  }
  .team-swiper-nav button:hover {
    background: #2699d3;
  }

  /* ===== MOBILE ===== */
  @media (max-width: 576px) {
    .member-info h4 { font-size: 14px; }
    .member-info .position,
    .member-info .division { font-size: 12px; }

    .team-swiper-nav button {
      width: 32px;
      height: 32px;
    }
    .team-member {
    background: rgba(255,255,255,.07);
    border-radius: 18px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    transition: .35s ease;

    display: flex;
    flex-direction: column;

    height: 100%;
    min-height: 450px; /* 🔒 KUNCI TINGGI CARD */
  }
}
/* end tim */

/* Placeholder kecil & rapi */
.small-placeholder::placeholder {
    font-size: 13px;
    color: #9aa0a6;
    letter-spacing: 0.3px;
}

/* Untuk browser lain */
.small-placeholder::-webkit-input-placeholder {
    font-size: 13px;
    color: #9aa0a6;
}

.small-placeholder:-ms-input-placeholder {
    font-size: 13px;
    color: #9aa0a6;
}

/* Input text tetap normal */
.form-control {
    font-size: 14.5px;
    padding: 12px 14px;
}


/* home services */
.service-desc {
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
}
/* end home services */

 /* ===== TIPS PAGE ===== */
.tips-page {
  padding-bottom: 50px;
}

/* ===== CARD ===== */
.tips-card {
  border: 1px solid rgba(0, 67, 101, 0.12);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
}

/* ===== IMAGE ===== */
.tips-card-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ===== BODY ===== */
.tips-card-body {
  padding: 16px;
  border-bottom: 5px solid #1675a5;
}

/* ===== BADGE ===== */
.insight-badge {
  display: inline-block;
  background: linear-gradient(135deg, #5cb2de, #1675a5);
  color: #fff;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
  font-weight: 500;
}

/* ===== TITLE ===== */
.insight-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

.insight-title a {
  color: #222;
  text-decoration: none;
  transition: 0.3s;
}

.insight-title a:hover {
  color: #1675a5;
}

/* ===== META ===== */
.sidebar-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #777;
  margin-bottom: 12px;
}

.sidebar-meta .author-img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

/* ===== READ MORE ===== */
.insight-readmore a {
  font-size: 13px;
  font-weight: 500;
  color: #1675a5;
  text-decoration: none;
  transition: 0.3s;
}

.insight-readmore a:hover {
  color: #0d5c85;
}

/* ===== LINE CLAMP ===== */
.line-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===================================== */
/* ===== PAGINATION CIRCLE (FIXED) ===== */
/* ===================================== */

.pagination-circle {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 30px 0 0;
}

.pagination-circle li {
  display: inline-flex;
}

.pagination-circle li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f1f1;
  color: #1675a5;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

/* Hover */
.pagination-circle li a:hover {
  background: #1675a5;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Active */
.pagination-circle li.active a {
  background: #1675a5;
  color: #fff;
  cursor: default;
}

/* Disabled */
.pagination-circle li.disabled a {
  background: #e0e0e0;
  color: #aaa;
  cursor: not-allowed;
  pointer-events: none;
}

/* DOTS */
.pagination-circle li.disabled a[href="#"] {
  background: transparent;
  color: #999;
}

/* Pulse effect (lebih halus) */
.pagination-circle li.active a {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(22, 117, 165, 0.4);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(22, 117, 165, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(22, 117, 165, 0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 576px) {
  .pagination-circle li a {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .tips-card-img img {
    height: 180px;
  }
}
/* END TIPS PAGE */


/* CSS AI INSIGHTS */
  .catalog-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 6rem 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
  }
  .insight-title a {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* maksimal 2 baris */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  }

  /* VIDEO */
  .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
  }

  /* GRADIENT */
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(9, 156, 247, 0.9),
        rgba(22, 117, 165, 0.9));
    opacity: 0.8;
    z-index: 1;
  }

  /* KONTEN */
  .catalog-hero .container {
    position: relative;
    z-index: 2;
  }


  .sidebar-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
  }


  .sidebar-post {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  .sidebar-post:last-child {
    border-bottom: none;
  }


  .sidebar-thumb {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
  }

  .sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
/* =========================
   SIDEBAR CONTENT SMALL MODE
========================= */

.sidebar-content {
  min-width: 0;
}

/* TAG */
.sidebar-content .insight-side {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 5px;
  line-height: 1;
}

/* TITLE LINK */
.sidebar-content .sidebar-link {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  margin-top: 3px;

  display: -webkit-box;
  -webkit-line-clamp: 2; /* maksimal 2 baris */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* META */
.sidebar-content .sidebar-meta {
  font-size: 10.5px; /* kecil & clean */
  margin-top: 5px;
  gap: 5px;
}

/* AUTHOR IMAGE */
.sidebar-content .author-img {
  width: 16px;
  height: 16px;
}

/* TEXT SPACING CLEAN */
.sidebar-content span {
  line-height: 1.2;
}

  .sidebar-link {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: #222;
    transition: color .2s ease;
  }

  .sidebar-link:hover {
    color: #1675a5;
  }


  .sidebar-date {
    font-size: 12px;
    color: #888;
  }

  .sidebar-date .insight-badge {
    font-size: 10px;
    padding: 1px 6px;
  }

  .insight-side {
    display: inline-block;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    background: rgba(22, 117, 165, .1);
    color: #1675a5;
    font-weight: 600;
    width: fit-content;
  }

  .sidebar-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #777;
    margin-top: 4px;
  }

  .sidebar-meta .author-img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    object-fit: cover;
  }

  .pagination-circle {
    display: flex;
    gap: 6px;
    /* jarak antar item lebih rapat */
    padding-left: 0;
  }

  .pagination-circle li {
    list-style: none;
  }

  .pagination-circle li a {
    width: 28px;
    height: 28px;
    font-size: 12px;
    line-height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
  }

  .pagination-circle li.active a {
    background: #e4a40a;
    /* warna utama kamu */
    color: #fff;
  }

  .pagination-circle li.disabled a {
    opacity: 0.4;
    pointer-events: none;
  }

  .pagination-circle li a i {
    font-size: 12px;
    /* icon panah lebih kecil */
  }






  /* === Bottom News Card === */
  .featured-services .service-item {
    border-radius: 8px;
    overflow: hidden;
  }

  /* Image */
  .featured-services .service-item .img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  /* Content */
  .featured-services .details {
    padding: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Icon */
  .featured-services .icon {
    width: 44px;
    height: 44px;
    background: #2699d3;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }


  .line-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    max-height: calc(1.4em * 2);
  }


  /* Meta */
  .featured-services .service-meta {
    font-size: .8rem;
    color: #888;
    margin-top: 1rem;
  }

  .line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Mobile */
  @media (max-width: 576px) {
    .featured-services .service-item .img img {
      height: 200px;
    }
  }

  /* END CSS AI INSIGHTS */

.hero-meta-link {
    position: relative;
    color: rgba(255,255,255,.9);
    text-decoration: none;
}

.hero-meta-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: currentColor;
    transition: width .3s ease;
}

.hero-meta-link:hover {
    color: #d5d5d5;
}

.hero-meta-link:hover::after {
    width: 100%;
}



.badge-shift-left {
    margin-left: -6px; /* atur -4px s/d -12px sesuai selera */
}
.hero-meta-link {
    font-size: 13px;
    color: #fff;
    padding: 6px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,.15);
    transition: .3s;
}
.hero-meta-link:hover {
    background: #1675a5;
}

.hero-title {
    font-size: 35px;
    font-weight: 700;
}

.hero-desc {
    font-size: 14px;
    line-height: 1.9;          /* INI KUNCI UTAMA */
    max-width: 620px;          /* supaya teks terpecah rapi */
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: .95;
}

.hero-meta {
    display: flex;
    gap: 1.5rem;
    font-size: .9rem;
}

.hero-meta i {
    margin-right: 6px;
}

.hero-blur-circle {
    position: absolute;
    right: -150px;
    top: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #fff, transparent 70%);
    filter: blur(80px);
    opacity: .3;
}

/* INTRO */
.section-intro {
    padding: 4rem 0 3rem;
}

.section-intro p {
    color: #6b7280;
}
.catalog-hero .container {
    padding-top: 2rem;
}

/* CATALOG */
.catalog-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transition: .3s;
}

.catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,.1);
}

.catalog-card-inner {
    display: flex;
    gap: 1.5rem;
}

/* PDF ICON */
.catalog-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.pdf-icon {
    background: rgba(220, 38, 38, .12);
    color: #dc2626;
}

.catalog-content h3 {
    font-size: 20px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.catalog-content p {
    font-size: .9rem;
    color: #6b7280;
}

.catalog-meta {
    display: flex;
    gap: 1.25rem;
    font-size: .8rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.btn-download {
    border-radius: 999px;
    padding: .45rem 1.2rem;
    font-size: .85rem;
    font-weight: 600;
}

.btn-download:hover {
    background: #2376dd;
    color: #fff;
}

/* EMPTY */
.catalog-empty {
    text-align: center;
    padding: 5rem 0;
    color: #9ca3af;
}

/* CTA */
.catalog-cta {
    background: linear-gradient(135deg, #0095ff, #03569f);
    padding: 3.5rem 0;
}

.btn-cta {
    background: #fff;
    border-radius: 999px;
    padding: .7rem 2.5rem;
    font-weight: 600;
}

/* --- Modern Blog Card --- */
.modern-blog-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease-in-out;
}

/* Thumbnail */
.blog-thumb img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 18px;
    padding: 10px;
}

/* Content */
.blog-content {
    padding: 18px 22px 25px;
}

/* Badge */
.blog-badge {
    display: inline-block;
    background: #1675a5;
    color: white;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 10px;
}

/* Title */
.blog-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px;
}

.blog-title a {
    color: #263238;
    text-decoration: none;
}

.blog-title a:hover {
    color: #1675a5;
}

/* Excerpt */
.blog-excerpt {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

/* Meta */
.blog-meta small {
    color: #777;
    margin-right: 8px;
    font-size: 12px;
}

/* Read More */
.blog-readmore {
    display: inline-block;
    margin-top: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #1675a5;
    text-decoration: none;
}

.blog-readmore:hover {
    color: #1675a5;
}
/* --- Pagination Modern --- */
.pagination-circle {
    list-style: none;
    display: flex;
    gap: 8px;
    padding: 0;
    margin: 20px 0 0;
}

.pagination-circle li {
    display: inline-flex;
}

.pagination-circle li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f1f1;
    color: #1675a5;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.pagination-circle li a:hover {
    background: #1675a5;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.pagination-circle li.active a {
    background: #1675a5;
    color: #fff;
    cursor: default;
}

.pagination-circle li.disabled a {
    background: #e0e0e0;
    color: #aaa;
    cursor: not-allowed;
}

.pagination-circle li.disabled a:hover {
    background: #e0e0e0;
    color: #aaa;
    box-shadow: none;
    transform: none;
}

/* Responsive: smaller screens */
@media (max-width: 576px) {
    .pagination-circle li a {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}
/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;

  background-color: var(--background-color);
  color: var(--default-color);

  padding: 15px 0;
  transition: all 0.4s ease;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
    transform: translateY(-4px);
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 30px;
  font-weight: 700;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  font-size: 14px;
  padding: 6px 30px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
  border: 2px solid var(--accent-color);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}


@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.nav-search input::placeholder {
  font-size: 11px;
}

/* Global Header on Scroll
------------------------------*/
.header.scrolled {
  --background-color: rgba(255, 255, 255, 0.9); /* hitam transparan */
  --default-color: #ffffff; /* teks putih */
  --heading-color: #000000;
  --nav-color: #1675a5;
  --nav-hover-color: #1675a5; /* warna hover menu */
  
    border-bottom: 0.3px solid #2699d3;
}
.header.scrolled .btn-login {
  background: #ffffff;
  color: #2699d3;
  border: 1px solid #2699d3;
}
.header.scrolled .btn-login:hover {
  background: linear-gradient(135deg, rgba(92,178,222,.9), rgba(22,117,165,.9));
  color: #ffffff;
  border: 1px solid #ffffff;
}

.header.scrolled .btn-outline {
  background: #ffffff;
  color: #2699d3;
  border: 1px solid #2699d3;
}
.header.scrolled .btn-outline:hover {
  background: linear-gradient(135deg, rgba(92,178,222,.9), rgba(22,117,165,.9));
  color: #ffffff;
  border: 1px solid #ffffff;
}

/* Pastikan hanya 1 logo yang tampil */
.logo-default { display: inline-block; }
.logo-scrolled { display: none; }

.header.scrolled .logo-default { display: none !important; }
.header.scrolled .logo-scrolled { display: inline-block !important; }
  /* Active underline */
  .header.scrolled .navmenu a.active::after {
    content: "";
    position: absolute;
    left: 15px;
    bottom: 8px;
    width: calc(100% - 30px);
    height: 2px;
    background-color: #2699d3;
    border-radius: 2px;
  }
@media (max-width: 1200px) {
  .header .logo { order: 1; }
  .header .btn-getstarted { 
    order: 2; 
    margin-left: auto; 
  }
  .header .navmenu { order: 3; }
}


/* Saat di-scroll, tukar logonya */
header.scrolled .logo-default {
  display: none !important;
}

header.scrolled .logo-scrolled {
  display: inline-block !important;
}

/*--------------------------------------------------------------
# Navigation Menu - Desktop
--------------------------------------------------------------*/
@media (min-width: 1200px) {

  /* ===============================
   NAV CONTAINER
  =============================== */
  .navmenu {
    padding: 0;
    display: flex;
    align-items: center;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 15px;
  }

  .navmenu li {
    position: relative;
    display: flex;
    align-items: center;
  }
/* Pecah nav-topbar kembali jadi normal di desktop */
.navmenu .nav-topbar{
  display: contents;
}

.navmenu .nav-topbar .nav-search{
  margin-left: 10px;
}

.navmenu .nav-topbar .nav-login{
  margin-left: 10px;
}

  /* ===============================
   MENU LINKS
  =============================== */
  .navmenu a:not(.btn-login),
  .navmenu a:not(.btn-login):focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 12px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: all .25s ease;
    position: relative;
  }

  .navmenu a i {
    font-size: 12px;
    margin-left: 5px;
  }

  .navmenu li:hover > a:not(.btn-login),
  .navmenu a.active {
    color: var(--nav-hover-color);
  }

  /* Active underline */
  .header .navmenu a.active::after {
    content: "";
    position: absolute;
    left: 15px;
    bottom: 8px;
    width: calc(100% - 30px);
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
  }

  /* ===============================
   DROPDOWN (TURUN KE BAWAH)
  =============================== */
  .navmenu .dropdown {
    position: relative;
  }

  .navmenu .dropdown > ul {
    position: absolute;
    top: calc(100% + 8px);   /* TURUN */
    left: 0;                /* BUKAN KE SAMPING */
    display: block;
    background: var(--nav-dropdown-background-color);
    padding: 10px 0;
    min-width: 230px;
    visibility: hidden;
    opacity: 0;
    border-radius: 6px;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
    transition: all .25s ease;
    z-index: 99;
  }

  .navmenu .dropdown:hover > ul {
    visibility: visible;
    opacity: 1;
    top: 100%;
  }

  .navmenu .dropdown ul li {
    display: block;
    width: 100%;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 11.5px;
    font-weight: 500;
    color: #2699d3;
    display: flex;
    align-items: center;
    transition: all .25s ease;
  }

  .navmenu .dropdown ul a:hover {
    color: #1675a5;
    padding-left: 26px;
    background: rgba(22,117,165,.05);
  }

  /* ===============================
   FORCE SUBMENU TETAP TURUN
   (ANTI DROPDOWN KE SAMPING)
  =============================== */
  .navmenu .dropdown ul .dropdown > ul {
    left: 0 !important;
    top: calc(100% + 6px) !important;
  }

  /* ===============================
   SEARCH NAV
  =============================== */
  .navmenu .nav-search {
    margin-left: 10px;
  }

  .navmenu .nav-search form {
    display: flex;
    align-items: center;
    margin: 0;
  }

  .navmenu .nav-search input {
    height: 32px;
    font-size: 12px;
  }

  .navmenu .nav-search button {
    height: 32px;
    color: #4b4b4b;
    border: 1px solid #1675a5;
    background: #ffffff;
  }

  .navmenu .nav-search button:hover {
    background: #ffffff;
    border-color: #1675a5;
    border: 1px solid #1675a5;
    color: #1675a5;
  }

  /* ===============================
   LOGIN BUTTON
  =============================== */
  .btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 14px;
    min-width: 78px;
    border-radius: 6px;
    font-size: 12.5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    color: #fff;
    background: linear-gradient(135deg, rgba(92,178,222,.9), rgba(22,117,165,.9));
    border: 1px solid #fff;
    transition: all .25s ease;
  }

  .btn-login:hover {
    background: #fff;
    color: #2699d3;
    border-color: #2699d3;
    transform: translateY(-1px);
  }
}

/*--------------------------------------------------------------
# Navigation Menu - Mobile
--------------------------------------------------------------*/
@media (max-width: 1199px) {

  /* ===============================
   LOGIN BUTTON
  =============================== */
  .btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    padding: 0 14px;
    min-width: 78px;
    border-radius: 6px;
    font-size: 12.5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    color: linear-gradient(135deg, rgba(92,178,222,.9), rgba(22,117,165,.9));
    background: linear-gradient(135deg, rgba(92,178,222,.9), rgba(22,117,165,.9));
    border: 1px solid #fff;
    transition: all .25s ease;
  }

  .btn-login:hover {
    background: #fff;
    transform: translateY(-1px);
  }

  /* ===============================
   NAV MENU WRAPPER
  =============================== */
  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    flex-direction: column;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 16px;
    margin: 0;
    border-radius: 12px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
    transition: 0.3s;
    gap: 6px;
  }

  /* ===============================
   SEARCH MOBILE
  =============================== */
  .navmenu .nav-search {
    order: -2;
    margin-bottom: 10px;
  }

  .navmenu .nav-search form {
    display: flex;
    gap: 8px;
  }

  .navmenu .nav-search input {
    flex: 1;
    height: 36px;
    font-size: 13px;
  }

  .navmenu .nav-search button {
    height: 36px;
    min-width: 40px;
    border-radius: 6px;
    border: 1px solid #a7a7a7;
  }
  .navmenu .nav-search button:hover {
    height: 36px;
    min-width: 40px;
    border-radius: 6px;
    color: #2699d3;
    border: 1px solid #2699d3;
  }


/* ===============================
   LOGIN MOBILE (kecil & rapi)
=============================== */
.navmenu .nav-login{
  order: -1;
  margin-bottom: 12px;
  display: block;          /* jangan flex */
  text-align: left;        /* sejajar kiri seperti search */
}

.navmenu .nav-login a{
  display: inline-flex;    /* ukuran mengikuti konten */
  width: auto;             /* jangan full width */
  flex: unset;             /* matikan flex grow */
}
/* ===============================
   TOPBAR SEARCH + LOGIN (sejajar)
=============================== */
.navmenu .nav-topbar{
  order: -2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.navmenu .nav-topbar .nav-search{
  flex: 1;
  margin: 0;
}

.navmenu .nav-topbar .nav-login{
  flex: none;
  margin: 0;
}

.navmenu .nav-topbar .btn-login{
  height: 36px;
  white-space: nowrap;
}


  /* ===============================
   MENU LINKS
  =============================== */
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 12px 14px;
    font-family: var(--nav-font);
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    transition: 0.3s;
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    background-color: rgba(38,153,211,.08);
    color: var(--nav-dropdown-hover-color);
  }

  /* ===============================
   ICONS
  =============================== */
  .navmenu a i {
    font-size: 12px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu .active i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  /* ===============================
   DROPDOWN MOBILE
  =============================== */
  .navmenu .dropdown ul {
    position: static;
    display: none;
    margin: 6px 0 6px 12px;
    padding: 6px 0;
    border-radius: 8px;
    background-color: rgba(0,0,0,.04);
    border: 1px solid rgba(0,0,0,.05);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
  }

  /* ===============================
   TOGGLE & OVERLAY
  =============================== */
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    cursor: pointer;
    transition: color .3s;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    inset: 0;
    background: rgba(33,37,41,.8);
    transition: .3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: flex;
  }
}



.footer-agency{
  background: #0976ad;
  color:#d6e2e6;
  font-family:'Poppins',sans-serif;
  font-size:14px;
  line-height:1.9;
}

/* spacing */
.footer-top{ padding:50px 0 60px; }

/* logo */
.footer-logo img{
  width:140px;
  height:auto;
  margin-bottom:16px;
}

/* title */
.footer-title{
  font-size:16px;
  font-weight:600;
  color:#fff;
  margin-bottom:20px;
  letter-spacing:.5px;
  position:relative;
  font-family:'Poppins',sans-serif;
}
.footer-title:after{
  content:"";
  width:40px;height:2px;
  background:#fff;
  display:block;
  margin-top:10px;
}

/* desc */
.footer-desc{
  text-align:justify;
  font-size:13.5px;
}

/* services 2 kolom desktop */
.footer-services{
  column-count:1;
  column-gap:25px;
  padding:0;margin:0;
  list-style:none;
}
.footer-services li{
  position:relative;
  padding-left:16px;
  margin-bottom:5px;
  break-inside:avoid;
}
.footer-services li:before{
  content:"–";
  position:absolute;left:0;top:0;
  color:#fff;font-weight:600;
}
.footer-services a{
  color:#e8f6f8;
  text-decoration:none;
  font-size:13.5px;
}
.footer-services a:hover{
  color:#d5f1ff;
  padding-left:6px;
}

/* contact */
.footer-contact div{
  margin-bottom:10px; /* dari 6px → 10px (lebih lega tapi tidak jauh) */
  display:flex;
  align-items:flex-start; /* biar teks multi-line tetap enak */
  gap:10px; /* dari 8px → 10px */
  font-size:13.5px;
  line-height:1.6; /* dari 1.4 → 1.6 biar napas */
}
.footer-contact i{
  color:#fff;font-size:17px;min-width:20px;
}

/* social */
.social-links a{
  width:38px;height:38px;
  display:inline-flex;
  align-items:center;justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  margin-right:8px;color:#fff;
  transition:.3s;
}
.social-links a:hover{
  background:#2699d3;
  transform:translateY(-4px);
}

/* map */
.footer-map{
  margin-top:10px;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.30);
}
.footer-map iframe{
  width:100%;height:220px;border:0;
}

/* bottom */
.footer-bottom{
  background:#056595;
  padding:18px 0;
  font-size:11px;
  text-align:center;
}
.footer-bottom a{ color:#fff;text-decoration:none; }

/* tablet */
@media (max-width:991px){
  .footer-services{ column-count:1; }
  .footer-map iframe{ height:200px; }
}

/* HP */
@media (max-width:576px){
  .footer-top{ padding:50px 14px; }
  .footer-desc{ text-align:left; }
  .footer-logo,.social-links{ text-align:center; }
  .footer-map iframe{ height:170px; }
}






/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Wrapper Card */
.insight-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: 0.3s ease;
}

/* Thumbnail */
.insight-thumb {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.insight-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}


/* Body */
.insight-body {
    padding: 22px;
}

/* Filter kategori berita */
/* FILTER KATEGORI */
.filter-badge {
    background: linear-gradient(135deg, rgba(92,178,222,.15), rgba(22,117,165,.15));
    color: #1675a5;
    padding: 5px 12px;
    border-radius: 6px; /* kotak */
    font-size: 11px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
    text-decoration: none;
    transition: all .25s ease;
    border: 1px solid rgba(22,117,165,0.25);
}

/* HOVER */
.filter-badge:hover {
    background: linear-gradient(135deg, rgba(92,178,222,.9), rgba(22,117,165,.9));
    color: #fff !important;
    transform: translateY(-1px);
}

/* ACTIVE */
.filter-badge.active {
    background: linear-gradient(135deg, rgba(92,178,222,.9), rgba(22,117,165,.9));
    color: #fff !important;
    box-shadow: 0 4px 10px rgba(22,117,165,0.25);
    border: none;
}

/* CONTAINER BIAR RAPI */
.filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
/* END FILTER KATEGORI */

/* Badge */
.insight-badge {
    background: linear-gradient(135deg, rgba(92,178,222,.9), rgba(22,117,165,.9));
    color: #fff;
    padding: 3px 10px;
    border-radius: 6px; /* kotak (tidak full bulat) */
    font-size: 10px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
    line-height: 1;
    width: fit-content;
    white-space: nowrap;
}

/* Excerpt */
.insight-excerpt {
    margin: 10px 0 18px;
    flex-grow: 1;       /* ini bikin tinggi card konsisten */
    font-size: 13px;
    color: #555;
    line-height: 1.55;
    margin-bottom: 15px;
    text-align: justify;
    text-justify: inter-word;
}

.author-img {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eee;
}

/* Read More */
.insight-readmore {
    margin-top: 16px;
    text-align: right;
}

.insight-readmore a {
    font-weight: 600;
    color: #1675a5;
    text-decoration: none;
}

.insight-readmore a:hover {
    color: #2699d3;
}
/* Wrapper keseluruhan */
.insight-wrapper {
    position: relative;
}

/* IMAGE */
.insight-image {
    width: 100%;
    height: 230px;
    border-radius: 22px;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}


/* CARD CONTENT MENGAMBANG / OVERLAP */
.insight-card-content {
    background: #ffffff;
    position: relative;
    margin-top: -50px;

    /* card lebih kecil & mepet kanan */
    width: 95%;
    margin-left: auto;

    padding: 22px;
    border-radius: 22px;

    /* GANTI SHADOW DENGAN BORDER */
    box-shadow: none;
    border: 1px solid #e5e7eb; /* abu-abu lembut */

    z-index: 10;
    transition: .3s ease;

    /* === AGAR SEMUA CARD TINGGINYA SAMA === */
    display: flex;
    flex-direction: column;
    min-height: 100px;
}


/* readmore selalu di paling bawah */
.insight-readmore {
    margin-top: auto;
    text-align: right;
}


/* Title */
.insight-title a {
    font-family: 'Poppins', sans-serif !important;
    font-size: 15px;
    font-weight: 700;
    color: #1b2733;
    text-decoration: none;
    line-height: 1.3;
    margin-bottom: 10px;
}

.insight-title a:hover {
    color: #1675a5;
}

/* Meta + Read More dipaksa tetap di bawah */
.insight-meta {
    margin-bottom: 12px;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-img {
    width: 26px;
    height: 26px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 4px rgba(0,0,0,0.1);
}

.insight-readmore {
    margin-top: auto;   /* paksa turun */
    text-align: right;
    font-size: 12px;
}

.insight-readmore a {
    color: #1675a5;
    font-weight: 700;
    text-decoration: none;
}

.insight-readmore a:hover {
    color: #2699d3;
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
/* Scroll Top Button (di atas WA) */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 60px; /* di atas WA */
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 60px; /* muncul dengan slide */
}
/* WhatsApp Button floating - kecil & rapi */
.wa-btn {
    position: fixed;
    right: 15px;
    bottom: 15px;
    visibility: hidden;
    opacity: 0;
    background-color: #2699d3;
    color: white;
    padding: 6px 10px; /* lebih kecil */
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease; /* lebih cepat */
    z-index: 99999;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
    font-family: sans-serif;
}

.wa-btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.wa-btn.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

.btn-icon {
    width: 28px;   /* lebih kecil */
    height: 28px;  /* lebih kecil */
    object-fit: contain;
    margin-right: 6px;
}

.text-start {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.btn-title {
    font-weight: 600;
    font-size: 10px; /* lebih kecil */
}

.btn-sub {
    font-size: 8px; /* lebih kecil */
}



/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.breadcrumb {
    font-size: 0.85rem; /* ukuran small */
}

.breadcrumb .divider {
    margin: 0 8px;      /* jarak kiri–kanan panah */
    font-weight: 600;   /* biar lebih jelas */
    opacity: 0.7;
}
.breadcrumb a {
    color: #ffffff !important; /* putih */
}

.title-about {
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
}



/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 67px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
  color: #6c757d;
}
.section-titlel {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-titlel h2 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-titlel h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: #fff;
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}
.section-titlel h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: #ffffff;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
/* ================= MOBILE SECTION TITLE ================= */
@media (max-width: 576px) {

  .section-title,
  .section-titlel {
    padding-bottom: 36px;
  }

  .section-title h2,
  .section-titlel h2 {
    font-size: 22px;       /* 🔽 dari 32px */
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .section-title h2::before,
  .section-titlel h2::before {
    width: 100px;         /* 🔽 garis lebih pendek */
  }

  .section-title h2::after,
  .section-titlel h2::after {
    width: 40px;
    height: 2px;          /* 🔽 lebih tipis */
  }

  .section-title p {
    font-size: 14px;
    line-height: 1.6;
    padding: 0 10px;
      color: #6c757d;
  }

  .section-titlel p {
    font-size: 14px;
    line-height: 1.6;
    padding: 0 10px;
    color: rgba(255,255,255,.9);
  }
}

/* BUTTON SMALL */
.btn-get-started {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(92,178,222,.9), rgba(22,117,165,.9));
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 11px; /* 🔥 lebih kecil */
  letter-spacing: 0.8px;

  display: inline-block;
  padding: 6px 18px 7px 18px; /* 🔥 lebih tipis */
  
  border-radius: 7px; /* 🔥 lebih kecil dari 10px */
  transition: all 0.25s ease;
  text-decoration: none;

  border: 0.5px solid rgba(255,255,255,0.6);
  margin-top: 20px;
}

/* HOVER */
.btn-get-started:hover {
  background: linear-gradient(135deg, rgba(22,117,165,.9), rgba(92,178,222,.9));
  color: #ffffff;
  transform: translateY(-1px); /* 🔥 lebih halus */
}


/*--------------------------------------------------------------
# Hero Section (FIX + SLIDESHOW READY)
--------------------------------------------------------------*/

/* 🔥 Override flex bawaan agar tidak ganggu slider */
#hero {
  display: block !important;
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 120px 0 60px 0;
}

/* optional class tambahan */
.hero-section {
  padding-top: 120px;
}

/* SLIDE */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

/* 🔥 POSISI KONTEN */
.hero-row {
  height: 100%;
  display: flex;
  align-items: flex-start; 
  padding-top: 160px;
}

/* TYPOGRAPHY */
.hero h1 {
  margin: 0 0 20px 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
  max-width: 600px;
}

/* BUTTON */
.hero .btn-get-started {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(92,178,222,.9), rgba(22,117,165,.9));
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  border: 0.5px solid #ffffff;
  margin-top: 30px;
}

.hero .btn-get-started:hover {
  background: linear-gradient(135deg, rgba(22,117,165,.9), rgba(92,178,222,.9));
  color: #ffffff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

/* VIDEO BUTTON */
.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/* ANIMATION */
.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .hero .btn-get-started {
    font-size: 11px !important;
    padding: 10px 25px 12px 25px;
  }
}

@media (max-width: 768px) {
 .hero-row {
    padding-top: 120px; /* lebih turun tapi tetap proporsional */
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

/* KEYFRAMES */
@keyframes up-down {
  0% { transform: translateY(10px); }
  100% { transform: translateY(-10px); }
}
/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 10px 0;
}

.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

/* =========================
   ABOUT MODERN
========================= */

.about-modern {
  background: linear-gradient(135deg, #f8fbff, #eef6fb);
  padding: 80px 0;
}

/* badge kecil */
.badge-about {
  display: inline-block;
  background: rgba(38, 153, 211, 0.1);
  color: #2699d3;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* title */
.title-about {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  color: #2699d3;
  margin-bottom: 1rem;
  position: relative;
}

/* garis kecil bawah title */
.title-about::after {
  content: '';
  width: 45px;
  height: 3px;
  background: #ffffff;
  display: block;
  margin-top: 8px;
  border-radius: 5px;
}

.title-about1 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  color: #2699d3;
  margin-bottom: 1rem;
  position: relative;
}

.title-about1::after {
  content: '';
  width: 45px;
  height: 3px;
  background: #2699d3;
  display: block;
  margin-top: 8px;
  border-radius: 5px;
}

/* text */
.text-about {
  margin-top: 10px;
}

.text-about p,
.about-full-text p {
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.9;
  text-align: justify;
}

/* first letter effect */
.about-modern .row:first-child .text-about p:first-child::first-letter {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2699d3;
}

/* =========================
   IMAGE (LEBIH KECIL & RAPI)
========================= */

.about-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  max-width: 420px;   /* 🔥 BATASI AGAR TIDAK TERLALU BESAR */
  margin: 0 auto;     /* center */
}
.aboutt-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  max-width: 320px;   /* 🔥 BATASI AGAR TIDAK TERLALU BESAR */
  margin: 0 auto;     /* center */
}
.about-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  transition: 0.4s ease;
}

/* decorative shape */
.image-shape {
  position: absolute;
  width: 90px;
  height: 90px;
  background: #2699d3;
  bottom: -15px;
  right: -15px;
  border-radius: 16px;
  opacity: 0.15;
}

/* =========================
   FULL TEXT
========================= */

.about-full-text {
  margin-top: 10px;
}

/* =========================
   VISI MISI MODERN
========================= */

.visi-modern {
  background: #ffffff;
  padding: 80px 0;
}

/* card glass effect */
.visi-card {
  padding: 2rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.4);
}

/* judul */
.visi-card h3 {
  font-weight: 600;
  font-size: 1.2rem;
  color: #2699d3;
  margin-bottom: 1rem;
}

/* isi */
.visi-card p {
  color: #555;
  line-height: 1.8;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .about-image-wrapper {
    max-width: 320px; /* lebih kecil di tablet */
  }
}

@media (max-width: 768px) {
  .about-modern {
    padding: 60px 0;
  }

  .title-about {
    font-size: 1.3rem;
  }

  .about-full-text {
    padding: 0 10px;
  }

  .about-image-wrapper {
    max-width: 260px; /* 🔥 kecil di mobile */
  }

  .text-about p,
  .about-full-text p {
    line-height: 1.8;
    margin-bottom: 1.3rem;
  }
  .btn-modern {
    font-size: 11px;
  }
}

.btn-modern {
  display: inline-block;
  padding: 8px 18px;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(135deg, rgba(92,178,222,.9), rgba(22,117,165,.9));
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover effect */
.btn-modern:hover {
  background: linear-gradient(135deg, rgba(22,117,165,.9), rgba(92,178,222,.9));
  color: #fff;
}

/* Responsive (lebih kecil di HP) */
@media (max-width: 576px) {
  .btn-modern {
    font-size: 11px;
    padding: 7px 14px;
  }
}

/* ===================== */
/* Kenapa Sebagian Besar Bisnis Gagal Tumbuh di Era Digital? */
/* ===================== */
:root {
  --primary: #2699d3;
  --text-dark: #2c3e50;
  --text-muted: #6c757d;
}
/* ===================== */
/* GARIS HEADER (WAJIB) */
/* ===================== */
.ps-head-item.problem::after,
.ps-head-item.solution::after {
  content: "";
  flex: 1;
  height: 2px;
  margin-left: 10px;
  background: linear-gradient(to right, currentColor, transparent);
}

/* khusus kanan */
.ps-head-item.solution::after {
  margin-left: 0;
  margin-right: 10px;
  background: linear-gradient(to left, currentColor, transparent);
}
.ps-head-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
/* ROW */
.ps-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

/* HEADER */
.ps-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.ps-head-item {
  width: 48%;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
}

.ps-head-item.solution {
  justify-content: flex-end;
  color: var(--primary);
}

/* ARROW */
.ps-arrow {
  flex: 0 0 40px;
  text-align: center;
}

.ps-arrow i {
  font-size: 18px;
  color: #b8c2cc;
  transition: 0.3s;
}

.ps-row:hover .ps-arrow i {
  transform: translateX(5px);
}

/* BUBBLE */
.ps-bubble {
  width: 45%;
  padding: 14px 16px;
  border-radius: 14px;
  transition: 0.3s;
}

/* PROBLEM */
.ps-bubble.problem {
  background: #eef8ff;
  border: 1px solid #e5e9ef;
}

/* SOLUTION */
.ps-bubble.solution {
  background: linear-gradient(135deg, #2699d3, #1c7fb5);
  color: #fff;
}

/* CONTENT (BIAR SEJAJAR) */
.ps-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ICON */
.ps-bubble i {
  font-size: 14px;
  min-width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.ps-bubble.problem i {
  background: rgba(38,153,211,0.1);
  color: var(--primary);
}

.ps-bubble.solution i {
  background: rgba(255,255,255,0.2);
}

/* TEXT */
.ps-bubble p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.4;
}

/* HOVER */
.ps-row:hover .ps-bubble:hover {
  opacity: 1;
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ps-row {
    flex-direction: column;
  }

  .ps-bubble {
    width: 100%;
  }

  .ps-arrow {
    transform: rotate(90deg);
  }

  .ps-head {
    flex-direction: column;
    gap: 10px;
  }

  .ps-head-item {
    width: 100%;
  }

  .ps-head-item.solution {
    justify-content: flex-start;
  }
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .features-item p:last-child {
  margin-bottom: 0;
}

/* model keterlibatan */
 #features-video .video-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #acd1e4;
  height: 100%;

  /* PENTING */
  display: flex;
  flex-direction: column;
  }

  /* VIDEO BESAR */
  #features-video .video-wrapper {
    height: 340px;
    flex-shrink: 0;
    background: #f5f9fc;
  }

  #features-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* CONTENT RAPi & KONSISTEN */
  #features-video .content-overlay {
    padding: 22px 22px 24px;
    background: #fff;

    /* PENTING */
    flex: 1; /* isi sisa ruang */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    min-height: 150px;
    transition: all .35s ease;
  }

  /* Judul konsisten */
  #features-video .content-overlay h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  /* Deskripsi konsisten */
  #features-video .content-overlay p {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
    line-height: 1.65;

    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;

    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* HOVER */
  #features-video .video-card:hover .content-overlay {
    background: #2699d3;
  }

  #features-video .video-card:hover h3,
  #features-video .video-card:hover p {
    color: #fff;
  }

  /* Responsive */
  @media (max-width: 992px) {
    #features-video .video-wrapper { height: 280px; }
  }
  @media (max-width: 768px) {
    #features-video .video-wrapper { height: 230px; }
  }
/* end model keterlibatan */


/* detail layanan */
    /* DESKRIPSI LAYANAN */
.info-card:not(.package-card-modern) p,
.info-card:not(.package-card-modern) li,
.info-card:not(.package-card-modern) span,
.info-card:not(.package-card-modern) div {
    font-size: 12px !important;
    line-height: 1.7;
}

/* DESKRIPSI TAWARAN (area scroll) */
.offer-scroll,
.offer-scroll * {
    font-size: 12px !important;
    line-height: 1.7;
}

/* STRATEGI IMPLEMENTASI */
.strategy-desc,
.strategy-desc * {
    font-size: 12px !important;
    line-height: 1.7;
}

    .section-product {
        font-size: 14px;
        line-height: 1.85;
        color: #444;
    }

    .text-brand {
        color: #2699d3;
    }

    .text-justify {
        text-align: justify;
        line-height: 1.8;
    }

    .catalog-hero {
        position: relative;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        color: #fff;
        padding: 5rem 0;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
        overflow: hidden;
    }

    .hero-desc {
        font-size: 14px;
        opacity: .9;
        max-width: 90%;
    }

    .hero-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    .sidebar-box {
        background: #fff;
        border-radius: 20px;
        padding: 22px;
        position: sticky;
        top: 90px;

    }

    .sidebar-box .list-group-item {
        font-size: 12px;
        border: none;
        padding: 10px 14px;
        border-radius: 12px;
        margin-bottom: 6px;
        background: #e2f6ff;
    }

    .sidebar-box .list-group-item.active {
        background: linear-gradient(135deg, #2699d3, #5ab7ea);
        color: #fff;
        font-weight: 600;
    }

    .contact-box {
        background: #e2f6ff;
        border-radius: 18px;
        border-left: 4px solid #2699d3;
    }

    .product-hero-img {
        border-radius: 24px;
        height: 420px;
        object-fit: cover;
    }

    .info-card {
        background: #f8fbff;
        border-radius: 20px;
        padding: 24px;
        height: 100%;
        box-shadow: 0 12px 35px rgba(0, 0, 0, .06);
    }

    .info-title {
        font-size: 15px;
        font-weight: 700;
        color: #2699d3;
        margin-bottom: 14px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .strategy-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }

    .strategy-card {
        background: #f8fbff;
        color: #222;
        border-radius: 16px;
        padding: 20px;
        min-height: 180px;
        position: relative;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        font-family: "Segoe UI", sans-serif;
        border: 1.5px solid #2699d3;
        box-shadow: 0 10px 25px rgba(38, 153, 211, 0.15);
    }

    .strategy-desc {
        font-size: 12px;
        line-height: 1.6;
        opacity: 0.9;
    }


    .review-card {
        max-width: 580px;
        min-height: 180px;
        margin: 0 auto;
        padding: 20px 28px;
        border-radius: 20px;
        background: linear-gradient(135deg, #0472aa, #38b5f4);
        box-shadow: 0 10px 25px rgba(38, 153, 211, 0.15);
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        position: relative;
        font-size: 12px;
        line-height: 1.6;
    }

    .review-card::before {
        content: "❝";
        position: absolute;
        top: 12px;
        left: 16px;
        font-size: 28px;
        color: rgba(255, 255, 255, 0.85);
    }

    .review-name {
        font-weight: 600;
        color: #fff;
        font-size: 13px;
        margin-bottom: 10px;
        letter-spacing: 0.3px;
    }

    .review-card p {
        color: #fff;
        margin: 0 auto;
        max-width: 90%;
        opacity: 0.9;
    }

    .review-carousel .carousel-control-prev,
    .review-carousel .carousel-control-next {
        width: 36px;
        height: 36px;
        top: 50%;
        transform: translateY(-50%);
        background: #4da0d8;
        border-radius: 50%;
        opacity: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s ease;
    }

    .review-carousel .carousel-control-prev:hover,
    .review-carousel .carousel-control-next:hover {
        background: #3b84b0;
        box-shadow: 0 0 0 4px rgba(38, 153, 211, 0.2);
    }

    .review-carousel .carousel-control-prev::after,
    .review-carousel .carousel-control-next::after {
        font-family: "bootstrap-icons";
        font-size: 12px;
        color: #fff;
    }

    .review-carousel .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: rgba(38, 153, 211, 0.35);
    }

    .review-carousel .carousel-indicators .active {
        width: 15px;
        height: 2px;
        border-radius: 5px;
        background: linear-gradient(135deg, #0976be, #87c8f6);
        box-shadow: 0 3px 8px rgba(38, 153, 211, 0.25);
    }

    @media (max-width: 768px) {
        .review-card {
            min-height: 160px;
            padding: 16px 20px;
        }
    }

    .offer-scroll {
        max-height: 330px;
        overflow-y: auto;
        padding-right: 6px;
    }

    .offer-scroll::-webkit-scrollbar {
        width: 4px;
    }

    .offer-scroll::-webkit-scrollbar-thumb {
        background: #2699d3;
        border-radius: 10px;
    }

    @media (max-width: 768px) {

        .hero-desc {
            max-width: 100%;
        }

        .product-hero-img {
            height: 260px;
        }

        .strategy-grid {
            grid-template-columns: 1fr;
        }

        .review-card {
            height: 200px;
            padding: 18px;
        }

        .offer-scroll {
            max-height: 220px;
        }
    }

    .form-control::placeholder {
        font-size: 0.8rem;
        letter-spacing: .3px;
        color: #9ca3af;
    }

    .package-card-modern {
        background: #f8fbff;
        border-radius: 16px;
        padding: 18px 18px;
        position: relative;
        transition: all .25s ease;
        border: 1.5px solid #2699d3;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .package-card-modern:hover {
        box-shadow: 0 12px 28px rgba(0, 0, 0, .06);
    }

    .package-card-modern.recommended {
        border: 1.5px solid #2699d3;
        box-shadow: 0 10px 25px rgba(38, 153, 211, 0.15);
        background: #f8fbff;
    }

    .badge-recommended {
        position: absolute;
        top: 14px;
        right: -50px;
        background: linear-gradient(135deg, #2699d3, #5ab7ea);
        color: #fff;
        font-size: 9px;
        font-weight: 600;
        padding: 5px 45px;
        transform: rotate(45deg);
        text-align: center;
        letter-spacing: .5px;
        box-shadow: 0 4px 12px rgba(38, 153, 211, 0.25);
    }

    .package-card-modern {
        overflow: hidden;
    }

    .package-name {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 6px;
        color: #111827;
    }

    .package-price-modern {
        font-size: 14px;
        font-weight: 700;
        color: #2699d3;
        margin-bottom: 14px;
    }

    .package-description,
    .package-description * {
        font-size: 12px !important;
        line-height: 1.5 !important;
        color: #4b5563 !important;
    }

    .package-description ul {
        list-style: none;
        padding-left: 0;
        margin-bottom: 0;
    }

    .package-description li {
        position: relative;
        padding-left: 16px;
        margin-bottom: 6px;
    }

    .package-description li::before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 0;
        color: #2699d3;
        font-weight: 700;
        font-size: 10px;
    }

    .package-note,
    .package-note * {
        font-size: 9px !important;
        line-height: 1.4 !important;
        color: #6b7280 !important;
    }

    .package-note {
        margin-top: 10px;
        padding-top: 8px;
        border-top: 1px dashed #e5e7eb;
    }

    .btn-brand {
        background: #2699d3;
        border: none;
        font-size: 12px;
        font-weight: 600;
        padding: 8px 14px;
        border-radius: 10px;
        transition: all .25s ease;
        color: #fff;
    }

    .btn-brand:hover {
        background: #1f7fb0;
        box-shadow: 0 6px 18px rgba(38, 153, 211, 0.25);
        color: #fff;
    }

    @media (max-width: 992px) {
        .package-card-modern.recommended {
            transform: none;
        }
    }

    @media (max-width: 768px) {
        .package-card-modern {
            padding: 16px;
        }

        .package-price-modern {
            font-size: 16px;
        }

        .package-description,
        .package-description * {
            font-size: 9.5px !important;
        }
    }

    .row.g-4 {
        align-items: stretch;
    }

    .package-card-modern {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .package-description {
        flex-grow: 1;
    }

    .package-card-modern .btn-brand {
        margin-top: auto;
    }



    /* ================= ROOT CONTROL (MUDAH DI-TUNING) ================= */
:root {
    --node-distance: 165px;
    --label-distance: 320px;
}

/* ================= WRAPPER ================= */
.concept-wrapper {
    position: relative;
    max-width: 720px;
    margin: 60px auto;
}

.concept-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
}

/* ================= CENTER ================= */
.center-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    background: #2699d3;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border: 1px dashed #ddd;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    font-size: 12px;
}

.center-title-text {
    font-size: 14px;
    line-height: 1.2;
    color: #fff;
}

/* ================= NODE ================= */
.circle-node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 55px;
    height: 55px;
    margin: -27.5px;

    transform:
        rotate(var(--angle))
        translateX(var(--node-distance))
        rotate(calc(var(--angle) * -1));

    z-index: 5;
}

/* OFFSET HALUS PER POSISI */
.circle-node.pos-0 { transform: rotate(180deg) translateX(var(--node-distance)) rotate(-180deg); }
.circle-node.pos-1 { transform: rotate(270deg) translateX(calc(var(--node-distance) + 10px)) rotate(-270deg) translateY(35px); }
.circle-node.pos-2 { transform: rotate(0deg) translateX(var(--node-distance)) rotate(0deg); }
.circle-node.pos-3 { transform: rotate(135deg) translateX(var(--node-distance)) rotate(-135deg); }
.circle-node.pos-4 { transform: rotate(45deg) translateX(var(--node-distance)) rotate(-45deg); }

/* NODE STYLE */
.node-inner {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    border: 2px solid #fff;
}

/* IMAGE */
.node-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* ICON */
.node-inner i {
    font-size: 1.3rem;
    z-index: 2;
}

/* NUMBER */
.node-number {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: #2699d3;
    color: #fff;
    font-size: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* ================= LABEL ================= */
.label-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 230px;
    margin-left: -115px;
    margin-top: -40px;

    transform:
        rotate(var(--angle))
        translateX(var(--label-distance))
        rotate(calc(var(--angle) * -1));
}

/* OFFSET HALUS PER POSISI */
.label-card.pos-0 {
    transform: rotate(180deg) translateX(var(--label-distance)) rotate(-180deg) translateY(-5px);
}

.label-card.pos-1 {
    transform: rotate(270deg) translateX(calc(var(--label-distance) + 10px)) rotate(-270deg) translateY(-5px);
}

.label-card.pos-2 {
    transform: rotate(0deg) translateX(var(--label-distance)) rotate(0deg) translateY(-5px);
}

.label-card.pos-3 {
    transform: rotate(135deg) translateX(calc(var(--label-distance) - 20px)) rotate(-135deg) translateY(25px);
}

.label-card.pos-4 {
    transform: rotate(45deg) translateX(calc(var(--label-distance) - 20px)) rotate(-45deg) translateY(25px);
}

/* CARD */
.card-body-custom {
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    text-align: left;
    border-top: 3px solid #ddd;
    font-size: 9px;
    line-height: 1.5;
    color: #666;
}

/* ================= COLORS ================= */
.purple .node-inner { color: #6f42c1; border-color: #6f42c1; }
.purple .card-body-custom { border-top-color: #6f42c1; }

.red .node-inner { color: #dc3545; border-color: #dc3545; }
.red .card-body-custom { border-top-color: #dc3545; }

.teal .node-inner { color: #20c997; border-color: #20c997; }
.teal .card-body-custom { border-top-color: #20c997; }

.orange .node-inner { color: #fd7e14; border-color: #fd7e14; }
.orange .card-body-custom { border-top-color: #fd7e14; }

.blue .node-inner { color: #0d6efd; border-color: #0d6efd; }
.blue .card-body-custom { border-top-color: #0d6efd; }

.indigo .node-inner { color: #6610f2; border-color: #6610f2; }
.indigo .card-body-custom { border-top-color: #6610f2; }

/* ================= MOBILE ================= */
.mobile-dot {
    position: absolute;
    left: -7px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: #2699d3;
    border-radius: 50%;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  padding: 50px 30px;
  margin-top: 36px;
  transition: all ease-in-out 0.3s;
  position: relative;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  text-align: center;
}

.services .service-item .icon {
  background: var(--accent-color);
  color: var(--contrast-color);
  margin: 0;
  width: 72px;
  height: 72px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid var(--background-color);
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  background: var(--background-color);
}

.services .service-item:hover h3 {
  color: var(--accent-color);
}

.services .service-item:hover .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
}

.services .service-item:hover .icon i {
  color: var(--accent-color);
}

/* solusi dan tawaran */
    .konten-description
    .konten-description ul {
        list-style: none;
        padding-left: 0;
        margin-bottom: 0;
    }

    .konten-description li {
        position: relative;
        padding-left: 16px;
        margin-bottom: 6px;
    }

    .konten-description li::before {
        content: "✓";
        position: absolute;
        left: 0;
        top: 0;
        color: #2699d3;
        font-weight: 700;
        font-size: 10px;
    }
/* end solusi dan tawaran */

/* ===============================
   PORTFOLIO FILTER
=============================== */
.portfolio .portfolio-filters {
  text-align: center;
  margin-bottom: 20px;
}

.portfolio .portfolio-filters li {
  display: inline-block;
  padding: 8px 16px;
  margin: 5px;
  font-size: 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: #fff;
  background: linear-gradient(135deg, rgba(92,178,222,.9), rgba(22,117,165,.9));
}


/* ===============================
   CARD PORTFOLIO
=============================== */
.portfolio-card {
  display: block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  height: 100%;
  transition: all 0.3s ease;
}

/* ===============================
   IMAGE CONSISTENT
=============================== */
.portfolio-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}


/* ===============================
   OVERLAY
=============================== */
/* OVERLAY DEFAULT */
.portfolio-info {
  position: absolute;
  inset: 0; /* full cover */
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transition: all 0.4s ease;

  background: rgba(0, 0, 0, 0.3); /* kondisi awal */
  backdrop-filter: blur(2px);
}

/* HOVER EFFECT */
.portfolio-card:hover .portfolio-info {
  opacity: 1;

  /* putih transparan */
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
}

/* LOGO DI TENGAH */
.client-logos {
  max-height: 50px;
  object-fit: contain;

  transform: scale(0.8);
  transition: all 0.3s ease;
}

/* LOGO ANIMASI */
.portfolio-card:hover .client-logos {
  transform: scale(1);
}




/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 5px;
  height: auto;
  max-width: 260px; /* biar tidak terlalu besar */
  margin: auto;
}

/* ================= IMAGE (DIPENDEKKAN & PROPORSIONAL) ================= */
.team .team-member .member-img {
  position: relative;
  overflow: hidden;
  height: 200px; /* 🔥 kunci utama biar tidak tinggi */
  /* alternatif kalau mau kotak sempurna:
     aspect-ratio: 1 / 1;
  */
}

.team .team-member .member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* biar gambar tetap rapi */
  display: block;
}

/* ================= SOCIAL ================= */
.team .team-member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: var(--heading-color);
  margin: 0 8px; /* sedikit dirapatkan */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a i {
  line-height: 0;
}

.team .team-member .social a:hover {
  color: var(--accent-color);
}

.team .team-member .social i {
  font-size: 16px; /* sedikit diperkecil */
  margin: 0 2px;
}

/* ================= INFO (DIPENDEKKAN) ================= */
.team .team-member .member-info {
  padding: 15px 10px; /* 🔥 sebelumnya 25px → lebih pendek */
  text-align: center;
}

.team .team-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 3px;
  font-size: 16px; /* diperkecil */
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .team-member .member-info span {
  display: block;
  font-size: 12px; /* diperkecil */
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 13px;
  line-height: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/* ================= HOVER ================= */
.team .team-member:hover .social {
  opacity: 1;
}
.teamSwiper {
  margin-bottom: 10px; /* 🔥 kecilkan jarak bawah slider */
}

.team-swiper-nav {
  margin-top: -90px; /* tarik ke atas */
  position: relative;
  z-index: 5;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--background-color);
  padding: 60px 40px;
  height: 100%;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 400;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: var(--accent-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  border-top-color: var(--accent-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Faq Section (Improved)
--------------------------------------------------------------*/

.faq .faq-item {
  margin: 28px 0;
  padding: 24px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

/* Header kiri (icon + pertanyaan) */
.faq .faq-item .col-lg-5 {
  align-items: flex-start;
}

.faq .faq-item i {
  color: var(--accent-color);
  font-size: 20px;
  margin-right: 12px;
  margin-top: 4px;
  flex-shrink: 0;
}

.faq .faq-item h4 {
  font-size: 14px;
  line-height: 28px;
  font-weight: 700;
  margin: 0;
}

/* Jawaban */
.faq .faq-item p {
  font-size: 13px;
  line-height: 1.9;
  text-align: justify;
  color: #555;
  margin-bottom: 0;
}

/* Jika nanti pakai list (disarankan) */
.faq .faq-item ul {
  padding-left: 18px;
  margin-top: 8px;
  line-height: 1.9;
  text-align: justify;
  color: #555;
  font-size: 15.5px;
}

.faq .faq-item ul li {
  margin-bottom: 6px;
}

/* First & Last item fix */
.faq .faq-item:first-child {
  padding-top: 0;
  margin-top: 0;
}

.faq .faq-item:last-child {
  border: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* Responsive tweak */
@media (max-width: 991.98px) {
  .faq .faq-item {
    padding: 20px 0;
  }

  .faq .faq-item h4 {
    font-size: 16px;
  }

  .faq .faq-item p,
  .faq .faq-item ul {
    font-size: 15px;
  }
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 24px 0 30px 0;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .swiper-wrapper {
  height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.15);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

  .portfolio-details .swiper-button-prev,
  .portfolio-details .swiper-button-next {
    display: none;
  }
}

.portfolio-details .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.portfolio-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50px;
  transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
