* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #FF8C00;
    --white-bg: #FAFAFA;
    --dark-bg: #111828;
    --darker-bg: #071828;
    --card-bg: #1e293b;
    --border-color: #334155;
    --border-grey: #D4D4D4;
    --white-neutral: #F5F6FF;
    --black-neutral: #061623;
    --grey-neutral: #333333;
    --text-gray: #64748b;
}

body {
    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--white-bg);
}

body.default-page {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #115e59 100%);
}

/* Top Bar */
.top-bar {
    background: #1a1a2e;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    text-decoration: none;
    font-size: 20px;
}

/* Navigation */
nav {
    /* background: #fafafa; */
    background: transparent;
    padding: 20px 0;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
    position: sticky;
    top: 0;
    z-index: 10000;
    transition: all 0.3s ease;
}

nav::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px; /* sedikit lebih tebal biar gradasinya terlihat */
    background: linear-gradient(
        to right,
        rgba(245, 158, 11, 0) 0%,
        rgba(245, 158, 11, 0.6) 20%,
        #FF8C00 50%, /* puncak warna lebih terang */
        rgba(245, 158, 11, 0.6) 80%,
        rgba(245, 158, 11, 0) 100%
    );
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4); /* efek glow lembut */
    z-index: 1;
}

/* nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
} */

nav.scrolled {
    background: rgba(255, 255, 255, 0.65); /* #bcbdbd dengan transparansi */
    backdrop-filter: blur(5px);           /* efek blur halus di belakang */
    -webkit-backdrop-filter: blur(6px);   /* Safari support */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    }

/* =========================================
   NAVIGATION - DEFAULT STYLE
   ========================================= */
/* nav.default-nav {
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    position: sticky;
} */

nav.default-nav {
    background: transparent;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 10000;
    transition: all 0.3s ease;
}

.nav-border-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        rgba(245, 158, 11, 0) 0%,
        rgba(245, 158, 11, 0.6) 20%,
        #FF8C00 50%,
        rgba(245, 158, 11, 0.6) 80%,
        rgba(245, 158, 11, 0) 100%
    );
    box-shadow: 0 -2px 8px rgba(245, 158, 11, 0.4);
    z-index: 10;
}

nav.default-nav::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        to right,
        rgba(245, 158, 11, 0) 0%,
        rgba(245, 158, 11, 0.6) 20%,
        #FF8C00 50%,
        rgba(245, 158, 11, 0.6) 80%,
        rgba(245, 158, 11, 0) 100%
    );
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
    z-index: 1;
}

nav.default-nav.scrolled {
    background: transparent !important;
    /* backdrop-filter: none !important; */
    box-shadow: none !important;
    backdrop-filter: blur(5px)!important; 
}

nav.about-nav {
    /* position: fixed !important; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    z-index: 10000;
}

body.has-about-nav {
    background-color: var(--darker-bg);
}

.nav-border-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        to right,
        rgba(245, 158, 11, 0) 0%,
        rgba(245, 158, 11, 0.6) 20%,
        #FF8C00 50%,
        rgba(245, 158, 11, 0.6) 80%,
        rgba(245, 158, 11, 0) 100%
    );
    box-shadow: 0 -2px 8px rgba(245, 158, 11, 0.4);
    z-index: 10;
}

nav.about-nav::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        to right,
        rgba(245, 158, 11, 0) 0%,
        rgba(245, 158, 11, 0.6) 20%,
        #FF8C00 50%,
        rgba(245, 158, 11, 0.6) 80%,
        rgba(245, 158, 11, 0) 100%
    );
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
    z-index: 1;
}

nav.about-nav.scrolled {
    background: transparent !important;
    /* backdrop-filter: none !important; */
    box-shadow: none !important;
    backdrop-filter: blur(5px)!important; 
}

.nav-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 24px;
    color: #0033a0;
}

.logo-img {
    height: 70px;      
    width: auto;     
    object-fit: contain;
}

.logo-circle {
    width: 50px;
    height: 50px;
    background: #0033a0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-menu a.about-menu {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #FF8C00;
}

.nav-menu a.active {
    color: #FF8C00;
    border-bottom-style: inset;
    border-bottom-width: medium;
    border-bottom-color: var(--primary-orange);
}

.nav-menu li a svg {
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

nav-menu li a {
color: #061623; /* warna default ikon & teks */
transition: color 0.3s ease;
}

.nav-menu li:hover a {
color: #FF8C00;
}

/* Hover efek teks + ikon */
.nav-menu li:hover a.submenu-item.active {
    color: #FF8C00;
    border-style: solid;
    border-radius: 20px;
}

/* SVG panah berputar ke atas saat hover */
.nav-menu li:hover a svg {
    transform: rotate(180deg) translateY(3px);
    fill: #FF8C00; /* ubah warna panah juga jika ingin */
}

/* Dropdown Submenu */
.nav-menu .has-submenu {
    position: relative;
}

.nav-menu .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 0px 25px 25px 25px;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
}

/* triangle / segitiga */
.nav-menu .submenu::before {
    content: "";
    position: absolute;
    top: -29px; /* posisi di atas box */
    left: 24px; /* bisa disesuaikan agar pas di tengah tombol parent */
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 30px solid white; /* warna segitiga sama dengan background submenu */
    filter: drop-shadow(0 -1px 1px rgba(0, 0, 0, 0.1)); /* sedikit bayangan biar lembut */
}

.nav-menu .has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    transition: background 0.3s;
    text-decoration: none;
    color: #333;
}

.submenu-item:hover {
    background: #DEECFFCC;
    border-radius: 15px;
    border-style: solid;
    border-width: 2px;
    border-color: #03155780;
    transition: all 0.2s ease;
}

.submenu-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.submenu-icon svg,
.submenu-item svg {
    transition: none !important;
    transform: none !important;
    fill: none !important;
}

.submenu-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: #061623;
    margin-bottom: 5px;
}

.submenu-content p {
    font-size: 13px;
    color: #8B8B8B;
    line-height: 1.4;
    margin: 0;
}

.dropdown-arrow {
    font-size: 12px;
    margin-left: 3px;
    transition: transform 0.3s;
}

.has-submenu:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.lang-btns {
    display: flex;
    gap: 10px;
    text-decoration: none;
}

.lang-btn {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background: white;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.lang-btn.active {
    background: #FF8C00;
    color: white;
    border-color: #FF8C00;
}

.contact-btn {
    background: #FF8C00;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.contact-btn:hover {
    background: #FF8C00;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #0033a0;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    /* background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%); */
    background: #061623;
    z-index: 99999;
    transition: left 0.4s ease;
    overflow-y: auto;
    display: block;
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    /* padding: 20px; */
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.close-menu {
    font-size: 40px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
}

.mobile-menu-content {
    padding: 86px 20px;
    text-align: center;
}

.mobile-menu-content ul {
    list-style: none;
    padding: 0;
}

.mobile-menu-content ul li {
    margin-bottom: 30px;
}

.mobile-menu-content ul li a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    display: block;
    transition: color 0.3s;
    font-family: ''Poppins'';
}

.mobile-menu-content ul li a.active {
    color: #ff9800;
}

.mobile-menu-content ul li a:hover {
    color: #ff9800;
}

/* .mobile-menu-footer {
    position: absolute;
    bottom: 110px;
    left: 20px;
    right: 20px;
    color: white;
} */

.mobile-menu-footer {
    position: relative;
    color: white;
    padding: 30px;
    margin-top: 15px;
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 14px;
    text-align: center;
}

.mobile-contact-info div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    justify-content: center;
}

/* Submenu styling */
.mobile-main-menu li.has-submenu {
    position: relative;
    margin-bottom: 15px;
}

.mobile-main-menu .submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: 15px;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    margin-top: 15px;
    background: currentColor;
    font-style: italic;
}

.mobile-main-menu .submenu li {
    margin: 20px 0px;
}

.mobile-main-menu .submenu li a {
    font-size: 18px;
    color: #dcdcdc;
}

.mobile-main-menu .submenu li a:hover {
    color: #ff9800;
}

/* Toggle icon */
.submenu-toggle {
    float: right;
    font-size: 20px;
    transition: transform 0.3s ease;
    margin-left: -15px;
}

/* When submenu is open */
.has-submenu.open .submenu {
    max-height: 500px;
}

.has-submenu.open .submenu-toggle {
    transform: rotate(180deg);
}

/* Active link highlight */
.mobile-main-menu a.active {
    color: #ff9800;
}

/* Main Content */
.main-container {
    max-width: 1440px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

/* Hero Section */

/* .hero-section {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    color: white;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: 
        linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
        url('{{ asset ('assets/img/illustrations/illustration-2jpeg')}}') center/cover no-repeat;
} */

.hero-section {
    /* background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%); */
    background: url('/assets/img/illustrations/illustration-1-mix.jpeg') center/cover no-repeat;
    border-radius: 24px;
    /* padding: 60px; */
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/img/illustrations/illustration-1-mix.jpeg') center/cover no-repeat;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 50%;
    align-self: normal;
}

.hero-line {
    width: 235px;
    height: 2px;
    background: #FF8C00;
    margin-bottom: 20px;
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: montserrat;
    font-weight: 700;
}

.hero-section p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
    font-family: ''Poppins'';
    font-weight: 400;
}

.achieve-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #BA68044D;
    border: 3.1px solid #FF8C00;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
}

.achieve-btn:hover {
    background: #FF8C00;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 500"><rect fill="%23405060" width="400" height="500"/></svg>'); */
    /* background: url('{{ asset ('assets/img/illustrations/illustration-1-trs.webp')}}') center/cover no-repeat; */
    background-size: cover;
}

.hero-section-mobile {
    /* background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%); */
    background: url('/assets/img/bg/hero-section-mobile-bg.jpeg') center/cover no-repeat;
    border-radius: 24px;
    /* padding: 60px; */
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-section-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/img/bg/hero-section-mobile-bg.jpeg') center/cover no-repeat;
    z-index: 1;
}

.hero-content-mobile {
    position: relative;
    z-index: 2;
    max-width: 50%;
    align-self: normal;
}

.hero-line-mobile {
    width: 235px;
    height: 2px;
    background: #FF8C00;
    margin-bottom: 20px;
}

.hero-section-mobile h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: montserrat;
    font-weight: 700;
}

.hero-section-mobile p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
    font-family: ''Poppins'';
    font-weight: 400;
}

.achieve-btn-mobile {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #BA68044D;
    border: 3.1px solid #FF8C00;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
}

.achieve-btn-mobile:hover {
    background: #FF8C00;
}

.hero-image-mobile {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 100%;
    /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 500"><rect fill="%23405060" width="400" height="500"/></svg>'); */
    /* background: url('{{ asset ('assets/img/illustrations/illustration-1-trs.webp')}}') center/cover no-repeat; */
    background-size: cover;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Services Card */
.services-card {
    background: linear-gradient(135deg, rgba(139, 92, 46, 0.9), rgba(101, 67, 33, 0.9));
    border-radius: 20px;
    padding: 30px;
    color: white;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%238b5c2e" width="400" height="300"/></svg>');
    background-size: cover;
    background-blend-mode: overlay;
    position: relative;
    overflow: hidden;
}

.services-card.bg-paut {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('/assets/img/bg/paut-background.png');
}

.services-card.bg-tofd {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('/assets/img/bg/tofd-background.png');
}

.services-card.bg-ae {
    background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)), url('/assets/img/bg/ae-background.png');
}

.services-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
}

.services-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-family: ''Poppins'';
}

.services-card h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.services-card p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.services-content {
    min-height: 180px;
    transition: opacity 0.5s ease;
}

.service-slide-title {
    font-size: 28px;
    margin-bottom: 15px;
}

.service-slide-desc {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.services-content.fade-out {
    opacity: 0;
}

.carousel-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

.arrow-btn {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FF8C00;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s;
}

.arrow-btn2 {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FF8C00;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s;
}

.arrow-btn3 {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1e2a4a;
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s;
}

/* .arrow-btn:hover {
    background: white;
    color: #FF8C00;
} */

/* Testimonial Card */
.testimonial-card {
    background: #1e2a4a;
    border-radius: 20px;
    padding: 30px;
    color: white;
    position: relative;
}

.testimonial-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #1e2a4a;
}

.client-details h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.stars {
    color: #FF8C00;
    font-size: 16px;
}

.testimonial-text {
    font-style: italic;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 20px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 60px;
    color: #FF8C00;
    position: absolute;
    /* left: -10px; */
    left: -28px;
    top: -20px;
    font-family: Georgia, serif;
}

/* Client Logos */
.client-logos {
    background: #fafafa;
    padding: 40px 0;
    text-align: center;
    margin-top: 40px;
    overflow: hidden;
}

.client-logos h3 {
    font-size: 16px;
    margin-bottom: 30px;
    color: #333;
    padding: 0 40px;
    font-family: montserrat;
}

.logos-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logos-grid {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scrollLogos 10s linear infinite;
    width: fit-content;
}

/* .logos-grid:hover {
    animation-play-state: paused;
} */

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2));
    }
}

.logos-item {
    height: 50px;
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 24px;
    color: #333;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Who We Are Section */
.who-we-are {
    /* background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%); */
    background: url('/assets/img/bg/who-weare-bg2.webp') center/cover no-repeat;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.who-we-are::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%231a2332" width="1200" height="800"/></svg>');
    opacity: 0.1;
    background-size: cover;
}

.who-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.who-header {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 15px;
    margin-bottom: 30px;
}

.who-label {
    color: #FF8C00;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 2px;
}

.who-line {
    width: 150px;
    height: 2px;
    background: #FF8C00;
}

.who-title {
    font-size: 56px;
    line-height: 1.3;
    margin-bottom: 30px;
    font-weight: 700;
    font-family: montserrat;
}

.highlight-year {
    color: #FF8C00;
}

.who-description {
    font-size: 20px;
    line-height: 35px;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    font-family: 'Poppins';
}

.company-name {
    color: #FF8C00;
    font-weight: 600;
}

.highlight-text {
    color: #FF8C00;
    font-weight: 600;
}

.about-btn {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #BA68044D;
    border: 2px solid #FF8C00;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
}

.about-btn:hover {
    background: #FF8C00;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 152, 0, 0.4);
}

.arrow-icon {
    font-size: 20px;
    transition: transform 0.3s;
}

.about-btn:hover .arrow-icon {
    transform: translateX(5px);
}

/* Features Bar */
.features-bar {
    /* background: #1a1a2e; */
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    font-family: montserrat;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
}

.feature-icon {
    font-size: 28px;
    width: 50px;
    height: 50px;
    /* background: rgba(255, 152, 0, 0.2);
    border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 24px;
}

/* Our Services Section */
.our-services {
    background: #f8f9fa;
    padding: 80px 20px;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

.services-label-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.services-label {
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 2px;
}

.services-label-line {
    width: 200px;
    height: 2px;
    background: var(--primary-orange);
}

.services-title {
    font-size: 3rem;
    color: var(--black-neutral);
    margin-bottom: 30px;
    font-weight: 700;
}

.services-intro {
    font-family: 'Poppins';
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--black-neutral);
    margin-bottom: 20px;
}

.bold-text {
    font-weight: 700;
    color: #1a1a2e;
}

.company-highlight {
    color: var(--primary-orange);
    font-weight: 600;
}

.services-tagline {
    color: var(--primary-orange);
    font-size: 1.25rem;
    font-weight: 600;
    font-style: italic;
}

.services-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 80px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    border: 2px solid #FF8C00;
    color: #FF8C00;
    padding: 15px 35px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
    white-space: nowrap;
    text-decoration: none;
}

.view-all-btn:hover {
    background: #FF8C00;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 152, 0, 0.3);
}

.view-all-btn:hover svg{
    transform: translateX(5px);
    fill: white;
}

/* Services Grid */
.services-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.services-grid {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.service-card {
    position: relative;
    min-width: calc((100% - 60px) / 3);
    height: 463px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    transition: all 0.3s;
    flex-shrink: 0;
}

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

/* .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 500"><rect fill="%23405060" width="400" height="500"/></svg>');
    background-size: cover;
    opacity: 0.5;
} */

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    color: white;
}

.card-icon-title {
    display: flex;
    align-items: center;
    gap: 15px;
    /* margin-bottom: 15px; */
    /* custom */
    margin: 20px;
    position: fixed;
    top: 0;
    padding-left: 85px;
}

.card-icon {
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgba(255, 255, 255, 0.2);
    border-radius: 10px; */
}

.card-category {
    font-size: 1.5rem;
    letter-spacing: 2px;
    font-weight: bold;
    color: white;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.see-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s;
}

.see-more-btn:hover {
    background: #FF8C00;
    color: white;
}

.see-more-btn .arrow-icon {
    transition: transform 0.3s;
}

.see-more-btn:hover .arrow-icon {
    transform: translateX(5px);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding: 10px;
}

.carousel-indicators {
    position: relative;
    display: flex;
    gap: 10px;
    flex: 1;
    justify-content: center;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    cursor: pointer;
    transition: all 0.3s;
}

.indicator.active {
    background: var(--darker-bg);
    width: 40px;
    border-radius: 6px;
}

.carousel-arrows {
    display: flex;
    gap: 15px;
}

.arrow-control {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--darker-bg);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s;
}

.arrow-control:hover {
    background: #002080;
    transform: scale(1.1);
}

.arrow-control:active {
    transform: scale(0.95);
}

/* Profesional Teamwork */
.profesional-teamwork {
    background: #f8f9fa;
    padding: 80px 0px;
}

.teamwork-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-label-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.gallery-label {
    color: #FF8C00;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 2px;
}

.gallery-label-line {
    width: 200px;
    height: 2px;
    background: var(--primary-orange);
}

.gallery-label-lines {
    width: 1400px;
    height: 2px;
    background: var(--primary-orange);
}

.gallery-wrapper {
overflow: hidden;
width: 100%;
position: relative;
margin: 40px auto;
}

.gallery-row {
overflow: hidden;
width: 100%;
position: relative;
margin: 40px auto;
}

.gallery-track {
display: flex;
gap: 1rem;
width: max-content;
}

/* Title Overlay */
.gallery-item {
position: relative;
flex-shrink: 0;
border-radius: 12px;
overflow: hidden;
}

.gallery-item img {
width: 465px;
height: 463px;
object-fit: cover;
border-radius: 12px;
transition: transform 0.3s ease;
}

.gallery-item:hover img {
transform: scale(1.05);
}

.gallery-title {
position: absolute;
bottom: 8px;
left: 0;
width: 100%;
text-align: center;
color: white;
font-weight: 600;
font-size: 0.9rem;
text-transform: uppercase;
background: rgba(0, 0, 0, 0.4);
padding: 5px 0;
border-bottom-left-radius: 12px;
border-bottom-right-radius: 12px;
}

/* Animasi Loop Halus */
@keyframes scrollLeft {
from {
    transform: translateX(0);
}
to {
    transform: translateX(-50%);
}
}

@keyframes scrollRight {
from {
    transform: translateX(-50%);
}
to {
    transform: translateX(0);
}
}

/* Baris atas bergerak ke kiri */
.animate-left .gallery-track {
animation: scrollLeft 12s linear infinite;
}

/* Baris bawah bergerak ke kanan */
.animate-right .gallery-track {
animation: scrollRight 12s linear infinite;
}

/* Loop tanpa jeda */
.animate-left .gallery-track::after,
.animate-right .gallery-track::after {
content: "";
display: flex;
gap: 1rem;
width: max-content;
}

/* Duplikasi otomatis seluruh konten untuk loop mulus */
.animate-left .gallery-track::after {
content: attr(data-content);
}
.animate-right .gallery-track::after {
content: attr(data-content);
}


/* Why choose us section */
.why-us-section {
    /* background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #115e59 100%); */
    background-color: var(--darker-bg);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    max-width: 1400px;
    margin: 0 auto;
    border-top-left-radius: 45px;
    border-top-right-radius: 45px;
}

.why-us-section::before,
.why-us-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
}

.why-us-section::before {
    width: 400px;
    height: 400px;
    background: #14b8a6;
    top: 0;
    right: 0;
}

.why-us-section::after {
    width: 400px;
    height: 400px;
    background: var(--primary-orange);
    bottom: 0;
    left: 0;
}

.section-label {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
}

.section-label-why-us {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.section-label-why-us::after {
    content: '';
    width: 80px;
    height: 2px;
    background: var(--primary-orange);
}

.main-heading {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.main-heading .text-white {
    color: #ffffff;
}

.main-heading .text-orange {
    color: var(--primary-orange);
}

.card-custom {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.2);
}

.card-title-custom {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.card-title-medium {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.card-title-small {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.orange-line {
    width: 100%;
    height: 4px;
    background: var(--primary-orange);
    margin-bottom: 25px;
}

.orange-line-short {
    width: 200px;
    height: 4px;
    background: var(--primary-orange);
    margin-bottom: 30px;
}

.card-text-custom {
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 1rem;
}

.card-text-custom p {
    margin-bottom: 15px;
}

.btn-contact {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-contact:hover {
    background: var(--primary-orange);
    color: #ffffff;
}

.icon-decorative {
    opacity: 0.2;
    text-align: center;
    margin-top: 40px;
}

.icon-decorative i {
    font-size: 5rem;
    color: var(--primary-orange);
}

.icon-badge {
    font-size: 3rem;
    color: var(--primary-orange);
}

.icon-tech {
    font-size: 3rem;
    color: var(--primary-orange);
    opacity: 0.3;
}

.icon-team {
    font-size: 2rem;
    color: var(--primary-orange);
    opacity: 0.3;
}

/* Custom Grid Layout */
.left-column {
    height: 100%;
}

.right-column-top {
    margin-bottom: 30px;
}

/* Experiences section */
.experience-section {
    background-color: var(--darker-bg);
    padding: 80px 0;
}

/* .section-label {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
} */

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
    /* mix */
    position: relative;
    /* display: inline-block; */
}

.section-description {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 80px;
}

.section-description strong {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Logo Grid */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 40px;
    align-items: center;
    justify-items: center;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-item:hover {
    transform: scale(1.1);
    opacity: 1;
}

.logo-item img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    filter: brightness(0) invert(1);
}

/* CTA Section and Footer */
:root {
    --card-dark: #2d3748;
    --card-darker: #1a202c;
}

.cta-section {
    background-color: var(--white-bg);
    padding: 80px 0;
}

.cta-section-none {
    display: none;
}

.cta-section-dark {
    background-color: var(--darker-bg);
    padding: 80px 0;
}

/* Contact CTA Section */
.contact-cta-section {
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.3) 0%, rgba(71, 85, 105, 0.3) 100%);
    backdrop-filter: blur(10px);
    border-radius: 46px;
    padding: 60px;
    margin: 80px auto;
    position: relative;
    overflow: hidden;
}

.contact-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/img/bg/bg-cta-contact-footer.jpeg');
    background-size: cover;
    background-position: center;
    /* opacity: 0.3; */
    z-index: 0;
}

.contact-cta-content {
    position: relative;
    z-index: 1;
}

.cta-label {
    color: #F5F6FF;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #F5F6FF;
    line-height: 1.3;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F5F6FF;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--primary-orange);
    color: #F5F6FF;
    transform: translateY(-3px);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: #F5F6FF;
    color: #1a202c;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: var(--primary-orange);
    color: #ffffff;
    transform: translateX(5px);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--card-darker);
    border-radius: 20px;
    padding: 40px;
}

.form-header {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 30px;
    text-align: center;
}

.form-control-custom {
    background: var(--card-dark);
    border: 1px solid #4a5568;
    color: #ffffff;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.form-control-custom:focus {
    background: var(--card-dark);
    border-color: var(--primary-orange);
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(255, 140, 66, 0.25);
}

.form-control-custom::placeholder {
    color: #94a3b8;
}

textarea.form-control-custom {
    min-height: 150px;
    resize: vertical;
}

.form-label-custom {
    color: white;
    font-size: 0.575rem;
    margin-bottom: 15px;
    text-align: start;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-submit:hover {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateX(5px);
}

/* Footer */
.footer-main {
    background-color: var(--darker-bg);
    padding: 60px 0 30px;
}

.footer-main .container{
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo-section {
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    /* width: 60px;
    height: 60px;
    background-color: #ffffff; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--darker-bg);
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 25px;
}

.footer-social-icon:hover {
    background-color: var(--primary-orange);
    color: #ffffff;
}

.footer-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-title::before {
    content: '';
    width: 4px;
    height: 25px;
    background-color: var(--primary-orange);
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 15px;
}

.footer-menu a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu a:hover {
    color: var(--primary-orange);
    transform: translateX(5px);
}

.footer-contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 10px;
    color: #94a3b8;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--primary-orange);
    font-size: 1.2rem;
    margin-top: 3px;
}

.contact-item a {
    color: #94a3b8;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 30px;
    margin-top: 40px;
}

/* Hero Section - About Us */
.hero-about-old {
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.95), rgba(26, 41, 66, 0.95)), 
                url('/assets/img/gallery/our-team.jpeg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-about {
    background: url('/assets/img/bg/hero-about.jpeg');
    background-size: cover;
    background-position: bottom;
    padding: 268px 0 80px;
    text-align: center;
    height: 1000px;
}

.section-title-about-us {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.section-title-about-us::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 10px;
    background: #FF8C00;
}

.hero-description {
    max-width: 1060px;
    margin: 40px auto 0;
    font-size: 24px;
    line-height: 35px;
    color: #F5F6FF;
    font-family: 'Poppins';
}

/* Key Facts Section */
.key-facts-section {
    padding: 80px 0;
    /* background-color: #0f1c35; */
    background-color: transparent;
    /* background: linear-gradient(135deg, rgba(10, 22, 40, 0.95), rgba(26, 41, 66, 0.95)); */
}

.key-facts-section .container {
    background-color: #15203C;
    padding: 80px 80px;
    border-radius: 50px 50px;
}

.key-facts-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.key-facts-subtitle {
    text-align: center;
    margin: 60px;
    max-width: 885px;
    margin-left: auto;
    margin-right: auto;
    font-family: ''Poppins'';
    font-size: 20px;
}

.stat-card {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--white-neutral);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.key-facts-section {
    position: relative;
    z-index: 2;
}

/* Tambahkan lapisan background lembut transparan di belakang teks */
.key-facts-section .facts-content,
.key-facts-section .facts-wrapper,
.key-facts-section .facts-box,
.key-facts-section .facts-item {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Warna teks agar kontras di atas background transparan */
.key-facts-section h2,
.key-facts-section h3,
.key-facts-section h4,
.key-facts-section p,
.key-facts-section span {
    color: #F5F6FF !important;
}

/* Jika ada ikon atau angka besar di dalamnya */
.key-facts-section .fact-number,
.key-facts-section .fact-icon {
    color: #ffd580; /* aksen oranye lembut agar konsisten dengan tema Dimensi */
}

/* Hover effect ringan (opsional, tidak ubah layout) */
.key-facts-section .facts-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    transition: all 0.3s ease;
}

/* Profile Badges*/
.profile-badges {
    font-family: 'Montserrat';
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 4rem;

}

.profile-badge-title{
    font-size: 16px;
    font-weight: 700;
    align-content: center;
    transition: all 0.3s ease;
}

.profile-badge-default {
    background: transparent;
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--primary-orange);
    transition: all 0.3s ease;
    color: var(--black-neutral);
    text-decoration: none;
}

.profile-badge-default.active {
    transform: translateY(-5px);
    background-color: var(--primary-orange);
    color: var(--white-neutral);
}

.profile-badge-default a {
    color: var(--black-neutral);
    text-decoration: none;
}

.profile-badge-default.active a {
    color: var(--white-neutral);
    text-decoration: none;
}

.profile-badge-default:hover {
    transform: translateY(-5px);
    color: var(--white-neutral);
    background-color: var(--primary-orange);
}

.profile-badge-default:hover a {
    color: var(--white-neutral);
    text-decoration: none;
}

.profile-badge-default i {
    color: var(--primary-orange);
    font-size: 1.5rem;
}

/* --- Warna default SVG di dalam profile badge --- */
.profile-badge-default svg {
    width: 24px;
    height: 24px;
    fill: var(--white-neutral);
    transition: fill 0.3s ease, transform 0.3s ease;
}

/* --- SVG saat active --- */
.profile-badge-default.active svg {
    fill: var(--white-neutral);
}

/* --- SVG saat hover --- */
.profile-badge-default:hover svg {
    fill: var(--white-neutral);
    transform: scale(1.1);
}

.profile-badge-about {
    background: var(--card-bg);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.profile-badge-about.active {
    transform: translateY(-5px);
    background-color: var(--primary-orange);
}

.profile-badge-about a {
    color: var(--white-neutral);
    text-decoration: none;
}

.profile-badge-about:hover {
    transform: translateY(-5px);
    background-color: var(--primary-orange);
}

.profile-badge-about i {
    color: var(--primary-orange);
    font-size: 1.5rem;
}

/* Vision Section */
.vision-section {
    padding: 80px 0;
}

.vision-image {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
}

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

.vision-content {
    padding-left: 40px;
    color: var(--white-neutral);
    font-family: 'Poppins';
    text-align: center;
}

.vision-title {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 25px;
}

.vision-text {
    color: var(--text-gray);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.8;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    color: var(--white-neutral);
    font-family: 'Poppins';
}

.mission-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 60px;
}

.mission-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.mission-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-10px);
}

.mission-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.mission-card p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    font-family: 'Poppins';
}

.values-section .container{
    border-style: solid;
    border-radius: 50px;
    padding: 30px;
    border-top-color: transparent;
    border-bottom-color: transparent;
}

.values-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 60px;
    color: var(--white-neutral);
}

.value-card {
    background: #15203C;
    /* padding: 40px; */
    padding: 10px 32px; 
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(255, 140, 66, 0.3);
}

.value-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.value-card h4 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--white-neutral);
}

.value-card p {
    font-size: 14px;
    color: #E6E6E6;
    line-height: 1.7;
    margin: 0;
}

.value-card-with-image {
    padding: 0;
    overflow: hidden;
}

.value-card-with-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.value-card-content {
    padding: 66px 0px 0px 0px;
}

/* Goal Section */
.goal-section {
    padding: 80px 0;
    /* background-color: #0f1c35; */
    color: var(--white-neutral);
    font-family: 'Poppins';
}

.goal-section .container{
    background-color: #15203C;
    border-style: unset;
    border-radius: 50px;
    padding: 10px 0px 10px 50px;
}

.goal-title {
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 25px;
}

.goal-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-orange);
    margin-bottom: 25px;
}

.goal-text {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.goal-image {
    border-radius: 20px;
    overflow: hidden;
}

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

/* certification Validation Page */
.certification-validation-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 110px 20px;
    margin-top: 15px;
}

.certification-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    max-width: 900px;
    width: 100%;
    color: white;
    text-align: center;
}

.certification-title {
    font-size: 2rem;
    color: #FF8C00;
    margin-bottom: 10px;
}

.certification-subtitle {
    font-size: 1rem;
    color: #F5F6FF;
    margin-bottom: 40px;
}

.certification-info {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
}

.info-left {
    flex: 1;
    text-align: left;
}

.certification-preview img {
    width: auto;
    border-radius: 12px;
    border: 3px solid #FF8C00;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
}

.status-valid {
    color: #22c55e;
    font-weight: 700;
}

.status-invalid {
    color: #ef4444;
    font-weight: 700;
}

.validation-footer {
    font-size: 0.9rem;
    color: #d1d5db;
    margin-top: 20px;
}

.btn-back {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    border-radius: 30px;
    border: 2px solid #FF8C00;
    color: #FF8C00;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: #FF8C00;
    color: white;
}

/* Contact Us Section */
.contact-section {
    background: url('/assets/img/bg/bg-contact-us.jpeg') center/cover no-repeat;
    padding: 160px 0;
    position: relative;
}

.contact-section .container{
    padding: 120px 0px;
}

.contact-section-label {
    color: var(--primary-orange);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-section-label::after {
    content: '';
    width: 300px;
    height: 2px;
    background-color: var(--primary-orange);
    margin-left: 12px;
}

.contact-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 2rem;
    color: var(--white-neutral);
}

.btn-whatsapp {
    background-color: var(--white-neutral);
    color: var(--dark-bg);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background-color: #f3f4f6;
    color: var(--dark-bg);
}

.contact-social-links {
    margin-top: 2rem;
    display: flex;
    flex-direction: column; 
    align-items: flex-start;
}

.contact-social-label {
    font-size: 1rem;
    font-family: 'Montserrat';
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--white-neutral);
    margin-bottom: 1rem;
}

.contact-social-icons {
    display: flex;
    gap: 12px; /* jarak antar ikon */
}

.contact-social-icons a{
    font-size: 35px;
}

.contact-social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--dark-secondary);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: background-color 0.3s;
    text-decoration: none;
    color: var(--white-neutral);
}

.contact-social-icon:hover {
    background-color: var(--dark-card);
    color: var(--white-neutral);
}

/* Contact Form */
.contact-form-wrapper {
    background-color: #111828B2;
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 50px;
}

.form-label {
    color: var(--white-neutral);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    background-color: rgba(51, 65, 85, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 16px;
    color: #fff;
    transition: border-color 0.3s;
}

.form-control:focus, .form-select:focus {
    background-color: rgba(51, 65, 85, 0.5);
    border-color: var(--amber-color);
    color: var(--white-neutral);
    box-shadow: none;
}

.form-control::placeholder {
    color: #94a3b8;
}

.form-text {
    color: var(--white-neutral);
    font-size: 0.75rem;
}

.form-text .text-warning {
    color: var(--amber-color) !important;
}

.btn-submit {
    background-color: transparent;
    border: 2px solid var(--white-neutral);
    color: var(--white-neutral);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

/* Offices Section */
.offices-section {
    padding: 80px 0 320px;
    background-color: var(--darker-bg);
}

.office-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--white-neutral);
}

.office-card {
    background-color: var(--dark-secondary);
    border-radius: 23px;
    overflow: hidden;
    height: 100%;
    display: flex;
}

.office-map {
    width: 100%;
    background-color: var(--dark-card);
    position: relative;
    overflow: hidden;
}

.office-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.office-content {
    padding: 1.5rem;
    width: 100%;
    background-color: #151e32;
    font-family: 'Poppins';
}

.office-header {
    align-items: flex-start;
    gap: 1rem;
    margin-top: 0.5rem;
    border-bottom: 2px solid var(--white-neutral);
}

.office-icon {
    display: flex;
}

.office-icon svg  {
    width: 15%;
}

.office-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-left: 0.5rem;
    color: var(--white-neutral);
}

.office-address {
    color: #CBCBCB;
    margin: 15px 0 0 0;
    font-size: 1.25rem;
}

.office-details {
    padding-top: 10rem;
}

.detail-label {
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    color: #94a3b8;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.detail-link {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white-neutral);
    text-decoration: none;
    transition: color 0.3s;
}

.detail-link:hover {
    color: var(--primary-orange);
}

/* Milestone Section */
.milestone-section {
    padding: 60px 0;
    font-family: 'Poppins';
}

.milestone-section-title {
    font-family: 'Montserrat';
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin: 0 2rem 4rem;
    color: var(--black-neutral);
}

.milestone-section-description {
    font-size: 1.25rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    color: var(--black-neutral);
}

.milestone-section-description strong {
    font-weight: bolder;
    color: var(--primary-orange);
}

.milestone-highlight-text {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Filter Pills */
.milestone-filter-pills {
    font-family: 'Montserrat';
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 4rem;
}

.milestone-filter-pill {
    padding: 10px 24px;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    background: white;
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.milestone-filter-pill:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.milestone-filter-pill.active {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
}

.milestone-filter-pill i {
    font-size: 1.1rem;
}

/* Timeline */
.timeline-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0 140px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--black-neutral);
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 120px;
    min-height: 100px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Timeline Icon */
.timeline-icon {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 79px;
    height: 79px;
    background: white;
    border: 2px solid var(--black-neutral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline-icon::before {
    content: '';
    font-weight: bold;
    color: var(--darker-bg);
    font-size: 1.5rem;
}

/* Timeline Content Right */
.timeline-content-right {
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: 135px;
    width: 250px;
}

/* Timeline Content Left */
.timeline-content-left {
    position: absolute;
    right: 50%;
    top: 0;
    margin-right: 135px;
    width: 250px;
    text-align: right;
}

.timeline-year {
    font-size: 3rem;
    font-weight: 700;
    color: var(--darker-bg);
    margin-bottom: 8px;
    line-height: 1;
}

.timeline-description {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1.25rem;
}

/* Animation */
.timeline-item {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Certificate Page */
.certificate-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.certificate-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8rem;
    color: var(--darker-bg);
}

/* Certification Card */
.cert-card {
    background: white;
    border: 3px solid var(--primary-orange);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    position: relative;
}

.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
}

/* Logo Circle */
.cert-logo-circle {
    width: 120px;
    height: 120px;
    background: white;
    border: 3px solid var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -92px auto 46px;
    position: relative;
    z-index: 1;
}

.cert-logo-circle img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Card Title */
.cert-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--darker-bg);
    text-align: center;
    margin-bottom: 20px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-line {
    width: auto;
    height: 2px;
    background: var(--primary-orange);
    margin-bottom: 20px;
}

/* Description Section */
.cert-description-label {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.cert-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Download Button */
.btn-download {
    background: white;
    border: 2px solid var(--darker-bg);
    color: var(--darker-bg);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    text-decoration: none;
    justify-content: center;
    margin-top: auto;
}

.btn-download:hover {
    background: var(--darker-bg);
    color: white;
    border-color: var(--darker-bg);
}

.btn-download i {
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .cert-card {
        margin-bottom: 60px;
    }
    
    .cert-logo-circle {
        margin-top: -60px;
    }
}

/* Animation */
.cert-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.cert-card:nth-child(1) { animation-delay: 0.1s; }
.cert-card:nth-child(2) { animation-delay: 0.2s; }
.cert-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Affiliation Page */
.affiliation-section {
    padding: 80px 0;
}

/* Affiliation Card */
.affiliation-card {
    font-family: 'Poppins';
    background: #F4F4F4;
    border-radius: 50px;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.affiliation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Logo Container */
.affiliation-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.affiliation-logo img {
    max-width: 180px;
    max-height: 150px;
    object-fit: contain;
}

/* Divider Line */
.affiliation-divider {
    width: 100%;
    height: 1px;
    background-color: #e2e8f0;
    margin-bottom: 25px;
}

/* Card Title */
.affiliation-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--black-neutral);
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Card Description */
.affiliation-description {
    color: var(--black-neutral);
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
}

/* Grid Spacing */
.affiliation-row {
    row-gap: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .affiliation-section {
        padding: 60px 0;
    }
    
    .affiliation-card {
        padding: 30px 20px;
    }
    
    .affiliation-logo {
        height: 100px;
        margin-bottom: 20px;
    }
    
    .affiliation-logo img {
        max-width: 150px;
        max-height: 80px;
    }
}

/* Animation */
.affiliation-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.affiliation-card:nth-child(1) { animation-delay: 0.1s; }
.affiliation-card:nth-child(2) { animation-delay: 0.2s; }
.affiliation-card:nth-child(3) { animation-delay: 0.3s; }
.affiliation-card:nth-child(4) { animation-delay: 0.4s; }

.services-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

/* Service Item */
.service-item {
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    border: 2px solid #F4F4F4;
    background-color: #F4F4F4;
    padding: 30px;
    border-radius: 50px;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }
.service-item:nth-child(5) { animation-delay: 0.5s; }
.service-item:nth-child(6) { animation-delay: 0.6s; }
.service-item:nth-child(7) { animation-delay: 0.7s; }

/* Image Container */
.service-image {
    border-radius: 50px;
    overflow: hidden;
    height: 100%;
    min-height: 550px;
    position: relative;
}

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

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

/* Content Container */
.service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 50px 50px;
}

.service-title {
    font-family: 'Montserrat';
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.service-subtitle {
    font-family: 'Montserrat';
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.service-description {
    font-family: 'Poppins';
    font-weight: 300;
    color: var(--grey-neutral);
    font-size: 1.25rem;
    line-height: 1.7;
    margin: 2rem 0;
}

.service-details {
    font-family: 'Poppins';
    font-weight: 300;
    color: var(--grey-neutral);
    font-size: 1.25rem;
    line-height: 1.7;
}

.service-details strong {
    color: var(--primary-orange);
}

/* Alternating Layout */
.service-item:nth-child(even) .row {
    flex-direction: row-reverse;
}

.project-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.project-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--darker-bg);
}

/* Project Accordion */
.project-accordion {
    /* max-width: max-content; */
    margin: 0 auto;
}

.project-item {
    /* background: white;
    border-radius: 12px;
    margin-bottom: 20px; */
    border: 1px solid var(--border-grey);
    overflow: hidden;
    transition: all 0.3s;
}

.project-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Project Header */
/* .project-header {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
} */

.project-header {
    padding: 25px 250px;
    display: grid;
    grid-template-columns: auto 1fr auto; /* 3 kolom */
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
    gap: 20px; /* spacing antar kolom */
    min-height: 150px;
}

.project-logo-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.project-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* tetap rata kiri (lebih rapih) */
    gap: 5px;
}

.project-header:hover {
    background: #f8fafc;
}

/* .project-header.active {
    background: #f1f5f9;
} */

/* .project-logo-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
} */

.project-logo {
    width: 215px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* .project-meta {
    display: flex;
    align-items: center;
    gap: 15px;
} */

.project-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.project-year {
    font-size: 0.88rem;
    color: var(--text-gray);
}

.project-chevron {
    font-size: 1.5rem;
    color: var(--text-gray);
    transition: transform 0.3s;
}

.project-chevron.active {
    transform: rotate(180deg);
}

/* Project Content */
.project-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.project-content.active {
    max-height: max-content;
}

.project-inner {
    font-family: 'Poppins';
    padding: 93px 0px 100px 100px;
    background-color: white;
}

.project-label {
    color: var(--primary-orange);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.project-title-main {
    font-size: 2rem;
    font-weight: 700;
    color: var(--darker-bg);
    margin-bottom: 20px;
}

.project-detail-item {
    margin-bottom: 25px;
}

.project-detail-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--darker-bg);
    margin-bottom: 8px;
}

.project-detail-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--darker-bg);
    margin-bottom: 8px;
}

.project-detail-item p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.project-image {
    border-radius: 50px 0px 0px 50px;
    overflow: hidden;
    height: 100%;
    /* min-height: 350px; */
    max-height: 575px;
}

.project-image img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    object-fit: fill;
}

/* Testimonial Section */
.testimonial-section {
    padding: 60px 0;
}

.testimonial-head {
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 15px;
    margin-bottom: 30px;
}

.testimonial-label {
    color: var(--primary-orange);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.testimonial-line {
    width: 150px;
    height: 2px;
    background: #FF8C00;
}

.testimonial-body {
    background: transparent;
    border-radius: 16px;
    padding: 40px;
    position: relative;
}

.testimonial-cards {
    font-family: 'Poppins';
    background: var(--light-bg);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.testimonial-avatar {
    width: 66px;
    height: 66px;
    background: #dfe0e3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #29375E;
    font-size: 1.5rem;
}

.testimonial-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 5px;
}

.testimonial-info p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9rem;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    /* margin-bottom: 20px; */
}

.testimonial-quote {
    font-size: 3rem;
    color: var(--primary-orange);
    position: absolute;
    top: 50%;
    left: 30px;
    line-height: 1;
}

.testimonial-quote.right {
    top: 50%;
    left: auto;
    right: 30px;
}

.testimonial-texts {
    font-style: italic;
    color: var(--dark-bg);
    font-size: 1.5rem;
    line-height: 1.8;
    margin-top: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-nav {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.testimonial-nav i {
    color: var(--dark-bg);
}

.testimonial-nav:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.testimonial-nav:hover i {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-dot.active {
    background: var(--primary-orange);
    width: 30px;
    border-radius: 5px;
}


/* Section Artikel */
.article-section {
    min-height: 100vh;
    padding: 40px 20px;
}

.page {
    min-height: 100vh;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Section 1 - Halaman Awal Artikel */
.home-card {
    background: #fff;
    border: 3px solid #f9a825;
    border-radius: 25px;
    padding: 40px;
    /* max-width: 1000px; */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    color: inherit;
}

.home-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.date {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.home-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 30px;
    text-align: center;
}

.home-intro {
    color: #929191;
    font-size: 1rem;
    margin-bottom: 30px;
    text-align: center;
}

.read-more {
    color: #929191;
    font-style: italic;
    text-decoration: underline;
    cursor: pointer;
}

.article-hero-image {
    width: 100%;
    /* height: 400px; */
    border-radius: 15px;
    object-fit: cover;
    margin-top: 20px;
}

/* Section 2 - Detail Artikel */
#article {
    background: #fff;
}

.article-header {
    text-align: left;
    margin-bottom: 40px;
}

.article-label {
    color: #f9a825;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.article-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--black-neutral);
    margin-bottom: 20px;
    text-align: center;
    padding: 40px 150px;
}

.article-intro {
    font-family: 'Poppins';
    font-size: 1.25rem;
    color: var(--black-neutral);
    line-height: 1.8;
    margin-bottom: 30px;
    padding: 20px 60px;
}

.main-image {
    width: 100%;
    /* height: 350px; */
    /* border-radius: 15px; */
    object-fit: cover;
    margin-bottom: 50px;
}

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

.content-box {
    /* margin-bottom: 60px; */
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.content-left {
    order: 1;
    padding: 40px;
}

.content-right {
    order: 2;
    padding: 40px;
}

.content-center {
    padding: 10px;
}

.section-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--black-neutral);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 3rem;
    font-weight: 600;
    color: var(--black-neutral);
    margin-bottom: 20px;
}

.content-image {
    width: 100%;
    /* height: 250px; */
    border-radius: 15px;
    object-fit: cover;
    margin-bottom: 20px;
}

.content-left h3,
.content-right h3 {
    font-family: 'Poppins';
    font-size: 2rem;
    font-weight: 700;
    color: var(--black-neutral);
    margin: 25px 0 15px 0;
}

.content-center h4 {
    font-family: 'Poppins';
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black-neutral);
    margin: 25px 0 15px 0;
}

.content-left p,
.content-right p,
.conclusion p {
    font-family: 'Poppins';
    font-size: 1.25rem;
    color: var(--black-neutral);
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-center ul {
    margin: 15px 0 15px 20px;
    color: var(--black-neutral);
}

.content-center ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 1.25rem;
}

.quote {
    background: #f9f9f9;
    border-left: 4px solid #f9a825;
    padding: 20px;
    margin: 30px 60px;
    font-family: 'Poppins';
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 600;
    text-align: center;
    color: #000;
}

.conclusion {
    margin-top: 40px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
}

.home-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.article-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.nav-btn {
    background: #f9a825;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(249, 168, 37, 0.3);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-btn:hover {
    background: #f57c00;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 168, 37, 0.4);
}

.nav-btn.back {
    background: #666;
}

.nav-btn.back:hover {
    background: #444;
}

@media (max-width: 768px) {
    .home-title, .article-title {
        font-size: 1.8rem;
    }

    .content-box {
        grid-template-columns: 1fr;
    }

    .content-left, .content-right {
        order: unset !important;
    }

    .article-nav {
        flex-direction: column;
        gap: 15px;
    }

    .nav-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 768px) {    
    .project-header {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 0 30px;
    }
    
    .project-logo-info {
        width: 60%;
    }

    .project-name,
    .project-year,
    .project-detail-item h4,
    .project-detail-item h3,
    .project-detail-item p 
    {
        font-size: 0.75rem;
    }

    .project-inner {
        padding: 30px;
    }

    .project-label {
        font-size: 14px;
    }

    .project-title-main {
        font-size: 1.5rem;
    }
    
    .project-image {
        border-radius: 50px;
        max-height: 292px;
        margin-bottom: 20px;
    }
    
    .testimonial-cards {
        padding: 30px 20px;
    }

    .testimonial-info h4,
    .testimonial-info p,
    .testimonial-texts 
    {
        font-size: 14px;
    }

    .testimonial-quote svg {
        width: 20px;
        height: 20px;
    }
    
    .testimonial-quote {
        font-size: 2rem;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .services-section {
        padding: 60px 0;
    }
    
    .service-item {
        margin-bottom: 50px;
    }
    
    .service-title,
    .service-subtitle {
        font-size: 1.5rem;
    }
    
    .service-image {
        min-height: 250px;
        margin-bottom: 20px;
    }
    
    .service-item:nth-child(even) .row {
        flex-direction: column !important;
    }
}

@media (max-width: 767px) {
    .service-title,
    .service-subtitle {
        font-size: 1.35rem;
    }
    
    .service-image {
        min-height: 200px;
    }
}

/* Responsive */
@media (max-width: 2560px) {
    .hero-section-mobile {
        display: none;
    }
}

@media (max-width: 1440px) {
    .hero-section-mobile {
        display: none;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        display: none;
    }

    .hero-section-mobile {
        display: block;
    }
    
    .main-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-image {
        display: none;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .lang-btns {
        display: flex;
    }

    .contact-btn {
        display: none;
    }

    .who-title {
        font-size: 36px;
    }

    .features-bar {
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-header {
        grid-template-columns: 1fr;
    }

    .services-right {
        justify-content: flex-start;
        padding-top: 20px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        display: none;
    }

    .gallery-item img {
        width: 260px;
        height: 180px;
    }
    /* Why us */
    .left-column {
    margin-bottom: 30px;
    }
    /* Experience */
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px 30px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .vision-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-section {
        background: url('/assets/img/bg/bg-contact-us-mobile.webp') top/contain no-repeat;
        padding: 45px 0 0 0;
    }

    .contact-section .container {
        padding: 105px 25px;
    }
    
    .offices-section {
        padding: 60px 15px;
    }

    .office-map iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

    .office-content {
        padding: 1rem;
    }

    .office-details {
        padding-top: 4rem;
    }

    .office-title {
        font-size: 1rem;
    }

    .office-address {
        font-size: 0.75rem;
    }

    .detail-label {
        font-size: 0.75rem;
    }

    .detail-link {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        display: none;
        padding: 40px 25px;
        min-height: auto;
        border-radius: 15px;
    }

    .hero-section-mobile {
        padding: 40px 30px;
    }

    .hero-section-mobile h1 {
        font-size: 32px;
    }

    /* .contact-info {
        flex-direction: column;
        gap: 10px;
    } */
    .contact-info {
        display: none;
    }

    .top-bar{
        display: none;
    }
    
    .top-bar-content{
        display: none;
    }

    nav {
        padding: 15px 0;
    }

    nav.about-nav {
        position: relative;
        padding: 15px 0;
    }

    .nav-content {
        padding: 0 15px;
    }

    .logo {
        font-size: 18px;
    }

    .logo-circle {
        width: 154px;
        height: 47px;
        /* font-size: 12px; */
        background: none;
    }

    .logo-img {
        height: 46px;
        width: 141px;
        object-fit: contain;
    }

    .logo svg {
        height: 46px;
        width: 141px;
        object-fit: contain;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu-overlay.active {
        left: 0 !important;
    }

    .close-menu{
        font-size: 70px;
    }

    .main-container {
        margin: 20px auto;
        padding: 0 15px;
        gap: 20px;
    }

    .hero-content {
        max-width: 100%;
        text-align: left;
    }

    .hero-line {
        width: 80px;
        margin-bottom: 20px;
    }

    .hero-section h1 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .hero-section p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .achieve-btn {
        padding: 12px 25px;
        font-size: 15px;
    }

    .hero-section-mobile {
        padding: 40px 25px;
        min-height: auto;
        border-radius: 0px 0px 30px 30px;
    }

    .hero-content-mobile {
        max-width: 100%;
        text-align: center;
    }

    .hero-line-mobile {
        margin-bottom: 20px;
        justify-self: center;
    }

    .hero-section-mobile h1 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .hero-section-mobile p {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .achieve-btn-mobile {
        padding: 12px 25px;
        font-size: 15px;
    }

    .sidebar {
        gap: 20px;
    }

    .services-card {
        padding: 25px;
    }

    .services-card h3 {
        font-size: 16px;
    }

    .service-slide-title {
        font-size: 24px;
    }

    .service-slide-desc {
        font-size: 13px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-card h3 {
        font-size: 20px;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }

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

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

    .features-bar {
        flex-direction: column;
        gap: 20px;
        padding: 25px 15px;
    }

    .feature-divider {
        display: none;
    }

    .services-title {
        font-size: 32px;
    }

    .services-intro {
        font-size: 15px;
    }

    .service-card {
        min-width: 100%;
        scroll-snap-align: start;
    }

    .services-carousel-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .services-grid {
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .services-grid::-webkit-scrollbar {
        display: none;
    }

    .service-card {
        scroll-snap-align: start;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .carousel-controls {
        display: none;
    }

    .gallery-item img {
        width: 200px;
        height: 150px;
    }
    
    /* Why us */
    .main-heading {
        font-size: 2rem;
    }
    
    .card-title-custom {
        font-size: 1.5rem;
    }
    
    .why-us-section {
        padding: 50px 0;
    }

    /* Experience */
    /* .logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 20px;
    }

    .logo-item {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40%;
        height: 40px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    } */

    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 15px;
        padding: 10px 0;
    }

    .logo-item {
        height: 70px;
    }

    .logo-item svg {
        width: 100%;
        max-height: 60px;
    }

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

    .section-description {
        font-size: 1rem;
    }

    .section-label {
        color: var(--primary-orange);
        font-weight: 700;
        font-size: 0.875rem;
        letter-spacing: 2px;
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
        justify-content: center;
    }

    .milestone-section {
        padding: 20px 0;
    }

    .milestone-section-title {
        margin: 2rem 0;
        font-size: 1.5rem;
    }

    .milestone-section-description {
        font-size: 14px;
    }

    .profile-badge-title {
        font-size: 14px;
    }

    .profile-badge-default {
        font-size: 12px;
    }

    /* .section-label::after {
        display: none;
    } */

    .experience-section {
        padding: 60px 0;
    }

    .cta-section {
        padding: 60px 0 0;
    }

    .cta-section .container {
       display: contents;
    }

    .contact-cta-section {
        padding: 40px 30px 0;
        border-radius: unset;
        margin-bottom: 0px;
    }

    .contact-cta-section-asd {
        padding: 40px 30px;
        border-radius: 0px;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
        text-align: center;
    }

    .hero-about {
        padding: 100px 0 60px;
    }

    .key-facts-title,
    .vision-title,
    .mission-title,
    .values-title,
    .goal-title {
        font-size: 2rem;
    }

    .goal-quote {
        font-size: 1.2rem;
    }

    .key-facts-section .facts-wrapper,
    .key-facts-section .facts-box,
    .key-facts-section .facts-item {
        padding: 20px;
    }

    .contact-hero-title {
        font-size: 1.75rem;
    }

    .timeline-icon {
        width: 50px;
        height: 50px;
    }
    
    .timeline-content-right {
        position: absolute;
        left: 50%;
        top: 0;
        margin-left: 50px;
        width: 128px;
    }

    .timeline-content-left {
        position: absolute;
        right: 50%;
        top: 0;
        margin-right: 50px;
        width: 128px;
        text-align: right;
    }

    .timeline-year {
        font-size: 1rem;
    }

    .timeline-description {
        font-size: 0.65rem;
    }

    .project-section-title {
        font-size: 1.5rem;
    }

    .footer-logo-section {
        margin-top: 30px;
    }

    .footer-main {
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    /* Experience */
    /* .logo-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    } */
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 28px;
    }

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

    .who-title {
        font-size: 24px;
    }

    .services-title {
        font-size: 26px;
    }

    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px 10px;
    }

    .logo-item {
        height: 60px;
    }

    .logo-item svg {
        width: 60%;
        max-height: 45px;
    }
}