/**
* Template Name: Dewi
* Template URL: https://bootstrapmade.com/dewi-free-multi-purpose-html-template/
* 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: "Roboto",  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: "Inter",  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: #273d4e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #263592; /* 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: #e5eaee;  /* The default color of the main navmenu links */
  --nav-hover-color: #FFB74D; /* 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: #FFB74D; /* 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: #f1f4fa;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #263592;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #28323a;
  --contrast-color: #ffffff;
}

/* 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;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* 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);
  }
}

/* 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;
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 65px; /* Perbesar tinggi maksimal logo */
  margin-right: 8px; /* Pertahankan jarak kanan logo */
  height: auto;      /* Pertahankan rasio aspek */
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  font-size: 13px;
  padding: 7px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
  border: 2px solid var(--contrast-color);
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: hsl(232, 59%, 36%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 18px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 14px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

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

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: color-mix(in srgb, var(--nav-color) 90%, white 15%);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 100%;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    border-radius: 4px;
    z-index: 1000;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

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

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    position: absolute;
    top: 0;
    left: 100%;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    background-color: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
  }

  .mobile-nav-active .navmenu ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/* Footer Styling */
/* Footer General Styles */
.footer {
  background-color: #0D1117; /* Warna yang lebih dalam dan elegan */
  color: #C9D1D9;
  padding: 60px 0;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
}

.footer h4 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 18px;
  color: #FFB74D; /* Gold yang lebih soft */
  text-transform: uppercase;
}

.footer p, .footer a {
  font-size: 15px;
  margin-bottom: 8px;
  color: #C9D1D9;
  text-decoration: none;
}

.footer a:hover {
  color: #FFB74D;
  text-decoration: underline;
}

/* Footer Links */
.footer .footer-links ul {
  list-style: none;
  padding: 0;
}

.footer .footer-links ul li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.footer .footer-links ul li i {
  color: #FFB74D;
  margin-right: 8px;
}

/* Social Media Icons */
.footer .social-links a {
  width: 38px;
  height: 38px;
  background: #161B22;
  color: #C9D1D9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin-right: 8px;
  font-size: 18px;
}

.footer .social-links a:hover {
  background: #FFB74D;
  color: #0D1117;
}

.footer-newsletter {
  background-color: #0D1117; /* Warna latar belakang gelap untuk kontras */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer-newsletter h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #FFB74D; /* Warna aksen brand */
}

.footer-newsletter p {
  color: #ddd;
  font-size: 15px;
  line-height: 1.7;
}

.footer-newsletter .btn {
  background-color: #FFB74D;
  border: 1px solid transparent;
  padding: 10px 24px;
  font-size: 0.95rem;
  color: #0D1117;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border-radius: 5px;
}

.footer-newsletter .btn:hover {
  background-color: transparent;
  color: #FFB74D;
  border-color: #FFB74D;
  text-decoration: none;
}

/* Scroll to Top */
#scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: #FFB74D;
  color: #0D1117;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 999;
}

#scroll-to-top:hover {
  background: #E6B800;
}

/* Responsive */
@media (max-width: 768px) {
  .footer .footer-about,
  .footer .footer-links,
  .footer .footer-newsletter {
    margin-bottom: 20px;
  }

  .footer .footer-newsletter .newsletter-form {
    flex-direction: column;
  }

  .footer .footer-newsletter .newsletter-form input[type="email"],
  .footer .footer-newsletter .newsletter-form button {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 8px;
  }
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: 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 #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  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;
}

/*--------------------------------------------------------------
# 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);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title .container {
  margin-top: 30px; /* Menambahkan batas atas 30px */
  position: relative; /* Pastikan posisi tetap */
  z-index: 1; /* Agar tidak tertutupi oleh pseudo-element :before */
}

.page-title:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
  text-transform: uppercase;
}

.page-title .breadcrumbs {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.page-title .breadcrumbs:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li.parent a {
  color: #FFB74D;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

.page-title .breadcrumbs ol li.parent a:hover {
  color: #ffa217;
  text-decoration: underline;
}

.page-title .breadcrumbs ol li.current a {
  color: #fff;
  font-weight: bold;
  pointer-events: none;
}


.page-title .breadcrumbs ol li.current a:hover {
  color: #FFB74D;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "→";
  display: inline-block;
  padding-right: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: bold;
  transition: color 0.3s ease-in-out;
}

.page-title .breadcrumbs ol li+li:hover::before {
  color: #ffa217;
}

/*--------------------------------------------------------------
# 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: 76px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .section-title p {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh; /* Mengatur tinggi Hero penuh viewport */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0; /* Hapus padding untuk menghindari sisa ruang */
  margin: 0; /* Hapus margin untuk menghindari sisa ruang */
}



/* Swiper Container Khusus di Hero Section */
.hero .swiper-container {
  width: 100%;
  height: 100vh;
  position: relative;
}

/* Swiper Wrapper di Hero Section */
.hero .swiper-wrapper {
  position: relative;
}

/* Swiper Slide di Hero Section */
.hero .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Gambar Latar di Swiper Slide Hero Section */
.hero .swiper-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Memastikan gambar menutupi hero */
  z-index: 1; /* Gambar berada di bawah overlay */
}

.hero .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2; /* Overlay berada di atas gambar */
}

/* Teks pada Hero Section */
.hero .swiper-slide .container {
  position: relative;
  z-index:3; /* Teks berada di atas overlay */
  color: #ffffff; /* Warna teks putih */
  text-align: center;
}

/* Heading di Hero Section */
.hero h2 {
  color: #ffffff; /* Warna teks putih */
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Paragraf di Hero Section */
.hero p {
  color: rgba(255, 255, 255, 0.8);
  margin: 10px 0 0 0;
  font-size: 24px;
}

/* Tombol Get Started di Hero Section */
.hero .btn-get-started {
  background: linear-gradient(90deg, #263592 0%, #4f6edb 100%);
  color: #fff;
  font-weight: 400;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 38px;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(38, 53, 146, 0.13);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.hero .btn-get-started::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.01) 100%);
  pointer-events: none;
  border-radius: 8px;
}

.hero .btn-get-started:hover,
.hero .btn-get-started:focus {
  background: linear-gradient(90deg, #1b265a 0%, #263592 100%);
  box-shadow: 0 8px 28px rgba(38, 53, 146, 0.18);
  transform: translateY(-2px) scale(1.03);
  color: #fff;
  outline: none;
}

/* Navigasi Swiper di Hero Section */
.hero .swiper-pagination {
  bottom: 10px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

/* Animasi Slide */
.hero .swiper-slide h2,
.hero .swiper-slide p,
.hero .swiper-slide .btn-get-started,
.hero .swiper-slide .btn-watch-video {
  opacity: 0; /* Awalnya tidak terlihat */
  transform: translateY(30px); /* Posisi awal di bawah */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Ketika Slide Aktif */
.hero .swiper-slide-active h2,
.hero .swiper-slide-active p,
.hero .swiper-slide-active .btn-get-started,
.hero .swiper-slide-active .btn-watch-video {
  opacity: 1; /* Terlihat */
  transform: translateY(0); /* Posisi normal */
}

/* --------------------------------------------------------------
   RESPONSIVE STYLES UNTUK HERO SECTION
-------------------------------------------------------------- */

/* Untuk perangkat sangat kecil (≤ 480px - smartphone kecil) */
@media (max-width: 480px) {
  .hero h2 {
    font-size: 24px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero .btn-get-started {
    padding: 10px 24px;
    font-size: 10px;
    gap: 6px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
}

/* Untuk perangkat kecil (≤ 768px - smartphone dan tablet potrait) */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero .btn-get-started {
    padding: 12px 30px;
    font-size: 11px;
  }
}

/* Untuk perangkat medium (≤ 992px - tablet landscape & laptop kecil) */
@media (max-width: 992px) {
  .hero h2 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero .btn-get-started {
    font-size: 12px;
    padding: 12px 34px;
  }
}

/* Untuk perangkat besar (≤ 1200px - laptop dan desktop kecil) */
@media (max-width: 1200px) {
  .hero h2 {
    font-size: 42px;
  }

  .hero p {
    font-size: 20px;
  }

  .hero .btn-get-started {
    font-size: 12px;
    padding: 14px 36px;
  }
}


/*--------------------------------------------------------------
# About Homepage Section
--------------------------------------------------------------*/
.about {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.about .section-title {
  padding-bottom: 5px;
}

.about .section-title h2 {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color, #000), transparent 50%);
  position: relative;
  margin-bottom: 8px;
}

.about .section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color, #263592);
  margin: 4px 10px;
}

.about .section-title p {
  color: var(--heading-color, #212529);
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: var(--heading-font, 'Poppins', sans-serif);
  margin: 0;
}

/* Headings and paragraph default */
.about h3 {
  font-size: 28px;
  font-weight: 700;
  color: #263592;
}

.about h5 {
  font-size: 20px;
  font-weight: 600;
  color: #263592;
}

.about p,
.about .text-muted {
  font-size: 16px;
  line-height: 1.8;
  color: #6c757d;
}

/* Responsive typography */
@media (max-width: 992px) {
  .about .section-title p {
    font-size: 30px;
  }

  .about h3 {
    font-size: 24px;
  }

  .about h5 {
    font-size: 18px;
  }

  .about p,
  .about .text-muted {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 60px 0;
  }

  .about .section-title p {
    font-size: 24px;
  }

  .about h3 {
    font-size: 22px;
  }

  .about h5 {
    font-size: 17px;
  }

  .about p,
  .about .text-muted {
    font-size: 14.5px;
  }

  .about .btn {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  }
  .about .btn:hover {
    background-color: #003f82;
    color: #ffffff;
  }

  .about-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Play button tetap sama */
.about .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5F5F5;
  font-size: 24px;
  transition: all 0.3s ease;
  z-index: 10;
}

.about .play-btn:hover {
  background-color: #263592;
  transform: translate(-50%, -50%) scale(1.1);
}


/* Image utility */
.object-fit-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 400px;
  border-radius: 0.75rem;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
}

/* TinyMCE content */
.tinymce-content ul,
.tinymce-content ol {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.tinymce-content li {
  margin-bottom: 0.5rem;
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.section-divider {
  position: relative;
  margin: 4rem auto;
  width: 100%;
  max-width: 720px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
  transition: background-color 0.3s ease;
}

.section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 4px;
  background-color: #0d6efd; /* Bootstrap primary, bisa diganti jika perlu */
  border-radius: 100px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  animation: pulseDivider 2.5s ease-in-out infinite;
}

/* Animasi halus untuk divider */
@keyframes pulseDivider {
  0%, 100% {
    opacity: 1;
    transform: translate(-50%, -50%) scaleX(1);
  }
  50% {
    opacity: 0.85;
    transform: translate(-50%, -50%) scaleX(1.2);
  }
}


.about-page {
  background: #f9fbfd;
  padding: 60px 0;
  text-align: center;
}

.about-page h3 {
  font-size: 32px;
  font-weight: 700;
  color: #1a2a6c;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 1px;
  position: relative;
}

.about-page h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #f9a825;
  margin: 15px auto 0;
  border-radius: 2px;
}

.about-content {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  text-align: justify;
  max-width: 960px;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Vision & Mission
--------------------------------------------------------------*/
.vision-mission {
  background: linear-gradient(135deg, #eef2f7, #ffffff);
  border-radius: 12px;
  padding: 60px 0;
}

.vision-card,
.mission-card {
  background: linear-gradient(135deg, #1a237e, #3949ab);
  color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.vision-card:hover,
.mission-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.25);
}

.vision-card::after,
.mission-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 4px;
  background-color: #f9a825;
  transition: width 0.4s ease, left 0.4s ease;
}

.vision-card:hover::after,
.mission-card:hover::after {
  width: 100%;
  left: 0;
}

.vision-card h3,
.mission-card h3 {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.tinymce-content {
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
  text-align: justify;
}

.vision-card strong,
.mission-card strong {
  color: #f9a825;
}

.vision-card ul, .mission-card ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.vision-card li, .mission-card li {
  margin-bottom: 10px;
}

.vision-card a, .mission-card a {
  color: #f9a825;
  text-decoration: underline;
}

.vision-card a:hover, .mission-card a:hover {
  text-decoration: none;
}

/*--------------------------------------------------------------
# Download Company Profile
--------------------------------------------------------------*/
.download-compro {
  margin-top: 60px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #1a237e, #3949ab);
  border-radius: 12px;
  color: #fff;
  text-align: center;
}

.download-compro-header {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.btn-download {
  background: linear-gradient(135deg, #ffb74d, #ffa726);
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 183, 77, 0.3);
}

.btn-download:hover {
  background: linear-gradient(135deg, #ffa726, #fb8c00);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 152, 0, 0.4);
}

.btn-download i {
  font-size: 18px;
}

/*--------------------------------------------------------------
# Core Values
--------------------------------------------------------------*/
.core-values {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.section-title-value p {
  color: #263592;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

.values-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1500px;
  margin: 20px auto;
}

.value-item {
  flex: 1 0 calc((100% - 120px) / 7); /* 7 items, 6 gaps of 20px = 120px */
  max-width: 140px; /* optional: limit lebar maksimal */
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.icon {
  font-size: 36px;
  color: #263592;
  transition: transform 0.3s ease;
}

.value-item:hover .icon {
  transform: scale(1.1);
}

.value-item h4 {
  font-size: 18px;
  color: #333;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.value-item.active {
  border: 2px solid #263592;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

.value-item.active h4 {
  color: #263592;
}

.value-description {
  margin-top: 40px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.value-description h3 {
  font-size: 24px;
  color: #263592;
  margin-bottom: 10px;
}

.value-description p {
  font-size: 16px;
  color: #555;
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .about-page h3 {
    font-size: 24px;
  }

  .vision-card,
  .mission-card {
    padding: 30px;
  }

  .download-compro-header {
    font-size: 20px;
  }

  .btn-download {
    font-size: 14px;
    padding: 10px 20px;
  }

  .values-container {
    flex-direction: column;
    align-items: center;
  }
}


/* -------------------------------
   History Timeline Section
---------------------------------- */
.history-timeline {
  position: relative;
  padding: 80px 0;
  background-color: #f9f9f9;
}

.history-timeline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to bottom, transparent, white);
  pointer-events: none;
}

.history-timeline .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.section-title-history {
  font-size: 28px;
  font-weight: 700;
  color: #263592;
  margin-bottom: 20px;
}

.scroll-indicator {
    text-align: center;
    font-size: 14px;
    color: #888;
    margin-top: 8px;
}
.scroll-indicator .bi {
    display: inline-block;
    margin-top: 4px;
    font-size: 20px;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

.timeline-container {
  max-height: 600px;
  overflow-y: auto;
  padding-right: 10px;
}

.timeline-container::-webkit-scrollbar {
  width: 6px;
}

.timeline-container::-webkit-scrollbar-thumb {
  background-color: #006CCD;
  border-radius: 6px;
}

.timeline-wrapper {
  max-width: 103vh;
  padding: 20px 0;
  overflow-y: auto;
  scrollbar-width: thin;
}

.timeline-wrapper::-webkit-scrollbar {
    width: 6px;
}
.timeline-wrapper::-webkit-scrollbar-thumb {
    background-color: #bbb;
    border-radius: 10px;
}

.timeline-item {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 20px;
}

.timeline-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

.timeline-icon {
  width: 50px;
  height: 50px;
  background: #006CCD;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 15px;
}

.timeline-content {
  flex: 1;
  text-align: left;
}

.timeline-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #263592;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 16px;
  color: #555;
  padding: 0 5px;
  line-height: 1.6;
}

.timeline-content img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin-top: 10px;
  transition: transform 0.3s ease-in-out;
}

.timeline-content img:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .timeline-item {
    flex-direction: column;
    text-align: center;
  }

  .timeline-icon {
    margin: 0 auto 10px auto;
  }

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

  .timeline-content img {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .timeline-content h3 {
    font-size: 16px;
  }

  .timeline-content p {
    font-size: 14px;
  }

  .timeline-content img {
    width: 50px;
    height: 50px;
  }
}

/*--------------------------------------------------------------
# Stats Section (Elegant & Professional)
--------------------------------------------------------------*/

.stats {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.stats .row {
  display: flex;         /* Pastikan row jadi flex */
  flex-wrap: wrap;       /* Tetap wrap jika kecil */
  justify-content: center; /* Center horizontal */
}

.stats .stats-item {
  display: inline-flex;
  background-color: #ffffff;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
  margin: 20px;
  gap: 2px;
}

.stats .stats-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

.stats .stats-item i {
  color: #263592;
  font-size: 50px;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.stats .stats-item:hover i {
  color: #263592;
}

.stats .stats-item span {
  color: #333333;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 8px;
}

.stats-item .plus-symbol {
  font-size: inherit;
  line-height: 1;
}

.stats .stats-item p {
  color: #666666;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

/* Responsif */
@media (max-width: 768px) {
  .stats .stats-item {
    padding: 20px;
  }
  .stats .stats-item i {
    font-size: 40px;
  }
  .stats .stats-item span {
    font-size: 32px;
  }
  .stats .stats-item p {
    font-size: 14px;
  }
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

.services .service-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  background: #fff; /* optional for card background */
}

.services .service-item:hover {
  transform: translateY(-5px);
}

.services .img {
  width: 100%;
  height: 220px; /* fix height for consistency */
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  flex-shrink: 0;
}

.services .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.services .service-item:hover .img img {
  transform: scale(1.1);
}

.services .details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
  padding: 60px 30px 30px 30px;
  margin: -40px 30px 0 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.services .details .icon {
  width: 72px;
  height: 72px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 6px solid var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}

.services .details h3 {
  font-weight: 700;
  font-size: 20px;
  margin: 20px 0 15px 0;
  transition: color 0.3s ease-in-out;
}

.services .details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1; /* makes all cards balance even with different text length */
}

.services .service-item:hover .details h3 {
  color: var(--accent-color);
}

.services .service-item:hover .details .icon {
  background: var(--surface-color);
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.btn-show-more {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.btn-show-more:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  color: var(--contrast-color);
}


/*--------------------------------------------------------------
# Our Services page Section
--------------------------------------------------------------*/

/* SECTION */
.sc-section {
  background-color: #f8f9fa;
}

/* Service Category Header Content */
.sc-header-content {
  width: 100%;
  font-size: 18px; /* 18px */
  color: #343a40; /* dark gray */
  line-height: 1.75;
  font-weight: 400;
  padding: 2rem 2.5rem;
}

/* Optional: responsive tweak */
@media (max-width: 768px) {
  .sc-header-content {
    padding: 1.5rem;
    font-size: 1rem;
  }
}

/* CARD */
.sc-card {
  display: flex;
  flex-direction: row;
  background: #ffffff;
  border-radius: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.sc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.sc-card-image-wrapper {
  flex: 0 0 340px;
  max-width: 340px;
  height: auto;
  overflow: hidden;
  position: relative;
}

.sc-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sc-card:hover .sc-card-image {
  transform: scale(1.08);
}

/* BODY */
.card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* TITLE */
.sc-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 0.75rem;
}

/* DESCRIPTION */
.sc-card-desc {
  font-size: 1rem;
  color: #6c757d;
}

/* LINK / BUTTON */
.sc-card-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background-color: #0d6efd;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.sc-card-link:hover {
  background-color: #084298;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .sc-card {
    flex-direction: column;
  }

  .sc-card-image-wrapper {
    width: 100%;
    max-width: 100%;
    height: 220px;
  }
}

/* Services Grid Page */
.services-grid-page {
  padding: 80px 0;
  background: #f8f9fa;
  animation: fadeInUp 0.8s ease-in-out;
}

.services-grid-page .services-grid-title {
  font-size: 36px;
  font-weight: 800;
  color: #263592; /* Anda bisa sesuaikan warna, contoh biru tua */
  margin-top: 60px;
  margin-bottom: 30px;
  text-transform: uppercase;
  text-align: center;
}

.services-grid-description {
  font-size: 18px;
  color: #1f2e55; /* lebih dalam dari #263592 */
  background: linear-gradient(to right, #ffffff, #f8f9fc);
  padding: 20px 28px;
  border-radius: 10px;
  margin: 20px auto 40px;
  max-width: 1300px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  letter-spacing: 0.2px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.services-grid-description:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

/* Grid Layout */
.services-grid-page .grid-container-service {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 40px;
  max-width: 1300px;
  margin: auto;
}

/* Service Card */
.services-grid-page .service-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
  position: relative;
  cursor: default;
}

/* Hanya gambar dan tombol "Read More" yang bisa diklik */
.services-grid-page .service-card h3,
.services-grid-page .service-card p {
  pointer-events: none; /* Disable click on text */
}

/* Hover Effect */
.services-grid-page .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
}

/* Image Link */
.services-grid-page .service-link {
  display: block;
  text-decoration: none;
}

/* Image Styling */
.services-grid-page .service-img {
  width: 100%;
  height: 240px; /* Menyesuaikan agar gambar tidak terpotong */
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  position: relative;
}

.services-grid-page .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Menjaga aspek rasio tanpa terpotong */
  transition: transform 0.6s ease-in-out;
  filter: brightness(0.9) contrast(1.1);
}

.services-grid-page .service-card:hover .service-img img {
  transform: scale(1.05);
  filter: brightness(1) contrast(1);
}

/* Floating Overlay Effect */
.services-grid-page .service-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  opacity: 0.5;
}

/* Content Box */
.services-grid-page .service-content {
  padding: 30px;
  text-align: left;
  position: relative;
  transition: background 0.3s ease-in-out;
}

/* Title */
.services-grid-page .service-content h3 {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 15px;
  text-transform: uppercase;
  transition: color 0.3s ease-in-out;
  color: #263592;
}

/* Description */
.services-grid-page .service-content p {
  color: #444;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 20px;
}

/* Read More Button */
.services-grid-page .service-read-more {
  display: inline-flex;
  align-items: center;
  color: #263592;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease-in-out, transform 0.3s ease-in-out;
  font-size: 16px;
}

.services-grid-page .service-read-more i {
  margin-left: 8px;
  font-size: 16px;
  transition: transform 0.3s ease-in-out;
}

.services-grid-page .service-read-more:hover {
  text-decoration: underline;
  color: #1e2d6d;
}

.services-grid-page .service-read-more:hover i {
  transform: translateX(5px);
}

/* Animasi Fade In */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ----------- Laptop & Desktop (≥1200px) ----------- */
@media (min-width: 1200px) {
  .services-grid-page .grid-container-service {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

/* ----------- Tablet Landscape (993px - 1199px) ----------- */
@media (min-width: 993px) and (max-width: 1199px) {
  .services-grid-page .grid-container-service {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .services-grid-page .service-content {
    padding: 28px;
  }

  .services-grid-page .service-content h3 {
    font-size: 21px;
  }

  .services-grid-page .service-content p {
    font-size: 14.5px;
  }
}

/* ----------- Tablet Portrait (769px - 992px) ----------- */
@media (min-width: 769px) and (max-width: 992px) {
  .services-grid-page .grid-container-service {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .services-grid-page .service-content {
    padding: 24px;
  }

  .services-grid-page .service-content h3 {
    font-size: 19px;
  }

  .services-grid-page .service-content p {
    font-size: 14px;
  }
}

/* ----------- Smartphone Besar (481px - 768px) ----------- */
@media (min-width: 481px) and (max-width: 768px) {
  .services-grid-page .grid-container-service {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .services-grid-page .service-content {
    padding: 20px;
  }

  .services-grid-page .service-content h3 {
    font-size: 18px;
  }

  .services-grid-page .service-content p {
    font-size: 13px;
  }

  .services-grid-page .service-img {
    height: 200px;
  }
}

/* ----------- Smartphone Kecil (≤480px) ----------- */
@media (max-width: 480px) {
  .services-grid-page .grid-container-service {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 15px;
  }

  .services-grid-page .service-img {
    height: 180px;
  }

  .services-grid-page .service-content {
    padding: 16px;
  }

  .services-grid-page .service-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .services-grid-page .service-content p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  .services-grid-page .service-read-more {
    font-size: 14px;
  }

  .scroll-to-top {
    bottom: 70px;
    right: 15px;
  }
}



/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo a {
  display: inline-block;
  text-decoration: none;
}

.clients .client-logo img {
  width: 100%; /* Gambar memenuhi container */
  height: auto; /* Menjaga aspek rasio */
  max-width: 150px; /* Batas maksimal untuk gambar */
  max-height: 112px; /* Membatasi tinggi maksimal */
  object-fit: contain; /* Gambar tetap proporsional */
  padding: 10px; /* Memberi ruang di sekeliling */
  transition: 0.3s;
  opacity: 0.5s;;
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
  filter: grayscale(100);
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .clients .client-logo img {
    max-width: 120px; /* Tablet */
    max-height: 90px;
  }
}

@media (max-width: 576px) {
  .clients .client-logo img {
    max-width: 100px; /* Mobile */
    max-height: 75px;
  }
}

/*--------------------------------------------------------------
# project homepage Section
--------------------------------------------------------------*/
.project-section .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.project-section .card {
  border-radius: 16px;
  border: none;
  background-color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  will-change: transform, box-shadow;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.project-section .card:hover,
.project-section .card:focus-within {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  outline: none;
}

.project-section .card-img-top {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.4s ease;
  will-change: opacity, transform;
  display: block;
}

.project-section .card:hover .card-img-top,
.project-section .card:focus-within .card-img-top {
  opacity: 0.95;
  transform: scale(1.03);
}

.project-section .card-body {
  padding: 1.75rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.project-section .card-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #1a3a6d; /* warna biru navy yang lebih dalam */
  margin-bottom: 0.6rem;
  font-family: 'Segoe UI Semibold', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  transition: color 0.35s ease, text-shadow 0.35s ease, transform 0.3s ease;
  user-select: none;
  line-height: 1.2;
}

.project-section .card-title:hover,
.project-section .card-title:focus {
  color: #2563eb; /* biru cerah */
  text-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
  cursor: pointer;
  transform: translateY(-2px);
  outline: none;
}

.project-section .card-text {
  font-size: 1.05rem;
  color: #495057; /* abu-abu gelap, lebih hangat dari #6c757d */
  line-height: 1.75;
  margin-bottom: 0.8rem;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.015em;
  font-style: normal;
  user-select: text;
  transition: color 0.3s ease;
}

.project-section .card-text strong {
  color: #212529; /* warna lebih kontras untuk kata kunci */
  font-weight: 600;
}

/* Make the entire card clickable with stretched-link */
.project-section .stretched-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  text-indent: -9999px; /* hide text if any */
  background: transparent;
}

/* Accessibility: focus state */
.project-section .card:focus-within {
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.6);
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .project-section .card-img-top {
    height: 180px;
  }
  .project-section .card-title {
    font-size: 1.3rem;
  }
  .project-section .card-body {
    padding: 1.25rem 1.25rem 1.75rem;
  }
}

@media (max-width: 767px) {
  .project-section .container {
    padding: 1.5rem 1rem;
  }
  .project-section .card-img-top {
    height: 160px;
  }
  .project-section .card-title {
    font-size: 1.1rem;
  }
  .project-section .card-body {
    padding: 1rem 1rem 1.5rem;
  }
}

/*--------------------------------------------------------------
# Services 2 Section
--------------------------------------------------------------*/
.services-2 .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: 0.3s;
}

.services-2 .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
}

.services-2 .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services-2 .service-item .title a {
  color: var(--heading-color);
}

.services-2 .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
}

.services-2 .service-item:hover {
  border-color: var(--accent-color);
}

.services-2 .service-item:hover .title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

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

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #FFB74D;
  box-shadow: 0 4px 18px rgba(38, 53, 146, 0.12), 0 1.5px 8px rgba(0,0,0,0.08);
  margin: 0 auto 18px auto;
  background: linear-gradient(135deg, #fff 60%, #f7f8fa 100%);
  transition:
    box-shadow 0.5s ease-in-out,
    border-color 0.5s ease-in-out,
    width 0.5s ease-in-out,
    height 0.5s ease-in-out,
    transform 0.5s ease-in-out;
  display: block;
  position: relative;
  z-index: 1;
}

.testimonials .testimonial-item .testimonial-img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 22px rgba(38, 53, 146, 0.18), 0 2px 10px rgba(0,0,0,0.1);
  border-color: #FFA726;
}

.testimonials .testimonial-item h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 12px 0 6px 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.testimonials .testimonial-item h4 {
  font-size: 15px;
  margin: 0 0 18px 0;
  color: #d1dbec;
  font-weight: 500;
  letter-spacing: 0.2px;
  text-transform: capitalize;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 18px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 2px;
  font-size: 18px;
  filter: drop-shadow(0 1px 2px rgba(38,53,146,0.08));
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #bfc8e6;
  font-size: 32px;
  line-height: 0;
  opacity: 0.7;
  vertical-align: middle;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -8px;
  position: relative;
  top: 4px;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -8px;
  position: relative;
  top: 8px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 18px auto;
  color: #ffffff;
  padding: 0 28px;
  border-radius: 0;
  box-shadow: none;
  max-width: 700px;
  font-size: 17px;
  line-height: 1.7;
  opacity: 1 !important;
  transform: none !important;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-content img {
  transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.portfolio .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #ffffff;
  display: inline-block;
  background-color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.portfolio .portfolio-content .portfolio-info .preview-link,
.portfolio .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.portfolio .portfolio-content .portfolio-info .preview-link:hover,
.portfolio .portfolio-content .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/

/* Role title styling */
.role {
  font-size: 1.5rem;
  font-weight: 600;
  color: #222;
  position: relative;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 0.25rem;
  border-bottom: 3px solid var(--accent-color, #0d6efd);
}

/* Card wrapper for each role */
.team .role-wrapper {
  margin-bottom: 4rem;
}

.team .member {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 0;
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 80%;
  display: flex;
  flex-direction: column;
}

.team .member:hover {
  transform: translateY(-5px);
}

.team .member .pic {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 5;         /* Rasio 4:5 */
  border-radius: 10px;
  position: relative;
  background-color: #f0f0f0;   /* fallback background */
}

.team .member .pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;    /* Gambar muat utuh */
  object-position: center;
  padding: 5%;            /* Beri ruang agar terlihat lebih kecil */
  background: #fff;       /* Bisa diberi background putih */
}

.team .member .member-info {
  position: relative; /* was: absolute */
  bottom: 0; /* remove negative value */
  left: 0;
  right: 0;
  padding: 1rem;
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: none;
  transition: none;
  flex-grow: 1;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 0;
  left: 0;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 0.85rem;
}

.team .member .social {
    display: flex;
    gap: 0.5rem;
    position: absolute;
    right: 1rem;
    bottom: 1rem;
}

.team .member .social a {
    color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.team .member .social a:hover {
    color: var(--accent-color, #0d6efd);
    transform: scale(1.1);
}

.team .member .social i {
  font-size: 1rem;
  margin: 0 2px;
}

@media (max-width: 992px) {
  .team .member {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  }

  .team .member .pic {
    aspect-ratio: 4 / 5;
  }

  .team .member .member-info {
    padding: 0.75rem;
  }

  .team .member h4 {
    font-size: 0.95rem;
  }

  .team .member span {
    font-size: 0.8rem;
  }

  .team .member .social {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .team .member .social i {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .team .member {
    flex-direction: column;
  }

  .team .member .member-info {
    padding: 0.75rem;
  }

  .team .member h4 {
    font-size: 0.9rem;
  }

  .team .member span {
    font-size: 0.75rem;
  }

  .team .member .social {
    position: static;
    margin-top: 0.5rem;
    display: flex;
    justify-content: flex-start;
  }

  .team .member .social a {
    margin-right: 8px;
  }
}

@media (max-width: 576px) {
  .team .member {
    border-radius: 8px;
  }

  .team .member .pic {
    border-radius: 8px;
  }

  .team .member .member-info {
    padding: 0.65rem;
  }

  .team .member h4 {
    font-size: 0.85rem;
  }

  .team .member span {
    font-size: 0.7rem;
  }

  .team .member .social i {
    font-size: 0.9rem;
  }
}


/*--------------------------------------------------------------
# Contact Us Section
--------------------------------------------------------------*/
/* Contact Section - Elegant & Professional */
.contact {
  padding: 5rem 0;
  background-color: #f8f9fa;
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 80%;
  height: 50px;
  background: linear-gradient(to right, rgba(66, 153, 225, 0.2), transparent);
  transform: translateX(-50%);
  border-radius: 50%;
}

.contact-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform:scale(1.02);
  box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.15);
}

.contact-wrapper {
  display: flex;
  gap: 2rem;
}

/* Contact Information - Enhanced Gradient & Decor */
.contact-info {
  width: 40%;
  padding: 3rem;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  border-radius: 0.75rem;
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.contact-info h4 {
  color: #fff;
  font-size: 1.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 0.5rem;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details li {
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.contact-details li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 10px;
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  color: #333333;
}

.contact-details li a:hover {
  border-left: 4px solid #FFB74D;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(66, 153, 225, 0.2);
}

.contact-details li a i {
  font-size: 1.5rem;
  color: #FFB74D;
  min-width: 40px;
  text-align: center;
}

.contact-details li a div {
  display: flex;
  flex-direction: column;
}

.contact-details li a strong {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.contact-details li a span {
  font-size: 0.875rem;
  color: #000;
}


/* Social Links with Elegant Glow */
.social-links {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.social-links a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.social-links a:hover::before {
  transform: scale(1.5);
  opacity: 0;
}

/* Contact Form */
.contact-form {
  width: 55%;
  padding: 3rem;
}

.contact-form h4 {
  font-size: 1.85rem;
  color: #1a365d;
  font-weight: 600;
  margin-bottom: 2rem;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 0.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease-in-out;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
  color: rgba(0, 0, 0, 0.2);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #263592;
  box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
  outline: none;
}

.form-group input.error,
.form-group textarea.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.2);
}


/* Submit Button - Elegant & Professional */
.btn-submit-contact {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: #ffffff;
  padding: 14px 20px;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease; /* Pastikan semua perubahan ditransisikan */
}

.btn-submit-contact:hover {
  background: linear-gradient(135deg, #1b5a90 0%, #1e6ab0 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.contact-maps {
  margin-top: 50px;
  text-align: center;
}

.contact-maps h4 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 24px;
  border-bottom: 3px solid #cbd5e1;
  display: inline-block;
  padding-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Wrapper untuk Maps - Set max-width 1200px */
.maps-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px; /* Jarak antar maps */
  justify-content: center;
  align-items: stretch;
  max-width: 1200px; /* Lebar maksimal */
  width: 100%; /* Responsif */
  margin: 0 auto; /* Agar berada di tengah */
  padding: 20px;
}

.map-container {
  width: 45%; /* 50% agar dua peta sejajar */
  max-width: 580px; /* Sedikit lebih kecil untuk keseimbangan */
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.map-container h5 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  background: linear-gradient(90deg, #e2e8f0, #f8fafc);
  padding: 16px 0;
  border-bottom: 3px solid #cbd5e1;
  text-align: center;
  letter-spacing: 0.4px;
  text-transform: capitalize;
}

.map-container iframe {
  width: 100%;
  height: 360px; /* Sedikit lebih tinggi agar lebih proporsional */
  border: none;
  border-radius: 0 0 16px 16px;
  filter: grayscale(10%) contrast(1.15) brightness(0.95);
}



/* Responsive Design */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    width: 100%;
    padding: 2rem;
  }

  .contact-info {
    border-radius: 0.75rem 0.75rem 0 0;
  }

  .contact-form {
    border-radius: 0 0 0.75rem 0.75rem;
  }

  .maps-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .maps-wrapper iframe {
      width: 100%;
  }
}


/*--------------------------------------------------------------
# Portfolio Details Section - Modern 3D Look
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 450px; /* Ubah tinggi sesuai kebutuhan */
  overflow: hidden;
  border-radius: 12px;
  background-color: #f8f9fa;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-details .portfolio-details-slider img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.portfolio-details .portfolio-details-slider img:hover {
  transform: scale(1.015);
}


.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 25px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
  opacity: 1;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  transform: scale(1.2);
}

/* Project Info Box */
.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.3s ease;
}

.portfolio-details .portfolio-info:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  color: var(--default-color);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 12px;
}

/* Description Section */
.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--default-color);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.portfolio-details .portfolio-description p {
  padding: 0;
  font-size: 16px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}


/*--------------------------------------------------------------
# Service Details Sidebar (Our Services)
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Services Sidebar (Our Services)
--------------------------------------------------------------*/

/* Sidebar Services Box */
/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
/* === Container & Box === */
.service-details .services-list,
.service-details-container {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  transition: box-shadow 0.3s ease-in-out;
}

.service-details .services-list:hover,
.service-details-container:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* === Header === */
.service-details .services-header {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color, #263592);
  margin-bottom: 15px;
  text-align: center;
  position: relative;
  padding-bottom: 8px;
}

.service-details .services-header::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color, #006CCD);
  margin: 6px auto 0;
  border-radius: 2px;
}

/* === Sidebar Link === */
.service-details .services-list a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-left: 4px solid rgba(38, 53, 146, 0.3);
  margin: 6px 0;
  color: rgba(38, 53, 146, 0.7);
  font-size: 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.service-details .services-list a.active {
  background: rgba(38, 53, 146, 0.08);
  border-left-color: var(--accent-color, #006CCD);
  font-weight: 700;
  color: var(--heading-color, #263592);
}

.service-details .services-list a.active i {
  margin-right: 8px;
  color: var(--accent-color, #006CCD);
}

.service-details .services-list a:hover {
  background: rgba(38, 53, 146, 0.12);
  border-left-color: var(--accent-color, #006CCD);
  transform: translateX(4px);
}

/* === Detail Image === */
.service-details-container .service-details-image {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  margin: 0 auto 20px;
}

.service-details-container .service-details-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-details-container .service-details-image:hover img {
  transform: scale(1.05);
}

/* === Content === */
.service-content {
  max-width: 750px;
}

.services-list a.active {
    font-weight: bold;
    color: #0d6efd;
}

.service-title {
  font-size: 24px;
  font-weight: 700;
  color: #263592;
  margin-bottom: 12px;
  text-transform: uppercase;
  text-align: center;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #495057;
  margin-bottom: 1rem;
  background-color: #f8f9fa; /* Soft background */
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
}

.service-meta span {
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: background-color 0.3s ease;
}

.service-meta span:hover {
  background-color: #e9ecef;
}

.service-meta i {
  margin-right: 0.4rem;
  color: #0d6efd; /* Bootstrap primary */
  font-size: 1rem;
}


.service-description {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* === Responsiveness === */
@media (max-width: 992px) {
  .service-title {
    font-size: 22px;
  }

  .service-details-container {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .service-details .services-list,
  .service-details-container {
    padding: 20px;
  }

  .service-details .services-list a {
    font-size: 13px;
    padding: 8px 12px;
  }

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

  .service-category {
    font-size: 13px;
  }

  .service-category i {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .service-details-container .service-details-image {
    max-width: 100%;
  }

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

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

/*--------------------------------------------------------------
# Related Projects Sidebar
--------------------------------------------------------------*/

/* Related Projects Box */
.related-projects-box {
  background: #ffffff;
  padding: 30px 35px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: left;
  margin-top: 30px;
  transition: box-shadow 0.4s ease;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.related-projects-box:hover {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);
}

/* Header */
.related-projects-box h4 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: 2px solid #007bff;
  display: inline-block;
  padding-bottom: 4px;
}

.related-projects-box p {
  font-size: 15px;
  color: #555;
  margin-bottom: 25px;
  font-weight: 500;
}

/* Related Projects List */
.related-project-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.related-project-list li {
  margin-bottom: 14px;
  padding: 14px 20px;
  background-color: #f8faff;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 123, 255, 0.15);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.related-project-list li:hover {
  background-color: #e6f0ff;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.related-project-list a {
  color: #007bff;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  flex-grow: 1;
  transition: color 0.3s ease;
}

.related-project-list a:hover {
  color: #004085;
  text-decoration: underline;
}

.related-project-list span {
  font-size: 13px;
  color: #6c757d;
  margin-left: 15px;
  white-space: nowrap;
  font-style: italic;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .related-projects-box {
    padding: 20px 20px;
  }

  .related-projects-box h4 {
    font-size: 18px;
    border-bottom: 1.5px solid #007bff;
  }

  .related-projects-box p {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .related-project-list li {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 15px;
  }

  .related-project-list a {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .related-project-list span {
    margin-left: 0;
    font-size: 12px;
    font-style: normal;
    color: #888;
  }
}


/*--------------------------------------------------------------
# Project Section
--------------------------------------------------------------*/

/* -------------------------------
   General Styling
---------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* -------------------------------
 Page Title Section
---------------------------------- */
.page-title {
  padding: 60px 0;
  text-align: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.page-title h1 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.breadcrumbs ol {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.breadcrumbs ol li {
  display: inline;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs ol li a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumbs ol li a:hover {
  color: #ffcc00;
}
.grid-container-project {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  perspective: 1000px;
  max-width: 1200px;
  margin: 0 auto;
  grid-auto-rows: 1fr;
}

.project-card-link {
  text-decoration: none;
  color: inherit;
}

.project-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid #e0e0e0;
  height: 100%;
}

.project-card-link:hover .project-card {
  transform: translateY(-6px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.12);
}

.project-image-wrapper {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card-link:hover .project-image {
  transform: scale(1.05);
}

.project-status {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  font-size: 0.7rem;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 20px;
  color: #fff;
  background-color: #6c757d;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.project-status.completed {
  background-color: #28a745;
}

.project-status.ongoing {
  background-color: #ffc107;
  color: #000;
}

.project-content {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.project-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-info-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.project-meta {
  font-size: 0.875rem;
  color: #495057;
  margin: 4px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-meta i {
  font-size: 0.95rem;
  color: #6c757d;
}

.no-projects {
  grid-column: 1 / -1;
  text-align: center;
  color: #adb5bd;
  font-size: 1rem;
  padding: 40px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .grid-container-project {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
  .project-info-columns {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------
News Section
---------------------------------- */
/* Filter Section */
.filter-section {
  padding: 40px 0 20px;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}

.filter-form .form-select {
  padding: 10px 14px;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ced4da;
  transition: border-color 0.3s ease;
}

.filter-form .form-select:focus {
  border-color: #0d6efd;
  outline: none;
  box-shadow: 0 0 0 0.1rem rgba(13, 110, 253, 0.25);
}

.news.section {
  padding: 80px 0;
  background-color: #f9fafb;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Section Header */
.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: #111827;
}
.section-header p {
  font-size: 1rem;
  color: #6b7280;
}

/* Card */
.news-item.service-item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news-item.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* Thumbnail */
.news-item .img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.news-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.news-item:hover .img img {
  transform: scale(1.05);
}

/* Details */
.news-item .details {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* bukan space-between */
    padding: 1rem;
}

.news-item .news-title {
    margin-bottom: 0; /* hilangkan space bawah judul */
}

.news-item .news-date {
    margin-top: 0;
    margin-bottom: .5rem;
}


/* Pagination */
.pagination-container {
  margin-top: 40px;
}

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

.pagination-container nav {
  display: inline-block;
  font-weight: 600;
}

.pagination .page-link {
  color: var(--accent-color, #2563eb);
  border: none;
  background-color: transparent;
  margin: 0 6px;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 0.95rem;
}

.pagination .page-link:hover {
  background-color: #e0e7ff;
  color: #1e40af;
  box-shadow: 0 3px 8px rgba(30, 64, 175, 0.3);
}

.pagination .page-item.active .page-link {
  background-color: var(--accent-color, #2563eb);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.6);
  cursor: default;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .news .col-md-6,
  .news .col-xl-4 {
    max-width: 100%;
  }
  .news .news-item {
    max-width: 100%;
  }

  .filter-form .form-select {
    margin-bottom: 10px;
  }

  .news .img {
    height: 180px;
  }
}

/* ======= News Details Section (Refined) ======= */
/* News Details Section */
.news-details {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
}

.news-image img.news-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1.5rem;
}

.news-header h1.news-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.news-meta {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 2rem;
}

.news-author {
  font-style: italic;
  font-weight: 600;
}

.news-content p:first-child {
  margin-top: 0;
}

.news-content {
  margin-top: 0.5rem; /* jarak sedang dari meta info */
  line-height: 1.6;
}

.news-content p {
  margin-bottom: 1rem; /* atur jarak antar paragraf */
}

/* Sidebar styles - Elegant & Modern */
.recent-posts,
.news-categories {
  background: #ffffff;
  padding: 1.8rem 2rem;
  margin-bottom: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.recent-posts:hover,
.news-categories:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.recent-posts-header,
.news-categories-header {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.3rem;
  border-bottom: 3px solid #0056b3;
  padding-bottom: 0.6rem;
  color: #0056b3;
  letter-spacing: 0.05em;
}

/* Recent post item */
.recent-post-item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.3rem;
  text-decoration: none;
  color: #2c3e50;
  border-radius: 10px;
  padding: 0.65rem 0.9rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.recent-post-item:hover,
.recent-post-item.active.current-post {
  background-color: #0056b3;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 86, 179, 0.3);
  transform: translateX(5px);
  cursor: pointer;
}

.recent-post-thumbnail img {
  width: 90px;
  height: 65px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.recent-post-item:hover .recent-post-thumbnail img {
  transform: scale(1.05);
}

.recent-post-info {
  flex: 1;
}

.recent-post-date {
  display: block;
  font-size: 0.85rem;
  color: #7f8c8d;
  margin-bottom: 0.3rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.recent-post-item:hover .recent-post-date,
.recent-post-item.active.current-post .recent-post-date {
  color: #d1d9e6;
}

.recent-post-title {
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.2;
  transition: color 0.3s ease;
}

/* News Categories */
.news-categories ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.news-categories ul li {
  margin-bottom: 0.9rem;
}

.news-categories ul li a {
  color: #34495e;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease, transform 0.2s ease;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.news-categories ul li.active a,
.news-categories ul li a:hover {
  color: #0056b3;
  transform: translateX(4px);
}

.news-categories ul li a i.bi {
  font-size: 1.2rem;
  color: #007bff;
  transition: color 0.3s ease;
}

.news-categories ul li.active a i.bi,
.news-categories ul li a:hover i.bi {
  color: #003d7a;
}

/* Responsive */
@media (max-width: 991px) {
  .row.gy-4 {
    flex-direction: column;
  }
  
  .col-lg-9, .col-lg-3 {
    max-width: 100%;
  }

  .recent-post-thumbnail img {
    width: 60px;
    height: 45px;
  }
}

/*--------------------------------------------------------------
# Services Section Homepage
--------------------------------------------------------------*/
.service-item {
  background-color: #f8f9fa; /* soft gray background */
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.service-item .title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: #212529;
}

.service-item .title a {
  text-decoration: none;
  color: #0d6efd; /* Bootstrap primary color */
  transition: color 0.2s;
}

.service-item .title a:hover {
  color: #0a58ca; /* Slightly darker on hover */
}

.btn-primary {
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  background-color: #0a58ca;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}


/*--------------------------------------------------------------
# Starter Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Service Categories Section
--------------------------------------------------------------*/
/* Kartu Utama */
#service-categories .card {
    border: none;
    border-radius: 16px;
    background-color: #f4f6f9;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    overflow: hidden;
    height: 100%;
}

/* Hover Efek Kartu */
#service-categories .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
}

/* Isi Kartu */
#service-categories .card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Judul Kategori */
#service-categories .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2d3d; /* Dark blue-gray */
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

/* Hover Warna Judul */
#service-categories .card:hover .card-title {
    color: #0d6efd; /* Bootstrap Primary */
}

/* Deskripsi */
#service-categories .card-text {
    font-size: 0.95rem;
    color: #5f6c7b; /* Soft gray-blue */
    line-height: 1.6;
    max-height: 120px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

/* Link Penuh */
#service-categories a.text-decoration-none {
    text-decoration: none !important;
    color: inherit;
    display: block;
    height: 100%;
    transition: color 0.3s ease;
}

/* Learn More Prompt */
#service-categories .learn-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0d6efd;
    margin-top: 1rem;
    display: inline-block;
    transition: color 0.3s ease;
}

#service-categories .learn-more:hover {
    color: #1565c0;
    text-decoration: underline;
}

/* Responsive untuk Mobile */
@media (max-width: 576px) {
    #service-categories .card-body {
        padding: 1.5rem;
    }

    #service-categories .card-title {
        font-size: 1.1rem;
    }

    #service-categories .card-text {
        font-size: 0.9rem;
        -webkit-line-clamp: 4;
    }
}