:root {
    /* Colors (from Elementor post-6.css) */
    --e-global-color-primary: #D9B066;
    --e-global-color-secondary: #1168B3;
    --e-global-color-text: #232323;
    --e-global-color-accent: #F8F8F8;
    --e-global-color-9cceaf9: #FFFFFF;
    --e-global-color-675aabf: #DBB06680;
    --e-global-color-86988cf: #1869B480;
    --e-global-color-b851911: #1D4078;

    /* Background Overlay */
    --overlay-dark-blue: #132E58;

    /* Legacy support */
    --color-primary: #D9B066;
    --color-secondary: #1168B3;
    --color-text: #232323;
    --color-accent: #F8F8F8;
    --color-white-bg: #FFFFFF;
}

*:focus {
    outline: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--e-global-color-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

section {
    scroll-margin-top: 50px;
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    padding-left: 30px;
    padding-right: 30px;
    margin: 0 auto;
}

.hero {
    font-family: 'Poppins', sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.3em;
    color: var(--e-global-color-text);
    margin-block-end: 0;
}

h1 {
    font-family: 'Poppins',
        sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3em;
    color: var(--e-global-color-text);
    margin-block-end: 0;
}

h2 {
    font-family: 'Poppins',
        sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3em;
    color: var(--e-global-color-text);
    margin-block-end: 0;
}

h3 {
    font-family: 'Poppins',
        sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3em;
    color: var(--e-global-color-text);
    margin-block-end: 0;
}

h4 {
    font-family: "Roboto",
        sans-serif;
    line-height: normal;
    font-size: 13px;
    font-weight: 400;
    margin-block-end: 0;
    line-height: 1.3em;
}

p {
    font-family: "Roboto",
        sans-serif;
    line-height: normal;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4em;
    margin-block-end: 14.4px;
}

.row {
    gap: 20px;
    flex-direction: row;
}

/* Fade In Up Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-30px, 0, 0);
        -webkit-transform: translate3d(-30px, 0, 0);
        -moz-transform: translate3d(-30px, 0, 0);
        -ms-transform: translate3d(-30px, 0, 0);
        -o-transform: translate3d(-30px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(30px, 0, 0);
        -webkit-transform: translate3d(30px, 0, 0);
        -moz-transform: translate3d(30px, 0, 0);
        -ms-transform: translate3d(30px, 0, 0);
        -o-transform: translate3d(30px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll-triggered Animation Base Styles */
.animated {
    opacity: 0;
    animation-duration: 1.25s;
    animation-fill-mode: both;
}

/* Initial states for different animation types */
.animated.fadeIn {
    opacity: 0;
}

.animated.fadeInUp {
    transform: translateY(60px);
    -webkit-transform: translateY(60px);
    -moz-transform: translateY(60px);
    -ms-transform: translateY(60px);
    -o-transform: translateY(60px);
}

.animated.fadeInLeft {
    transform: translate3d(-100%, 0, 0);
    -webkit-transform: translate3d(-100%, 0, 0);
    -moz-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    -o-transform: translate3d(-100%, 0, 0);
}

.animated.fadeInRight {
    transform: translate3d(100%, 0, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    -moz-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    -o-transform: translate3d(100%, 0, 0);
}

/* Animation trigger class - applied when element is in viewport */
.animated.animate-in {
    opacity: 1;
}

.animated.animate-in.fadeIn {
    animation-name: fadeIn;
}

.animated.animate-in.fadeInUp {
    animation-name: fadeInUp;
    transform: translateY(0);
}

.animated.animate-in.fadeInLeft {
    animation-name: fadeInLeft;
    transform: translate3d(-100%, 0, 0);
    -webkit-transform: translate3d(-100%, 0, 0);
    -moz-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    -o-transform: translate3d(-100%, 0, 0);
}

.animated.animate-in.fadeInRight {
    animation-name: fadeInRight;
    transform: translate3d(100%, 0, 0);
    -webkit-transform: translate3d(100%, 0, 0);
    -moz-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    -o-transform: translate3d(100%, 0, 0);
}

.animation-delay-100 {
    animation-delay: 0.2s;
}

.animation-delay-200 {
    animation-delay: 0.4s;
}

.animation-delay-400 {
    animation-delay: 0.6s;
}

.animation-delay-600 {
    animation-delay: 0.8s;
}

.animation-delay-800 {
    animation-delay: 1s;
}

.animation-delay-1000 {
    animation-delay: 1.2s;
}

.animation-delay-1200 {
    animation-delay: 1.4s;
}

.animation-delay-1400 {
    animation-delay: 1.6s;
}

.animation-delay-1600 {
    animation-delay: 1.8s;
}

.animation-delay-1800 {
    animation-delay: 2s;
}

.animation-delay-2000 {
    animation-delay: 2.2s;
}

.animation-delay-2200 {
    animation-delay: 2.4s;
}

.animation-delay-2400 {
    animation-delay: 2.6s;
}

.btn-outline-main {
    display: inline-block;
    padding: 10px 30px;
    background-color: transparent;
    border: 1px solid var(--e-global-color-primary);
    color: var(--e-global-color-text);
    text-decoration: none;
    font-family: 'Poppins',
        sans-serif;
    font-size: 14px;
    font-weight: 400;
    border-radius: 100px;
    transition: all 0.3s ease;
    line-height: 19.6px;
}

.btn-outline-main:hover {
    background-color: var(--e-global-color-primary);
    color: white;
}


/* ===== 5. NAVBAR STYLES (Based on post-10.css) ===== */
.main-navbar {
    background-color: var(--e-global-color-9cceaf9) !important;
    box-shadow: 0px 10px 30px 10px rgba(0, 0, 0, 0.05);
    z-index: 1030;
    padding: 0;
    border-style: none;
}

.main-navbar .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-shrink: 1;
}

.navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
}

.logo-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 20px;
    padding: 10px 0;
    width: 16.77%;
    height: 81px;
}

.navbar-brand .logo-img {
    width: 160px;
    max-width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.navbar-brand .second-logo-img {
    width: 160px;
    max-width: 100%;
    height: auto;
    transition: transform 0.3s;
}

/* Navbar Toggler */
.navbar-toggler {
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(217, 176, 102, 0.25);
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23DAB065' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.custom-toggler {
    border: none;
    background: none;
    padding: 0;
}

.hamburger {
    position: relative;
    display: block;
    width: 36px;
    height: 10px;
}

.hamburger::before,
.hamburger::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #c9a24a;
    border-radius: 2px;

    transition:
        transform .45s cubic-bezier(.4, 0, .2, 1),
        top .45s cubic-bezier(.4, 0, .2, 1),
        bottom .45s cubic-bezier(.4, 0, .2, 1),
        opacity .3s ease;
}

.hamburger::before {
    top: 0;
}

.hamburger::after {
    bottom: 0;
}



.navbar-toggler {
    border: none;
    padding: 7px;
    border-radius: 4px;
    transition: background-color 0.3s;
}


.dropdown-toggle::after {
    display: none;
}

/* Navigation Menu - 70% width on desktop */
.navbar-menu {
    flex: 1;
    justify-content: center;
}

.main-navbar .navbar-nav {
    font-family: 'Poppins', sans-serif;
}

.main-navbar .nav-link {
    color: var(--e-global-color-text) !important;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    padding: 30px 13px !important;
    text-decoration: none;
    transition: color 0.3s, background-color 0.3s;
    border: none;
    position: relative;
    display: flex;
    align-items: center;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active,
.main-navbar .nav-link:focus {
    color: var(--e-global-color-primary) !important;
    background-color: transparent;
}

/* Dropdown Toggle */
.nav-link .fas {
    margin-left: 7px;
    font-size: 11px;
    margin-top: -2px;
}

/* Products Chevron Animation */
.products-chevron {
    display: inline-block;

}

.main-navbar .nav-link:hover .dropdown-toggle::after,
.main-navbar .nav-link.active .dropdown-toggle::after {
    border-top-color: var(--e-global-color-primary);
}

/* ===== 6. MEGA MENU DROPDOWN ===== */
.dropdown-mega-menu {
    background-color: var(--e-global-color-accent) !important;
    border: 1px solid #E8E8E8 !important;
    border-radius: 0;
    padding: 0 30px !important;
    margin-top: 0 !important;
    box-shadow: 0px 10px 30px 10px rgba(0, 0, 0, 0.05);
    position: absolute !important;
    opacity: 0;
    transform: translateY(-15px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.4s;
    pointer-events: none;
    visibility: hidden;
    display: block !important;
    top: 81px;
    left: 0;
    width: 100%;
}

.dropdown-mega-menu img {
    aspect-ratio: auto 1920 / 800;
}

.dropdown-mega-menu.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
}

.mega-menu-container {
    padding-top: 30px;
    padding-bottom: 10px;
    max-width: 1440px;
    margin: 0 auto;
}

.mega-menu-grid {
    gap: 30px;
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    justify-content: center;
    gap: 30px;
    grid-template-columns: repeat(6, 1fr);
    justify-items: center;
}

.mega-menu-col {
    padding: 0;
    width: 100%;
}

.mega-menu-grid.space-evenly {
    gap: 60px;
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    justify-content: center;
    gap: 60px;
    grid-template-columns: repeat(2, 340px);
    justify-content: space-evenly;
}





.mega-menu-item {
    text-align: center;
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.mega-menu-item:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-5px);
}

.mega-menu-image {
    margin-bottom: 15px;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mega-menu-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    object-fit: cover;
    height: 100px;
}

.mega-menu-item:hover .mega-menu-image img {
    transform: scale(1.08);
}

.mega-menu-title {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--e-global-color-text);
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    margin-bottom: 16px;
}

.mega-menu-item:hover .mega-menu-title {
    color: var(--e-global-color-primary) !important;
}

/* Phone Button - 15% width on desktop */
.navbar-phone {
    padding: 10px 0;
    width: 16.77%;
    text-align: right !important;
    min-width: fit-content;
}

.btn-phone {
    background-color: transparent;
    border: 1px solid var(--e-global-color-primary);
    color: var(--e-global-color-text);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4em;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.btn-phone svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: fill 0.3s;
}

.btn-phone:hover,
.btn-phone:focus {
    background-color: var(--e-global-color-primary);
    border-color: var(--e-global-color-primary);
    color: var(--e-global-color-9cceaf9);
}

.btn-phone:hover svg,
.btn-phone:focus svg {
    fill: var(--e-global-color-9cceaf9);
}

/* Mobile Toggle Button */
.custom-toggler {
    border: none;
    padding: 0;
    width: 50px;
    height: 40px;
    position: relative;
    background: transparent;
    border-width: 0px;
}

.custom-toggler:focus {
    box-shadow: none;
    outline: none;
}

.custom-toggler span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--e-global-color-primary);
    margin-bottom: 6px;
    transition: all 0.3s;
}

.custom-toggler span:last-child {
    margin-bottom: 0;
}

.custom-toggler:hover span {
    background-color: var(--e-global-color-675aabf);
}

/* Mobile / Tablet */


/* ===== DESKTOP: Mega menu full 1 layar (100vw) ===== */



.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: start;
    justify-content: center;
    overflow: hidden;
}

/* Hero Background Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slideshow .swiper {
    width: 100%;
    height: 100%;
}

.hero-slideshow .swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-slideshow__slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slideshow__slide__image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay-dark-blue);
    opacity: 0.8;
    z-index: 1;
}

.hero-section .container {
    max-width: 100%;
    padding: 0;
    z-index: 2;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    flex-direction: column;
    height: 100vh;
}

.hero-section .in-container {
    max-width: 1440px;
}

/* Hero Content */
.hero-content {
    column-gap: 20px;
    row-gap: 20px;
    display: flex;
    flex-basis: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    padding-top: 81px;
    height: 100%;
    width: 1140px;

}

/* Hero Content Typography */

.hero-content h1 {
    font-family: 'Poppins', Sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.3em;
    color: var(--e-global-color-9cceaf9);
    margin-bottom: 20px;
}

.hero-content h2 {
    font-family: 'Poppins', Sans-serif;
    color: var(--e-global-color-primary);
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
}

.hero-content p {
    color: var(--e-global-color-9cceaf9);
    margin-bottom: 54px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4em;
    font-size: 15px;
    font-weight: 400;
    font-family: "Roboto",
        sans-serif;
    margin-block-end: 14.4px;
}

.hero-button {
    display: inline-block;
    padding: 10px 50px;
    background-color: transparent;
    border: 1px solid var(--e-global-color-primary);
    color: white;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    border-radius: 100px;
    transition: all 0.3s ease;
    line-height: 19.6px;
}

.hero-button:hover {
    background-color: var(--e-global-color-primary);
    color: white;
    text-decoration: none;
}

.about-section {
    padding: 100px 30px;
    padding-bottom: 0;
    position: relative;
}

.about-section .container {
    gap: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
}


#about .about-content {
    width: 60%;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 100px;
}

.about-section p {
    line-height: 1.4em;
}

#about .about-images {
    width: 40%;
    padding: 0;
}

#about .about-logos {
    gap: 20px;
}

.about-divider {
    margin-bottom: 20px;
}

.elementor-divider {
    display: flex;
    align-items: center;
    width: 100%;
}

.elementor-divider-separator {
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--e-global-color-primary);
    border: none;
}

.about-logo-item.about-logo-item-last {
    margin-left: 20px;
}

/* ===== 13. STATISTICS SECTION (Image Accordion) ===== */
.statistics-section {
    background-color: var(--e-global-color-accent);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.statistics-section .container {
    padding: 0 30px;
    margin-bottom: 60px;
}

.statistics-divider {
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

/* Image Accordion Styles (Based on eael-7.css) */
.eael-img-accordion {

    display: flex;
    height: 400px;
    overflow: hidden;
}

.eael-img-accordion.accordion-direction-horizontal {
    flex-direction: row;
}

.eael-image-accordion-hover {
    position: relative;
    flex: 1;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: flex 0.4s ease;
    overflow: hidden;
    cursor: pointer;
}

.eael-img-accordion .eael-image-accordion-hover:hover {
    flex: 3 !important;
}

.eael-img-accordion .overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: background-color 0.4s;
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0);
}

.eael-img-accordion-horizontal-align-center .overlay {
    justify-content: center;
    text-align: center;
}

.eael-img-accordion-vertical-align-center .overlay {
    align-items: center;
}

.eael-img-accordion .overlay .overlay-inner {
    z-index: 1;
}

.eael-img-accordion .eael-image-accordion-hover::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    transition: all 0.3s ease-in-out;
    background-color: rgba(0, 0, 0, 0.3);
}

.eael-img-accordion .eael-image-accordion-hover:hover::before {
    background-color: #132E58D9;
}

.eael-img-accordion .overlay-inner * {
    visibility: hidden;
    opacity: 0;
    transform-style: preserve-3d;
}

.eael-img-accordion .overlay h2 {
    color: var(--e-global-color-primary);
    transform: translate3d(0, -60px, 0);
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 10px;
}

.eael-img-accordion .overlay p {
    color: #fff;
    margin-bottom: 0;
    transform: translate3d(0, 60px, 0);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
}

.eael-img-accordion .eael-image-accordion-hover:hover .overlay-inner * {
    opacity: 1;
    visibility: visible;
    transform: none !important;
    transition: all 0.3s 0.3s;
}

/* ===== 12. AWARDS SECTION (Swiper Slider) ===== */
.awards-section {
    background-color: #F8F8F8;
    padding: 100px 0;
}

.awards-section .container {
    padding: 0;
    max-width: 1140px;
}

.awward-content {
    margin-bottom: 10px;
}

.awards-section h2 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.awards-divider {
    margin: 10px 0 60px 0;
    display: flex;
    justify-content: center;
}

/* Awards Swiper wrapper – provides room for the outside arrows */


/* Awards Swiper */
.awards-swiper {
    padding: 10px 0 10px;
    position: relative;
    overflow: hidden;
}

.awards-swiper .swiper-slide {
    height: auto;
}

.awards-swiper-wrapper {
    position: relative;
    overflow: visible;
}

/* Individual award card */
.award-item {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: default;
}

/* Circular image container */
.award-image {
    margin-bottom: 5px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}



.award-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4em;
    color: var(--e-global-color-primary);
    margin-bottom: 10px;
}

.award-description {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4em;
    color: #232323;
    margin: 0;
}

/* Awards Swiper Navigation — circular, flanking the slider */
.awards-swiper-wrapper .swiper-button-next,
.awards-swiper-wrapper .swiper-button-prev .awards-swiper-wrapper .swiper-button-next,
.awards-swiper-wrapper .swiper-button-prev {
    color: #000000;
    width: 40px;
    height: 40px;
    background-color: #2323231A;
    /* border: 1px solid #ddd; */
    border-radius: 50%;
    transition: all 0.3s ease;
    top: calc(50% - 5px);
}

.awards-swiper-wrapper .swiper-button-next {
    right: -60px;
}

.awards-swiper-wrapper .swiper-button-prev {
    left: -60px;
}

.awards-swiper-wrapper .swiper-button-next:hover,
.awards-swiper-wrapper .swiper-button-prev:hover {
    background-color: var(--e-global-color-primary);
    border-color: var(--e-global-color-primary);
    color: #ffffff;
}

.awards-swiper-wrapper .swiper-button-next::after,
.awards-swiper-wrapper .swiper-button-prev::after {
    font-size: 13px;
    font-weight: 700;
}

/* Awards Swiper Pagination */
.awards-swiper .swiper-pagination {
    position: relative;
    margin-top: 30px;
    bottom: 0;
    text-align: center;
}

.awards-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #2323231A;
    opacity: 1;
    transition: all 0.3s ease;
}

.awards-swiper .swiper-pagination-bullet-active {
    background-color: var(--e-global-color-primary);
}


/* ===== 13. TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 100px 30px;
}

.testimonials-section .container {
    padding: 0;
}

.testimonials-divider {
    margin-top: 20px;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

/* Testimonials Swiper */
.testimonials-swiper {
    padding: 40px 0 60px;
    position: relative;
}

.testimonial-item {
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Triangle Indicator - removed as it's not needed with current design */

.testimonial-content-wrap {
    margin-bottom: 30px;
    position: relative;
}

.testimonial-content-inner {
    background-color: #F8F8F8;
    padding: 30px 30px 30px 30px;
    border-style: none;
    border-radius: 10px 10px 10px 10px;
}

.testimonial-content-inner:before {
    border-top-color: #F8F8F8;
}

.testimonial-content-inner:before {
    right: calc(50% - 15px);
}

.testimonial-content-inner:before {
    bottom: -15px;
}

.testimonial-content-inner:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top-style: solid;
    border-top-width: 15px;
}


.testimonial-icon {
    color: var(--e-global-color-primary);
    font-size: 35px;
    text-align: center;
    line-height: 1.4em;
    margin-bottom: 10px;
}

.testimonial-content {
    color: var(--e-global-color-text);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6em;
    text-align: center;
    margin: 0;
}

.testimonial-content p {
    margin: 0;
}

.testimonial-meta {
    margin-top: auto;
}

.testimonial-meta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-image {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    margin-bottom: 15px;
    overflow: hidden;
}

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

.testimonial-meta-content-wrap {
    text-align: center;
}

.testimonial-name {
    color: var(--e-global-color-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4em;
}

.testimonial-job {
    font-size: 13px;
    font-weight: 400;
    line-height: 18.2px;
    color: var(--e-global-color-text);
}

/* Swiper Navigation */
.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
    color: var(--e-global-color-primary);
    width: 50px;
    height: 50px;
    background-color: var(--e-global-color-9cceaf9);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
    background-color: var(--e-global-color-primary);
    color: var(--e-global-color-9cceaf9);
    transform: scale(1.1);
}

.testimonials-swiper .swiper-button-next::after,
.testimonials-swiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}

/* Swiper Pagination */
.testimonials-swiper .swiper-pagination {
    position: relative;
    margin-top: 30px;
    bottom: 0;
}

.testimonials-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: var(--e-global-color-675aabf);
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonials-swiper .swiper-pagination-bullet-active {
    background-color: var(--e-global-color-primary);
}

/* ===== 14. ADVANTAGES SECTION (4 Kolom Grid) ===== */
.advantages-section {
    background-color: var(--e-global-color-accent);
    padding: 0;
    position: relative;
    background-image: url('../images/Industropolis-Batang-Background-Kawasan-Industri-01.jpg');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: fixed;
}

.advantages-section .row {
    gap: 0;
}

.col-advantages {
    width: 55%;
    background-color: var(--e-global-color-accent);
}

.advantage-item {
    padding: 30px 30px;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #E0E0E0;
}



.advantage-image {
    margin-bottom: 25px;
    width: 100%;
    max-width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.advantage-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3em;
    color: var(--e-global-color-text);
    margin-bottom: 15px;
}

.advantage-description {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--e-global-color-text);
    margin: 0;
}

.advantage-icon {
    max-width: 70px;
    height: auto;
    margin-bottom: 15px;
}

/* ===== 15. MASTER PLAN SECTION ===== */
.masterplan-section {
    background-color: var(--e-global-color-accent);
    padding: 100px 30px;
    overflow: hidden;
}

.masterplan-divider {
    margin: 20px 0;
}

.masterplan-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3em;
    color: var(--e-global-color-text);
    margin-bottom: 0;
}

.masterplan-section p {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6em;
    color: var(--e-global-color-text);
    margin-bottom: 30px;
}

.masterplan-button {
    display: inline-block;
    padding: 10px 30px;
    background-color: transparent;
    border: 1px solid var(--e-global-color-primary);
    color: #232323 !important;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    border-radius: 100px;
    transition: all 0.3s ease;
}

.masterplan-button:hover {
    background-color: var(--e-global-color-primary);
    color: white;
    text-decoration: none;
}

.button-content-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.button-icon {
    display: flex;
    align-items: center;
}

.button-icon i {
    font-size: 16px;
}

.masterplan-video-wrapper {
    position: relative;
    overflow: display;
}

.masterplan-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.masterplan-video-border {
    position: absolute;

    right: -20px;
    bottom: -20px;
    border: 5px solid var(--e-global-color-primary);
    pointer-events: none;
    z-index: -2;
    width: 100%;
    height: 100%;
}

#masterplan .d-flex {
    gap: 40px;
    justify-content: space-between;
}

.col-content {
    flex: 0 0 45%;
}

.col-video {
    flex: 0 0 50%;
}

/* ===== 16. WELCOME VIDEO BACKGROUND SECTION ===== */
.welcome-video-section {
    position: relative;
    width: 100%;
    height: 720px;
    overflow: hidden;
    background-color: #132E58;

}

.welcome-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.welcome-video-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;


}

.welcome-video-embed {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* 16:9 aspect ratio */
    min-height: 100%;
    min-width: 177.77vh;
    /* 16:9 aspect ratio */
    transform: translate(-50%, -50%);
    z-index: 1;
}

.welcome-video-overlay {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 80px 30px;
    background-color: #132E58D9;
    padding: 0 30px;
}

.welcome-video-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3em;
    color: #ffffff;
}

.welcome-video-play-icon a:hover {
    opacity: 0.8;
    -webkit-opacity: 0.8;
    -moz-opacity: 0.8;
    -ms-opacity: 0.8;
    -o-opacity: 0.8;
}

.welcome-play-button {
    display: inline-block;
    width: 100px;
    height: 100px;
    color: var(--e-global-color-primary);
    transition: all 0.3s ease;
    text-decoration: none;
}



.play-icon-svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.welcome-video-text {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4em;
    color: #ffffff;
    text-align: right;
    margin: 0;
}

.welcome-video-section .row {
    gap: 20px;
    margin: 0;
}


/* ===== 17. NEWS SECTION (Grid) ===== */
.news-section {
    padding: 100px 30px;
    overflow: hidden;
}

.news-divider {
    margin-top: 20px;
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
}

/* News Card */
.news-card {
    border: none;
    border-radius: 0;
    height: 100%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.news-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.3s;
}

.news-card:hover .news-card-overlay {
    opacity: 1;
}

/* News Filters */
.news-filters-wrapper {
    margin-bottom: 40px;
}

.news-filters {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-card-info {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
}


.news-filter-sep {
    color: #ccc;
    font-style: normal;
}

/* News Card Wrapper */
.news-card-img-wrapper {
    cursor: pointer;
    margin-bottom: 15px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.news-card-img {
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
}



/* News Card Body */
.news-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card-body a:hover {
    color: var(--e-global-color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3em;
    color: #333333;
    margin-bottom: 10px;
}

.news-card-title a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-card-date,
.news-card-category {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4em;
    color: #8F8F8F;
    display: flex;
    gap: 5px;
}



.news-card-category a {
    color: #8F8F8F;
    text-decoration: none;
    transition: color 0.3s ease;
}


.news-read-more {
    margin-top: auto;
    padding-top: 15px;
}

.read-more-link {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4em;
    color: #232323;
    text-decoration: none;
    border-bottom: 2px solid #DAB065;
    transition: color 0.3s ease;
    display: inline-block;
}

#news .row {
    gap: 30px;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background-color: var(--e-global-color-secondary);
    background-image: url('../images/kitb-background-cta.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 60px 30px;
    position: relative;
    color: var(--e-global-color-9cceaf9);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay-dark-blue);
    opacity: 0.85;
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: #DAB065;
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3em;
    margin-bottom: 20px;
}

.cta-section p {
    color: var(--e-global-color-9cceaf9);
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4em;
    margin-block-end: .9rem;
}

.cta-button {
    display: inline-block;
    padding: 10px 30px;
    background-color: transparent;
    border: 1px solid #DAB065;
    color: var(--e-global-color-9cceaf9);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    border-radius: 100px;
    transition: all 0.3s ease;
    line-height: 1.4em;
}

.cta-button:hover {
    background-color: var(--e-global-color-primary);
    color: var(--e-global-color-9cceaf9);
    border-color: var(--e-global-color-primary);
    text-decoration: none;
}

.cta-button .button-content-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}


/* ===== FOOTER STYLES ===== */
.footer-section {
    background-color: var(--e-global-color-text);
    padding: 100px 30px;
    overflow: hidden;
}

.footer-section .row {
    gap: 30px;
}


.footer-logo img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.footer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4em;
    color: var(--e-global-color-primary);
    margin-bottom: 10px;
}

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

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

.footer-menu a {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4em;
    color: var(--e-global-color-9cceaf9);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.footer-menu a:hover,
.footer-menu a.active {
    color: var(--e-global-color-primary);
}

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

.footer-icon-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.footer-icon-list-icon {
    color: var(--e-global-color-primary);
    font-size: 16px;
    flex-shrink: 0;
}

.footer-icon-list-text {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4em;
    color: var(--e-global-color-9cceaf9);
    flex: 1;
}

.footer-icon-list-text a {
    color: var(--e-global-color-9cceaf9);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-social-icon:hover i {
    color: var(--e-global-color-primary);
}

.footer-social-icons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.footer-social-icon {
    color: var(--e-global-color-9cceaf9);
    font-size: 16px;
    transition: color 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    transition: all 0.3s;
}

.footer-copyright {
    background-color: var(--e-global-color-text);
    border-top: 1px solid #444444;
    padding: 30px 100px;
}

.footer-copyright p {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4em;
    color: #949494;
    margin: 0;
}

/* ===== ABOUT PAGE STYLES ===== */
/* Breadcrumbs */
.page-header {
    margin-top: 81px;
    background-color: var(--e-global-color-accent);
    padding: 60px 30px;
    background-image: url(https://adtech-id.com/wp-content/uploads/2025/11/Industropolis-Batang-Background-Hero-01.jpg);
    background-position: center center;
    background-size: cover;
    position: relative;
}

.page-header .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #132E58D9;
}


.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--e-global-color-primary);
    padding: 0 10px;
}


.breadcrumb-item a {
    color: var(--e-global-color-primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5em;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.breadcrumb-item.active {
    color: var(--e-global-color-primary);
    padding: 0;
}

.page-header nav {
    margin-bottom: 20px;
    position: relative;
}

.page-title-section {
    position: relative;
    z-index: 2;
}

.page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.page-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: #ffffff;
    margin: 0;
    margin-bottom: 14px;
}

/* About Intro */
.about-intro-section {
    padding: 100px 30px;
}

.about-intro-section .row {
    gap: 40px;
}

.about-intro-section h2 {
    margin-bottom: 20px;
}

.about-image-wrapper {
    height: 100%;
}

.about-image-wrapper img {
    border-radius: 10px;
    height: 100%;
    object-fit: cover;
}

.about-text {
    margin-top: 40px;
}



/* Vision Mission */
.vision-mission-section {
    background-color: var(--e-global-color-accent);
    padding: 100px 30px;
}

.vision-mission-section .row {
    gap: 60px;
}

.vision-mission-card {
    background-color: var(--e-global-color-primary);
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    text-align: center;
    color: #232323;
    border: 1px solid #D9B066;
}

.vision-mission-icon {
    width: 32px;
    height: 32px;
    margin: auto;
    margin-bottom: 17px;
}

.vision-mission-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.vision-mission-card h2 {
    margin-bottom: 20px;
}

.vision-mission-card ul {
    text-align: left;
    padding-left: 40px;
}

.vision-mission-card ul li {
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4em;
    color: #232323;
}

/* Milestones Timeline - Elementor Style */
.milestones-section {
    padding: 100px 30px;
    background-color: #F8F8F8;
}

.milestones-section h2 {
    margin-bottom: 20px;
}

.milestones-section .section-title p {
    width: 65%;
    text-align: center;
    margin: 54px auto 0 auto;
}

.milestones-section .section-title {
    margin-bottom: 54px;
}

.akhlak-section {
    padding: 100px 30px;

}

.akhlak-section h2 {
    margin-bottom: 20px;
}

.akhlak-section .section-title p {
    width: 65%;
    text-align: center;
    margin: 54px auto 0 auto;
}

.akhlak-section .section-title {
    margin-bottom: 54px;
}

.wpr-wrapper {
    position: relative;
    margin-top: 60px;
}

.wpr-timeline-centered {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
}

/* Middle Line (Vertical Line) */
.wpr-middle-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    background-color: #E0E0E0;
    transform: translateX(-50%);
    z-index: 1;
}

/* Timeline Fill (Animated on scroll) */
.wpr-timeline-fill {
    position: absolute;
    left: 50%;
    top: 0;
    width: 3px;
    background-color: var(--e-global-color-primary);
    transform: translateX(-50%);
    z-index: 2;
    /* penting: jangan pakai transition height kalau mau follow scroll naik-turun */
    transition: none;
    will-change: height;
}

/* Timeline Entry */
.wpr-timeline-entry {
    position: relative;
    margin-bottom: 100px;
    display: flex;
    align-items: flex-start;
    min-height: 200px;
    z-index: 5;
}

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

/* Left Aligned */
.wpr-left-aligned {
    flex-direction: row;
    justify-content: flex-start;
}

.wpr-left-aligned .wpr-extra-label {
    position: absolute;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.4em;
    left: 48px;
    margin-left: 38px;
}

.wpr-left-aligned .wpr-timeline-entry-inner {
    flex: 0 0 50%;
    margin-right: auto;
    position: relative;
}

.wpr-left-aligned .wpr-data-wrap {
    margin-right: 40px;
}

.wpr-left-aligned .wpr-timeline-info {
    position: absolute;
    top: calc(30% - 10px);
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.wpr-left-aligned .wpr-main-line-icon {
    position: relative;
    right: -45px;
    top: calc(30% - 10px);
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border: 2px solid var(--e-global-color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    z-index: 4;
    color: var(--e-global-color-primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Right Aligned */
.wpr-right-aligned {
    flex-direction: row;
    justify-content: flex-end;
}

.wpr-right-aligned .wpr-extra-label {
    position: absolute;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.4em;
    right: 48px;
    margin-right: 38px;
}

.wpr-right-aligned .wpr-timeline-entry-inner {
    flex: 0 0 50%;
    position: relative;
}

.wpr-right-aligned .wpr-data-wrap {
    margin-left: 40px;
}

.wpr-right-aligned .wpr-timeline-info {
    position: absolute;
    top: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.wpr-right-aligned .wpr-main-line-icon {
    position: relative;
    top: 30%;
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border: 2px solid var(--e-global-color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    z-index: 4;
    color: var(--e-global-color-primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s cubic-bezier(.4, 0, .2, 1);

    will-change: background-color,
        color,
        border-color,
        transform;
}


.icon-filled {
    background-color: #D9B066 !important;
    border-color: #D9B066 !important;
    color: #ffffff !important;

    /* subtle feedback */
    transform: translateX(-50%) scale(1.08);
}

/* Year Label */
.wpr-extra-label {
    position: relative;
    z-index: 3;
}

.wpr-label {
    font-family: 'Poppins', sans-serif;
    color: var(--e-global-color-primary);
    display: block;
}

/* Timeline Entry Inner */
.wpr-timeline-entry-inner {
    position: relative;
    z-index: 3;
}

.wpr-timeline-child {
    margin-top: -160px;
}


.wpr-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Story Info Vertical */

.wpr-timeline-media {
    width: 100%;
    overflow: hidden;
}

.wpr-timeline-media img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.wpr-timeline-media:hover img {
    transform: scale(1.05);
}

.wpr-timeline-content-wrapper {
    padding: 36px 20px 34px 20px;
    background-color: #f8f8f8;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.wpr-description {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.4em;
    color: var(--e-global-color-text);
}

.wpr-description p {
    margin: 0;
}

/* Board Members */
.board-section {
    padding: 100px 30px;
}

.board-divider {
    margin-bottom: 60px;
    margin-top: 20px;
}

.board-section .row {
    gap: 20px;
}

.board-member-card {
    text-align: center;

}


.board-member-image img {
    width: 200px;
    max-width: 100%;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    margin-bottom: 14px;
}

.board-member-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4em;
    margin-bottom: 5px;
    color: #DAB065;
}

.board-member-content p {
    font-size: 15px;
    line-height: 1.4em;
    color: #232323;
    margin: 0;
}

.mt-60 {
    margin-top: 60px;
}

/* Partners */
.partners-section {
    padding: 100px 30px;
    background-color: #f8f8f8;
}

.partners-divider {
    margin-top: 20px;
    margin-bottom: 60px;
}

.partners-filter {
    margin-bottom: 20px;
}

.filter-btn {
    background-color: transparent;
    border: 1px solid var(--e-global-color-primary);
    color: var(--e-global-color-text);
    padding: 10px 30px;
    margin: 0 10px;
    border-radius: 100px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--e-global-color-primary);
    color: #ffffff;
}

.partner-logo {
    background-color: #ffffff;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.partners-item {
    width: 16.666666666667%;
    padding: 20px;
    box-sizing: border-box;
}

.partners-item.hidden {
    display: none;
}

/* Section Padding Utility */
.section-padding {
    padding: 100px 30px;
}

/* ===== ABOUT PAGE STYLES ===== */
.utility-section {
    margin-top: 60px;
}

.utility-items-row {
    gap: 0 !important;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
}

.utility-heading {
    margin-bottom: 40px;
}

.utility-item {
    min-height: 300px;
    padding: 20px;
    position: relative;
    display: flex;
    align-items: end;
    overflow: hidden;
    cursor: pointer;
}

.utility-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease-in-out;
    -webkit-transition: transform 0.5s ease-in-out;
    -moz-transition: transform 0.5s ease-in-out;
    -ms-transition: transform 0.5s ease-in-out;
    -o-transition: transform 0.5s ease-in-out;
}

.utility-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0000004D;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
}

.utility-item-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
}

.utility-item-content h3 {
    color: #ffffff;
}

.utility-item:hover .utility-overlay {
    opacity: 0;
}

.utility-item:hover .utility-background {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.utility-item:hover .utility-item-content {
    opacity: 0;
}

.factory-building-section {
    background-color: #F8F8F8;
}

.building-about {
    margin-bottom: 60px;
}

.factory-divider {
    margin-top: 20px;
    margin-bottom: 60px;
}

.factory-building-section .row {
    gap: 40px;
}

.factory-text {
    margin-top: 20px;
}

.factory-image-wrapper img {
    height: 400px;
    border-radius: 10px;
    object-fit: cover;
}

.building-type-section .heading-section {
    margin-bottom: 40px;
}

/* ===== BUILDING TABS STYLES ===== */
.building-tabs-wrapper {
    margin-top: 40px;
}

.building-tabs-wrapper .row {
    gap: 20px;
}

.tab-heading {
    flex: 0 0 auto;

    width: 200px;
}

.building-tabs-nav {
    padding-right: 0;
    gap: 10px;
}

.building-tab-btn {
    background-color: white;
    border: none;
    border-radius: 100px;
    padding: 10px;
    color: #232323;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4em;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

.building-tab-btn:hover {
    background-color: var(--e-global-color-primary, #D9B066);
    color: #ffffff;
}

.building-tab-btn.active {
    background-color: var(--e-global-color-primary, #D9B066);
    color: #ffffff;
}

.building-tab-text {
    display: flex;
    align-items: center;
    justify-content: center;
}


.building-tab-content-inner {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: white;
}

.building-tab-content-inner img {
    border-radius: 10px;
}

/* Building Carousel Styles */
.building-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    max-width: 100%;
}

.building-carousel-swiper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.building-carousel-swiper .swiper-slide {
    width: 100% !important;
    max-width: 100%;
    flex-shrink: 0;
}

.building-carousel-slide-inner {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    line-height: 0;
    overflow: hidden;
}

.building-carousel-slide-inner img {
    width: 100%;
    height: auto;
    max-height: 460px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    max-width: 100%;
}

.building-carousel-swiper .swiper-button-next,
.building-carousel-swiper .swiper-button-prev {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: white;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.building-carousel-wrapper:hover .building-carousel-swiper .swiper-button-next,
.building-carousel-wrapper:hover .building-carousel-swiper .swiper-button-prev {
    opacity: 1;
}

.building-carousel-swiper .swiper-button-next:after,
.building-carousel-swiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.building-carousel-swiper .swiper-button-prev {
    left: 15px;
}

.building-carousel-swiper .swiper-button-next {
    right: 15px;
}

.building-carousel-pagination {
    bottom: 20px !important;
    text-align: center;
}

.building-carousel-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background-color: #F8F8F85C;
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.building-carousel-pagination .swiper-pagination-bullet-active {
    background-color: #ffffff;
}

/* Building Features Grid */
.building-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 30px;
}

.building-feature-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.building-feature-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.building-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.building-feature-content {
    flex: 1;
}

.building-feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #DAB065;
    margin-bottom: 0;
    line-height: 1.3;
}

.building-feature-value {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    color: #232323;
    margin: 0;
    line-height: 1.3;
}

.building-feature-value sup {
    font-size: 12px;
}

.building-tabs-wrapper .col {
    min-width: 0;
}

.tenants-section {
    background-color: var(--e-global-color-9cceaf9);
    padding: 100px 30px;
}

.tenants-content {

    gap: 20px 20px;
    height: 100%;
    margin: 0 auto;
    max-width: 1140px;
    padding-inline-end: 0;
    padding-inline-start: 0;
    width: 100%;

}

.tenants-header {
    margin-bottom: 60px;
}

.tenants-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3em;
    color: var(--e-global-color-text);
    margin-bottom: 20px;
    width: 65%;
    margin-left: auto;
    margin-right: auto;
}

.tenants-divider {
    margin: 20px 0;
}

.tenants-divider .elementor-divider-separator {
    width: 80px;
    height: 3px;
    background-color: var(--e-global-color-primary);
    margin: 0 auto;
}

/* Tenant Card */
.tenant-card {
    background-color: var(--e-global-color-accent);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-sizing: border-box;

}

.tenant-card:hover .tenant-content {
    box-shadow: inset 0 -5px 0 #D9B066;
}

.tenant-image {
    width: 100%;
    height: 230px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.tenant-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;

}

.tenant-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3em;
    color: var(--e-global-color-primary);
    margin-top: 5px;
    margin-bottom: 0;
}

.tenant-description {
    font-family: "Roboto",
        sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.3em;
    color: var(--e-global-color-text);
    margin-top: 10px;
    margin-bottom: 15px;
}



.tenant-content .col-6 {
    padding: 0 10px;
}

.tenant-info-label {
    font-family: "Roboto",
        sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.4em;
    color: var(--e-global-color-text);
    margin-bottom: 5px;
}

.tenant-info-value {
    font-family: "Roboto",
        sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4em;
    color: var(--e-global-color-text);
    display: block;
}

.tenant-card .link-wrapper {
    margin-top: auto;
}

.tenant-card .link-wrapper a {
    margin: 10px auto 0;

    padding: 0 10px 5px;
    border-bottom: 2px solid var(--color-primary);
    color: var(--color-text);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4em;
    display: block;
    width: fit-content;
}

/* Tenants Swiper Navigation */
.tenants-swiper {
    position: relative;
}

.tenants-swiper .swiper-slide {
    height: auto !important;
}

.tenants-carousel-wrapper {
    position: relative;
    overflow: visible;
}

.tenants-section .row {
    overflow: visible;
    gap: 0;
}

.tenants-section .col-12 {
    overflow: visible;
}


.tenants-prev,
.tenants-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(35, 35, 35, 0.1);
    color: #000000;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    display: flex !important;
    align-items: center;
    justify-content: center;
    visibility: visible !important;
    opacity: 1 !important;
}

.tenants-prev i,
.tenants-next i {
    font-size: 14px;
    line-height: 1;
}

.tenants-prev {
    left: -60px;
}

.tenants-next {
    right: -60px;
}

.tenants-prev:hover,
.tenants-next:hover {
    background-color: var(--e-global-color-primary);
    color: #ffffff;
}

.tenants-prev:disabled,
.tenants-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Tenants Pagination */
.tenants-pagination {
    margin-top: 20px;
    text-align: center;
}

.tenants-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: rgba(35, 35, 35, 0.1);
    margin: 0 5px;
    opacity: 1;
}

.tenants-pagination .swiper-pagination-bullet-active {
    background-color: var(--e-global-color-primary);
}

.join-divider {
    margin-top: 20px;
    margin-bottom: 40px;
}

/* ===== JOIN INDUSTROPOLIS FORM STYLES ===== */
.join-industropolis-section {
    overflow-x: hidden;
}

.join-industropolis-section .form-wrapper {
    max-width: 800px;
    margin: auto;
    margin-top: 20px;
}

.join-form .row {
    column-gap: 30px;
}


.join-form .form-group {
    margin-bottom: 20px;
}

.join-form label {
    font-style: normal;
    font-weight: normal;
    margin-bottom: 8px;
    color: var(--e-global-color-text);
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
}

.join-form input[type="text"],
.join-form input[type="email"],
.join-form input[type="tel"],
.join-form input[type="number"],
.join-form input[type="password"],
.join-form input[type="search"],
.join-form input[type="url"],
.join-form input[type="date"],
.join-form select,
.join-form textarea {
    width: 100%;
    padding: 8px 16px;
    background-color: #f8f8f8 !important;
    border: 1px solid #dedede !important;
    border-style: solid !important;
    border-radius: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.4em;
    font-style: normal;
    font-weight: normal;
    color: #232323;
    margin-top: 0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.join-form input[type="text"]:focus,
.join-form input[type="email"]:focus,
.join-form input[type="tel"]:focus,
.join-form input[type="number"]:focus,
.join-form input[type="password"]:focus,
.join-form input[type="search"]:focus,
.join-form input[type="url"]:focus,
.join-form input[type="date"]:focus,
.join-form select:focus,
.join-form textarea:focus {
    outline: none;
    border-color: var(--e-global-color-primary, #D9B066) !important;
    box-shadow: 0 0 0 3px rgba(217, 176, 102, 0.1);
}

.join-form input::placeholder,
.join-form textarea::placeholder {
    color: #232323;
}

.join-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns="http://www.w3.org/2000/svg" width="300" height="300" viewBox="4 6 16 12"%3E%3Cpolyline points="6 9 12 15 18 9" fill="none" stroke="%23000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 0.5em center;
    background-size: 0.65em auto;
    border-radius: 0;
}

.join-form .btn-submit {
    padding: 10px 30px;
    background-color: var(--e-global-color-primary, #D9B066);
    border: none;
    border-style: none;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4em;
    border-radius: 100px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
}

.join-form .btn-submit:hover:not(:disabled) {
    background-color: #c9a056;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(217, 176, 102, 0.3);
}

.join-form .btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.join-form .btn-submit .spinner-border {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

.join-form .invalid-feedback {
    display: none;
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
}

.join-form .is-invalid~.invalid-feedback {
    display: block;
}

.join-form .form-response-message {
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}

.join-form .alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.join-form .alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Conditional Fields */
.uacf7-conditional-field {
    transition: opacity 0.3s ease, max-height 0.3s ease;
}

.uacf7-conditional-field[style*="display: none"] {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}

.uacf7-conditional-field[style*="display: block"] {
    max-height: 200px;
    opacity: 1;
}


.bg-form {
    position: absolute;
    bottom: 0;
    right: 6%;
    z-index: -1;
}

.bg-form img {
    width: 500px;
    max-width: 100%;
}

.tenants-journey-section {
    background-color: #F8F8F8;
    padding: 100px 30px;
    overflow-x: hidden;
}

.tenants-journey-section .tenants-header {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.journey-card {
    background-color: transparent;
    border-style: solid;
    border-width: 5px 5px 5px 5px;
    border-color: #F8F8F8;
    height: 364px;
    display: flex;
    flex-direction: column;
    text-align: center;
    box-sizing: border-box;
}

.journey-bg {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.journey-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #132E58;
    opacity: 0.8;
}

.journey-card {
    position: relative;
    overflow: hidden;
    background-color: transparent;
}

.journey-card .carousel-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: 0.3s;
    z-index: 1;
}

.journey-card .journey-content {
    position: relative;
    z-index: 2;
    padding: 30px 20px 0 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #ffffff;
}

.journey-card .journey-content img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 5px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    color: #DAB065;
}

.journey-card .journey-content h3.step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    line-height: 1.3em;
    font-weight: 600;
    color: #DAB065;
    line-height: 1.3;
}

.journey-card .journey-content .step-description,
.journey-card .journey-content .step-description p {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    line-height: 1.4;
    color: #ffffff;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: start;
}



.journey-card .journey-content .step-description {
    margin-bottom: 15px;
    color: #ffffff;
}

.journey-card .journey-content .step-description ul {
    text-align: left;
    margin-top: 0;
    padding-left: 20px;
    color: #ffffff;
}

.journey-card .journey-content .step-description ul li {
    color: #ffffff;
    margin-bottom: 0;
}

.tenants-next {
    background-color: #2323231A;
    color: var(--color-text);
}

.tenants-prev {
    background-color: #2323231A;
    color: var(--color-text);
}

.tenants-next:hover {
    background-color: #DAB065;
    color: white;
}

.tenants-prev:hover {
    background-color: #DAB065;
    color: white;
}

/* ===== 12. WHY INVEST SECTION ===== */

.why-invest-header {
    margin-bottom: 20px;
}

.why-invest-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3em;
    color: var(--e-global-color-text);
    margin-bottom: 20px;
}

.why-invest-divider {
    margin-bottom: 60px;
}

.why-invest-section p {
    font-family: "Roboto",
        sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4em;
    color: var(--e-global-color-text);
    max-width: 800px;
    margin: 0 auto;
    margin-block-end: 14.4px;
}

/* Benefit Cards */
.benefit-card {

    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background-color: var(--e-global-color-accent);
    transform: translateY(-15px);
    cursor: pointer;
}

.benefit-icon {
    text-align: center;
    margin-bottom: 20px;
}

.benefit-icon img {
    max-width: 70px;
    height: auto;
    width: 100%;
    object-fit: contain;
}

.benefit-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3em;
    color: var(--e-global-color-text);
    margin-bottom: 20px;
    text-align: center;
}

.benefit-description {
    font-family: "Roboto",
        sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4em;
    color: var(--e-global-color-text);
    text-align: center;
    margin: 0;
}

#mengapa .econ-inner {
    padding: 0;
}

#mengapa .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 0;
    margin: 0;
    padding: 0;
}

#mengapa .row.mx-0>.benefit-card {
    width: 380px;
    /* atau flex-basis */
    flex: 0 0 380px;
}

.physical-aspect-section {
    background-color: var(--e-global-color-accent, #F8F8F8);
}

.physical-aspect-section .row {
    gap: 20px;
}

.physical-aspect-header .elementor-divider-separator {
    margin-top: 20px;
}

.physical-aspect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-auto-flow: row;
    gap: 20px;
}

.physical-flip-box {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.physical-flip-box {
    position: relative;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;

    /* fallback biar ga pernah putih */
    background: #0b0f18;
}

.wpr-flip-box {
    position: relative;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.physical-aspect-header {
    margin-bottom: 60px;
}

/* FRONT & BACK */
.wpr-flip-box-front,
.wpr-flip-box-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    will-change: opacity;
    transform: translate3d(0, 0, 0);

    /* hanya opacity yang dianimasikan */
    transition: opacity 900ms cubic-bezier(.16, 1, .3, 1);
}

/* default */
.wpr-flip-box-front {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

.wpr-flip-box-back {
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

/* hover */
.physical-flip-box:hover .wpr-flip-box-front {
    opacity: 0;
    pointer-events: none;
}

.physical-flip-box:hover .wpr-flip-box-back {
    opacity: 1;
    z-index: 3;
    pointer-events: auto;
}

/* OVERLAY */
.wpr-flip-box-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    z-index: 1;

    background-color: rgba(0, 0, 0, 0.30);
    transition: background-color 900ms cubic-bezier(.16, 1, .3, 1);
}

.wpr-flip-box-back .wpr-flip-box-overlay {
    background-color: rgba(19, 46, 88, 0.85);
}

/* CONTENT */
.wpr-flip-box-front .wpr-flip-box-content,
.wpr-flip-box-back .wpr-flip-box-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 20px;
    display: flex;
    text-align: left;
}

.wpr-flip-box-front .wpr-flip-box-content {
    align-items: flex-end;
}

.wpr-flip-box-back .wpr-flip-box-content {
    flex-direction: column;
    justify-content: center;
}

/* TYPOGRAPHY */
.wpr-flip-box-title {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 12px 0;
}

.wpr-flip-box-description ul {
    padding-left: 40px;
    margin: 0;
}

.wpr-flip-box-description li,
.wpr-flip-box-description p {
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

/* ACCESSIBILITY */



.progress-section .elementor-divider-separator {
    margin-top: 20px;
    margin-bottom: 60px;
}

.progress-section {
    padding: 100px 0;
    overflow: hidden;
}

/* ===== VAST AREA SECTION (Nested Tabs) ===== */
.vast-area-section {
    padding: 100px 30px;
    background-color: var(--e-global-color-accent, #F8F8F8);
}

.vast-area-header {
    margin-bottom: 54px;
}

.vast-area-header h2 {
    font-family: var(--e-global-typography-secondary-font-family, 'Poppins'), Sans-serif;
    line-height: 1.3em;
    color: var(--e-global-color-text);
    margin-bottom: 0;
}

.vast-area-header .elementor-divider {
    margin: 20px 0;
}

.vast-area-header .elementor-divider-separator {
    width: 80px;
    height: 3px;
    background-color: var(--e-global-color-primary);
    display: block;
    margin: 0 auto;
}

.vast-area-header p {
    font-family: var(--e-global-typography-text-font-family, 'Roboto'), Sans-serif;
    font-size: var(--e-global-typography-text-font-size, 15px);
    font-weight: var(--e-global-typography-text-font-weight, 400);
    line-height: var(--e-global-typography-text-line-height, 1.4em);
    color: var(--e-global-color-text);
    margin: 40px 0 0;
}

.vast-area-header p strong {
    font-weight: 600;
}

/* Nested Tabs */
.vast-area-tabs {
    margin-top: 40px;
}

.e-n-tabs {
    width: 100%;
}

.e-n-tabs-heading {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.e-n-tab-title {
    background-color: var(--e-global-color-9cceaf9, #F8F8F8);
    border: none;
    border-radius: 100px;
    padding: 10px 30px;
    font-family: var(--e-global-typography-accent-font-family, 'Poppins'), Sans-serif;
    font-size: var(--e-global-typography-accent-font-size, 14px);
    font-weight: var(--e-global-typography-accent-font-weight, 400);
    line-height: var(--e-global-typography-accent-line-height, 1.4em);
    color: var(--e-global-color-text);
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.e-n-tab-title:hover {
    background-color: var(--e-global-color-primary);
    color: #ffffff;
}

.e-n-tab-title[aria-selected="true"] {
    background-color: var(--e-global-color-primary);
    color: #ffffff;
}

.e-n-tabs-content {
    position: relative;
    min-height: 400px;
}

.e-n-tabs-content>div[role="tabpanel"] {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.e-n-tabs-content>div[role="tabpanel"].e-active {
    display: block;
    opacity: 1;
}

.e-n-tabs-content>div[role="tabpanel"].elementor-invisible {
    display: none;
    opacity: 0;
}

/* Cluster Content Grid */
.cluster-content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: start;
    padding: 30px;
    background: white;
    border-radius: 20px;
}

.cluster-content {
    padding: 30px;
    background: white;
    border-radius: 20px;
}

.cluster-info {
    padding: 0;
}

.cluster-size {
    font-family: var(--e-global-typography-1bcb186-font-family, 'Poppins'), Sans-serif;
    font-size: var(--e-global-typography-1bcb186-font-size, 20px);
    font-weight: var(--e-global-typography-1bcb186-font-weight, 600);
    line-height: var(--e-global-typography-1bcb186-line-height, 1.3em);
    color: var(--e-global-color-primary);
    margin-bottom: 0;
}

.cluster-title {
    font-family: var(--e-global-typography-secondary-font-family, 'Poppins'), Sans-serif;
    font-size: var(--e-global-typography-secondary-font-size, 36px);
    font-weight: var(--e-global-typography-secondary-font-weight, 600);
    line-height: var(--e-global-typography-secondary-line-height, 1.3em);
    color: var(--e-global-color-text);
    margin: 0 0 20px;
}

.cluster-subtitle {
    font-family: var(--e-global-typography-text-font-family, 'Roboto'), Sans-serif;
    font-size: var(--e-global-typography-text-font-size, 15px);
    font-weight: var(--e-global-typography-text-font-weight, 400);
    line-height: var(--e-global-typography-text-line-height, 1.4em);
    color: var(--e-global-color-text);
    margin: 0 0 20px;
}

.cluster-image {
    min-height: 400px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 10px;
}

/* Advanced Data Table */
.ea-advanced-data-table-wrap {
    width: 100%;
    overflow-y: auto;
    margin-top: 20px;
}

.ea-advanced-data-table-wrap-inner {
    width: 100%;
    overflow-y: auto;
}

.ea-advanced-data-table {
    width: 100%;
    border-collapse: collapse;
    border-style: solid;
    border-width: 0;
    border-color: #eeeeee;
    margin-bottom: 15px;
}

.ea-advanced-data-table th {
    text-align: left;
    border-style: solid;
    border-width: 1px;
    border-color: #eeeeee;
    background-color: #fbfbfb;
    color: #444444;
    padding: 10px;
    font-family: var(--e-global-typography-accent-font-family, 'Poppins'), Sans-serif;
    font-size: var(--e-global-typography-accent-font-size, 14px);
    font-weight: 600;
}

.ea-advanced-data-table p {
    font-family: var(--e-global-typography-text-font-family, 'Roboto'), Sans-serif;
    font-size: var(--e-global-typography-accent-font-size, 13px);
    font-weight: var(--e-global-typography-accent-font-weight, 400);
    line-height: var(--e-global-typography-accent-line-height, 1.4em);
    text-align: left;
    color: #666666;

    padding: 5px 10px;
    background-color: #ffffff;
}

.ea-advanced-data-table td p {
    margin: 0;
}

.ea-advanced-data-table tr {
    border-bottom: 1px solid #DEDEDE;
}

.ea-advanced-data-table tbody {
    background-color: #ffffff;
}

/* Cluster 3 Utilities Grid */
.cluster-utilities-grid {
    column-count: 2;
    column-gap: 20px;
    margin-top: 20px;
}

.cluster-utilities-grid>.utility-card {
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;

    width: 100%;
    display: inline-block;
    margin: 0 0 20px;
    vertical-align: top;
}

.utility-card {
    border: 1px solid var(--e-global-color-primary);
    border-radius: 10px;
    padding: 20px;
    background-color: #ffffff;
}

.utility-icon {
    text-align: center;
    margin-bottom: 15px;
}

.utility-icon img {
    max-width: 64px;
    height: auto;
}

.utility-title {
    font-family: var(--e-global-typography-1bcb186-font-family, 'Poppins'), Sans-serif;
    font-size: var(--e-global-typography-1bcb186-font-size, 18px);
    font-weight: var(--e-global-typography-1bcb186-font-weight, 600);
    line-height: var(--e-global-typography-1bcb186-line-height, 1.3em);
    color: var(--e-global-color-text);
    margin: 0 0 15px;
    text-align: center;
}

.utility-note {
    font-family: 'Poppins', Sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4em;
    color: #666666;
    margin: 15px 0;
    text-align: left;
}

.utility-card .ea-advanced-data-table-wrap {
    margin-top: 10px;
}

/* Responsive */




.ea-advanced-data-table .cluster-subtitle {
    font-family: 'Poppins', Sans-serif;
    font-size: 1.5em;
    font-weight: 400;
}

/* Integrated Connectivities Section */
.integrated-connectivities-section {
    background-color: #ffffff;
}

.integrated-connectivities-header {
    margin-bottom: 60px;
}

.integrated-connectivities-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: var(--e-global-typography-secondary-font-size, 32px);
    font-weight: 600;
    line-height: 1.3em;
    color: var(--e-global-color-text);
    margin-bottom: 20px;
}

.integrated-connectivities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.connectivity-list {
    background-color: #ffffff;
}

.elementor-icon-list-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.elementor-icon-list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.elementor-icon-list-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--e-global-color-primary, #DAB065);
    margin-top: 2px;
}

.elementor-icon-list-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.elementor-icon-list-text {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6em;
    color: var(--e-global-color-text, #232323);
    flex: 1;
}


.integrated-connectivities-image {
    margin-top: 40px;
    text-align: center;
}

.integrated-connectivities-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive for Integrated Connectivities */




/* Access to Labor and Support Section */
.labor-support-section {
    background-color: var(--e-global-color-accent, #F8F8F8);
}

.labor-support-header {
    margin-bottom: 60px;
}

.labor-support-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: var(--e-global-typography-secondary-font-size, 32px);
    font-weight: 600;
    line-height: 1.3em;
    color: var(--e-global-color-text);
    margin-bottom: 20px;
}

.labor-support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.labor-support-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
    background-color: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.labor-support-item:hover {
    background-color: #F8F8F8;
}

.labor-support-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.labor-support-icon img {
    max-width: 64px;
    height: auto;
    width: 100%;
    object-fit: contain;
}

.labor-support-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3em;
    color: var(--e-global-color-text, #232323);
    margin: 0;
}

/* Responsive for Labor Support Section */




/* Key Priorities Section */
.key-priorities-section {
    background-color: #ffffff;
}

.key-priorities-header {
    margin-bottom: 60px;
}

.key-priorities-header h2 {

    margin-bottom: 20px;
}



.key-priority-item {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #ffffff;
    transition: all 0.3s ease;
    text-align: center;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    max-width: 380px;
}

.key-priority-item:hover {
    transform: translateY(-10px);
    background-color: #F8F8F8;
}

.key-priority-image {
    width: 100%;
    overflow: hidden;
}

.key-priority-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 10px;
}


.key-priority-content {
    padding: 30px;
}

.key-priority-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3em;
    color: var(--e-global-color-text, #232323);
    margin-bottom: 15px;
}

.key-priority-description {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4em;
    color: #232323;
    margin: 0;
}

/* Policy Aspect Section */
.policy-aspect-section {
    background-color: var(--e-global-color-accent, #F8F8F8);
}

.policy-aspect-header {
    margin-bottom: 40px;
}

.policy-aspect-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: var(--e-global-typography-secondary-font-size, 32px);
    font-weight: 600;
    line-height: 1.3em;
    color: var(--e-global-color-text);
    margin-bottom: 20px;
}


.policy-aspect-intro p {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4em;
    color: var(--e-global-color-text, #232323);
    margin-bottom: 34px;
}

.policy-subsection {
    margin-bottom: 20px;
}

.policy-subsection-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3em;
    color: var(--e-global-color-text, #232323);
    margin-bottom: 20px;
}

.policy-subsection .elementor-divider {
    margin-bottom: 30px;
}

.regulation-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 0 30px;
    margin-bottom: 20px;
}


.regulation-content {
    flex: 1;
}

.regulation-content ol {
    margin: 0;
    padding-left: 20px;
}

.regulation-content li {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8em;
    color: var(--e-global-color-text, #232323);
}

.regulation-button {
    flex-shrink: 0;
}

.btn-regulation {
    padding: 5px 25px;
    background-color: transparent;
    color: #232323;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.4em;
    font-weight: 400;
    border-radius: 100px;
    transition: all 0.3s ease;
    border: 1px solid var(--e-global-color-primary, #DAB065);
    white-space: nowrap;
}

.btn-regulation:hover {
    background-color: #DAB065;
    color: #ffffff;
    text-decoration: none;
}

/* Responsive for Key Priorities and Policy Aspect */





.banner-divider {
    background-position: center center;
    background-size: cover;
    position: relative;
    background-repeat: no-repeat;
    z-index: 2;
}

.policy-aspect-header {
    z-index: 2;
    position: relative;
}

.policy-aspect-header h2 {
    color: #ffffff;
}

.banner-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay-dark-blue);
    opacity: 0.8;
    z-index: 1;
}

.divider-primary {
    margin-bottom: 20px;
    border-top: 1px solid #DEDEDE;
}

.resources-section h2 {
    margin-top: 10px;
    margin-bottom: 20px;
}

.resources-list {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 34px;
    margin-bottom: 20px;
}

.resources-bg-image {
    height: 100%;
    background-image: url('https://adtech-id.com/wp-content/uploads/2025/11/kitb-background-cta-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 14px;
}

.reports-section {
    background-color: #F8F8F8;
}

.reports-section-header h2 {
    margin-bottom: 20px;
}

.reports-section-divider {
    margin-bottom: 40px;
}

.reports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.report-image {
    max-width: 100%;
    height: auto;
    box-shadow: 0px 35px 30px -15px rgba(0, 0, 0, 0.35);
}

.report-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3em;
    color: var(--e-global-color-text, #232323);
}

.report-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.investment-documents-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
}

.investment-document-item {
    padding: 20px;
    background-color: #F8F8F8;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.investment-document-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3em;
    color: var(--e-global-color-text, #232323);
    margin-bottom: 15px;
}

.investment-document-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3em;
    color: var(--e-global-color-text, #232323);
}

.building-tab-content-inner .btn-outline-main {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: normal;
    width: fit-content;
}

.building-tab-content-inner .btn-outline-main:hover svg {
    fill: #ffffff;
}

.investment-document-item .btn-outline-main {
    padding: 5px 15px;
}

.news-letter-section-header h2 {
    margin-bottom: 20px;
}

.news-letter-section-divider {
    margin-bottom: 40px;
}

.newsletter-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.tenants-carousel-wrapper {
    position: relative;
    overflow: visible;
}

.news-letter-section .tenants-prev {
    background-color: #F8F8F8;
    color: #232323;
}

.news-letter-section .tenants-prev:hover {
    background-color: #DAB065;
    color: #ffffff;
}

.news-letter-section .tenants-next {
    background-color: #F8F8F8;
    color: #232323;
}

.news-letter-section .tenants-next:hover {
    background-color: #DAB065;
    color: #ffffff;
}

.compliance-section .tab-heading {
    width: 100%;
}

.compliance-section .building-tabs-nav {
    flex-direction: row;
}

.compliance-section .building-tab-btn {
    margin: 0;
    width: fit-content;
    background-color: #F8F8F8;
    padding: 10px 20px;
}

.compliance-section .building-tab-btn.active {
    background-color: var(--e-global-color-primary, #D9B066);
    color: #ffffff;
}



.compliance-content-wrapper {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: var(--e-global-color-accent);
}

.compliance-text-content {
    width: 60%;
}

.compliance-title {
    margin-bottom: 20px;
}

.compliance-image-content {
    width: 40%;
}

.compliance-image-content img {
    border-radius: 10px;
    max-width: 100%;
    height: auto;
}

.article-card {
    background-color: #F8F8F8;
    border-radius: 10px;
    overflow: hidden;
}

.article-card-inner {
    display: flex;
    height: 100%;
    gap: 30px;
    align-items: stretch;
}

.article-card-media,
.article-card-body {
    width: 50%;
    overflow: hidden;
}

.article-card-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}

.article-card-description p {
    margin-top: 20px;
    margin-bottom: 0;
}

.article-card-body {
    padding: 30px 30px 30px 0;
}

.sub-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3em;
    color: var(--e-global-color-text, #232323);
    margin-bottom: 20px;
}

.list-news-section {
    background-color: #F8F8F8;
}




.articles-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.articles-filter .filter-btn {
    padding: 5px 20px 5px 20px;
    border-radius: 100px 100px 100px 100px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4em;
    margin: 0;
    border: 0;
    background-color: white;
}

.articles-filter .filter-btn.active,
.articles-filter .filter-btn:hover {
    background-color: var(--e-global-color-primary, #DAB065);
    color: #ffffff;
}

#articles-grid {
    display: flex;
}

.article-item {
    width: 33.3333%;
    /* 3 kolom */
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
    /* GAP ATAS-BAWAH */
    box-sizing: border-box;
}

.contact-info {
    margin-bottom: 60px;
}

.contact-info-item {
    padding: 30px;
    background-color: transparent;
    border-radius: 10px;
    border: 1px solid #DAB065;
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 100%;
}

.contact-info-item svg {
    width: 36px;
    height: 36px;
    fill: #DAB065;
    margin-bottom: 13px;
}

.contact-info-item .contact-title {
    font-size: 20px;
    color: #DAB065;
    line-height: 1.3em;
    font-weight: 600;
    margin-bottom: 16px;
}

.contact-info-item .contact-content {
    font-size: 15px;
    color: #232323;
    line-height: 1.4em;
    font-weight: 700;
    margin-bottom: 0;
}

.contact-info-item .contact-actions {
    margin-bottom: 0;
}

.contact-info-item .d-block:not(:last-child) {
    margin-bottom: 24px;
}

.contact-subtitle {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3em;
    color: #232323;
}


.stats-section {
    padding: 10px;
    background-color: transparent;
    background-image: linear-gradient(173deg, var(--e-global-color-86988cf) 0%, var(--e-global-color-675aabf) 100%);
    color: #fff;
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

.stats-container {
    margin: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    text-align: center;
}

.stat-item h2 {
    font-family: "Poppins", Sans-serif;
    color: var(--e-global-color-primary);
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3em;
}

.stat-item p {
    font-family: "Roboto", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    line-height: 1.4em;
    color: var(--e-global-color-9cceaf9);
    margin-bottom: 0;
}

.stat-item small {
    font-family: "Roboto", Sans-serif;
    font-size: 10px;
    font-weight: 400;
    text-decoration: none;
    line-height: 1.4em;
    color: var(--e-global-color-9cceaf9);
}

/* Animation */
.stat-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
    padding: 10px;
    border-right: 1px solid #FFFFFF33;
    display: flex;
    flex-direction: column;
}

.stat-item:last-child {
    border-right: none;
    position: absolute;
    right: 0;
    width: 20%;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-item:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-item:nth-child(5) {
    animation-delay: 0.5s;
}


.products-section {
    padding: 100px 30px;
    overflow: hidden;
    background-color: #F8F8F8;
}

.products-header {
    margin-bottom: 60px;
}

.products-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3em;
    color: var(--e-global-color-text);
    margin-bottom: 20px;
}

.products-divider {
    margin: 20px 0;
}

/* Products Row - 5 Columns Layout */
.products-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
}

.col-product {
    flex: 0 0 20%;
    width: 20%;
    max-width: 20%;
}

/* Flip Box Container */
.product-flip-box {
    height: 100%;
    min-height: 400px;
}

.flip-box-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    perspective: 1000px;
    -webkit-perspective: 1000px;
}

.flip-box-card {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    transition: transform 0.5s ease;
    -webkit-transition: transform 0.5s ease;
}

.flip-box-container:hover .flip-box-card {
    transform: rotateY(-180deg);
    -webkit-transform: rotateY(-180deg);
}

.flip-box-front,
.flip-box-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 400px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    display: flex;
    align-items: end;
    text-align: left;
    border-radius: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.flip-box-front {
    z-index: 2;
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
}

.flip-box-back {
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    z-index: 1;
}

.product-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0000004D;
    z-index: 1;
}

.product-card-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    padding-top: 59px;
    width: 100%;

}

.product-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3em;
    color: #FFFFFF;
    text-align: center;
    padding-bottom: 5px;
    margin-bottom: 16px;
    margin-top: 8px;
}

.flip-box-back .product-card-content {
    padding: 0 30px 5px 30px;
}

.flip-box-back .product-title {
    padding-bottom: 0;
    margin-bottom: 16px;
    margin-top: 8px;
}

.product-description {
    font-family: "Roboto",
        sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4em;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
    margin-block-end: .9rem;
}

.flip-box-back {
    background-color: #0F68B2;
    background-image: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 10px;
}



.news-grid {
    margin-left: -15px;
    margin-right: -15px;
}

.news-grid-item {
    width: 33.333%;
    padding: 15px;
    /* 15 + 15 = 30px gap */
    box-sizing: border-box;
}





.news-filter {
    display: flex;
    gap: 20px;
}

.filter-btn {
    margin: 0;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4em;
    padding: 5px 20px;
    border-radius: 100px;
    letter-spacing: 0;
}

.filter-btn.active {
    background: #DAB065;
    color: white;

}

.ctn-vision {
    margin-bottom: 54px;
}



.ctn-vision h2,
.ctn-mission h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.3em;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.vision-mission-img {
    position: absolute;
    right: 100px;
    bottom: 0;
}

.vision-mission-img img {
    width: 100%;
    max-width: 300px;
    opacity: 0.15;
}

.grid-akhlak {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.akhlak-item h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 150px;
    font-weight: 700;
    line-height: 0.7;
    margin-bottom: 0;
    text-align: center;
}

.akhlak-item-yellow-title h2 {
    color: var(--color-primary);
}

.akhlak-item-blue-title h2 {
    color: #0F68B2;
}

.akhlak-item-yellow-content {
    background-color: var(--color-primary);
}

.akhlak-item-blue-content {
    background-color: #0F68B2;
}


.akhlak-item-yellow-content,
.akhlak-item-blue-content {
    min-height: 300px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.akhlak-item-yellow-content h3 {
    color: #0F68B2;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3em;
    text-align: center;
    margin-bottom: 10px;
}


.akhlak-item-blue-content h3 {
    color: var(--color-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3em;
    text-align: center;
    margin-bottom: 10px;
}

.akhlak-item-yellow-content p,
.akhlak-item-blue-content p {
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4em;
    text-align: center;
    margin-bottom: 0;
}

.akhlak-item img {
    width: 250px;
    max-width: 100%;
    opacity: 0.2;
    position: absolute;
    bottom: 0;
    left: -30px;
    bottom: -10px;
}

#milsestoneContent {
    margin-bottom: 20px;
}

#milsestone {
    margin: auto;
    width: fit-content;
    border: 0;

}

.milestones-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.milestones-item {
    width: auto;
    display: flex;
    align-items: center;
}

#milsestone.nav-tabs .nav-link {
    margin-bottom: 0;
    border: none;
    border-radius: 0;
    border-top: 3px solid #DBB06680;
    padding: 10px 30px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.4em;
    color: #232323;
}


#milsestone.nav-tabs .nav-link:hover {
    background-color: #DBB06680;
}

#milsestone.nav-tabs .nav-link.active {
    background-color: #DAB065;
    border-top: 3px solid #DAB065;
}

.milestones-item-content-title h3 {
    font-size: 60px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3em;
    color: var(--color-primary);
    margin-bottom: 20;
}

.milestones-item-content-title p {
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3em;
    color: #232323;
    margin-bottom: 20;
}

.milestones-item img {
    width: 100%;
    max-width: 100%;
}

#goverment {
    margin: auto;
    gap: 20px;
    justify-content: center;
}

#goverment .nav-link {

    display: block;
    padding: 10px 30px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.4em;
    color: #232323;
    background-color: white;
    border-radius: 100px;
    border: 0;
    transition: color .15s ease-in-out, background-color .15s ease-in-out,
}

#goverment .nav-link.active {
    color: white;
    background-color: var(--color-primary);
}

#goverment .nav-link:hover,
#goverment .nav-pills .show>.nav-link:hover {
    color: white;
    background-color: var(--color-primary);
}

.goverment-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
}

.danantara {
    display: block;
    margin: auto;
    width: fit-content;
    margin-bottom: 30px;
}

.danantara img {
    width: 270px;
    max-width: 100%;
}

.gover-agency {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 60px;
}

.state-owned {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.gover-agency img,
.state-owned img {
    max-width: 100%;
    width: auto;
}

.state-owned img {
    max-width: 100%;
    width: auto;
    padding: 30px;
}

.why-us-section {
    background-color: #F8F8F8;
}

.why-us-tabs {
    gap: 20px;
}

.nav-why {
    flex-basis: 200px;
    gap: 20px;
}

.nav-why .nav-link {
    padding: 10px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    color: #232323;
    background-color: white;
    border-radius: 100px;
    border: 0;
    transition: color .15s ease-in-out, background-color .15s ease-in-out,
}

.nav-why .nav-link.active,
.nav-why .nav-link:hover {

    color: white;
    background-color: var(--color-primary);

}

.why-us-tabs .main-content {
    padding: 30px;
    background-color: white;
    border-radius: 10px;
}

#v-pills-tabContent,
#building-tabs-content {
    flex: 1;
}

.why-us-tabs h3 {
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3em;
    margin-bottom: 20px;
}

.why-us-tabs img {
    max-width: 100%;
}

.infra-card-wrapper {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.infra-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-radius: 10px;
    background-color: #F8F8F8;
}

.infra-img {
    width: 64px;
}

.infra-img img {
    width: 100%;
    max-width: 100%;
}

.infra-content {
    flex: 1;
}

.infra-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4em;
    margin-top: 10px;
    margin-bottom: 5px;
}

.key-wrapper {
    margin-top: 20px;
}

.key-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.key-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.key-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 600px;
    margin: auto;
}

.key-image {
    margin-bottom: 14px;
}

.key-image img {
    width: 64px;
    max-width: 100%;
    margin: auto;
    display: block;
}

.key-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4em;
    margin-top: 10px;
    margin-bottom: 16px;
    text-align: center;
}

.key-item p {
    text-align: center;
    margin-bottom: 0;
}

.products-section .section-title {
    margin-bottom: 40px;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.key-content small {
    font-size: 13px;
}

.products-mobile-accordion .key-image img {
    width: 82px;
}

.utility-item-content h3 {
    font-size: 18px;
}

/* ===========================
 * Custom SFB Accordion
 * =========================== */
.accordion-sfb {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 5px;
}

.accordion-sfb .accordion-item {
    border: 0;
    border-radius: 10px !important;
    overflow: hidden;
    background-color: #fff;
}

.accordion-button-sfb {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px;
    background-color: #fff;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #232323;
    text-align: left;
    transition: background-color 0.2s ease;
    border: 1.5px solid #DAB065;
    border-radius: 10px;
}

.accordion-button-sfb:hover {
    background-color: #fdf6ea;
}

.accordion-button-sfb:not(.collapsed) {
    background-color: #fff;
    color: #232323;
    border-radius: 10;
    border: 1.5px solid #DAB065;

}

.sfb-toggle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    color: #232323;
    flex-shrink: 0;
    transition: content 0.2s;
}

.accordion-button-sfb:not(.collapsed) .sfb-toggle-icon::before {
    content: '−';
}

.sfb-toggle-icon::before {
    content: '+';
}

.accordion-sfb .sfb-toggle-icon {
    font-size: 0;
    /* hide the literal + in span */
}

.accordion-sfb .sfb-toggle-icon::before {
    font-size: 22px;
}

.accordion-body-sfb {
    padding: 16px 20px 20px 20px;
    border-top: 0;
}

.building-feature-title {
    font-size: 14px !important;
    margin-bottom: 0 !important;
    font-weight: 700 !important;
}

.tower-count {
    width: fit-content;
    display: flex;
    height: fit-content;
}

.tower-count .icon {
    width: 45px;
    height: 45px;
    background-color: #055597;
    border-color: #FFFFFF;
    border-style: none;
    border-radius: 100px 100px 100px 100px;
    display: flex;
    justify-content: center;
    justify-items: center;
    margin-right: -20px;
    z-index: 1;
}

.tower-count .icon svg {
    width: 20px;
    fill: white;

}

.card-residence {
    border-radius: 10px;
    background-color: #F8F8F8;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.card-residence .card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 20px 0 0 20px;
}

.tower-count .content {
    padding: 0 20px 0 30px;
    background: #0F68B2;
    display: flex;
    align-items: center;

    color: white;
    font-family: 'Poppins', sans-serif;
}

.card-residence .card-content {
    padding: 0 20px;
}

.card-residence .card-header h2 {
    color: var(--color-primary);
}

/* Commercial & Residential Carousel Styles */
.commercial-carousel-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.commercial-land-swiper,
.residential-swiper,
.warehouse-swiper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.commercial-land-swiper .swiper-slide,
.residential-swiper .swiper-slide,
.warehouse-swiper .swiper-slide {
    width: 100% !important;
    max-width: 100%;
    flex-shrink: 0;
}

.commercial-carousel-slide-inner {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    line-height: 0;
    overflow: hidden;
}

.commercial-carousel-slide-inner img {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    max-width: 100%;
}

.commercial-land-swiper .swiper-button-next,
.commercial-land-swiper .swiper-button-prev,
.residential-swiper .swiper-button-next,
.residential-swiper .swiper-button-prev,
.warehouse-swiper .swiper-button-next,
.warehouse-swiper .swiper-button-prev {
    width: 25px;
    height: 25px;
    color: white;
}

.commercial-carousel-wrapper:hover .commercial-land-swiper .swiper-button-next,
.commercial-carousel-wrapper:hover .commercial-land-swiper .swiper-button-prev,
.commercial-carousel-wrapper:hover .residential-swiper .swiper-button-next,
.commercial-carousel-wrapper:hover .residential-swiper .swiper-button-prev,
.commercial-carousel-wrapper:hover .warehouse-swiper .swiper-button-next,
.commercial-carousel-wrapper:hover .warehouse-swiper .swiper-button-prev {
    opacity: 1;
}

.commercial-land-swiper .swiper-button-next:after,
.commercial-land-swiper .swiper-button-prev:after,
.residential-swiper .swiper-button-next:after,
.residential-swiper .swiper-button-prev:after,
.warehouse-swiper .swiper-button-next:after,
.warehouse-swiper .swiper-button-prev:after {
    font-size: 25px;
    font-weight: bold;
}

.commercial-land-swiper .swiper-button-prev,
.residential-swiper .swiper-button-prev,
.warehouse-swiper .swiper-button-prev {
    left: 15px;
}

.commercial-land-swiper .swiper-button-next,
.residential-swiper .swiper-button-next,
.warehouse-swiper .swiper-button-next {
    right: 15px;
}

.commercial-carousel-pagination {
    bottom: 20px !important;
    text-align: center;
}

.commercial-carousel-pagination .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    background-color: #F8F8F85C;
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.commercial-carousel-pagination .swiper-pagination-bullet-active {
    background-color: #ffffff;
}

.key-grid-4 .key-image img {
    width: 60px;
}

.cntjava img {
    width: 730px;
    margin: auto;
    display: block;
}

.cntjava h2 {
    margin-bottom: 20px;
}

.cntjava h3 {
    margin: 20px 0;
    font-size: 18px;
    line-height: 1.4em;
}

.cntjava .key-grid-3 {
    gap: 30px;
}

.demography-card {
    display: flex;
    align-items: center;
    gap: 15px;
}

.demography-card img {
    width: 58px;
}

.cntjava .demography-card h3 {
    font-family: "Poppins", Sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.3em;
    color: #000000;
    margin: 8px 0 16px 0;
}

.cntjava .demography-card h3 span {
    color: #0F68B2;
}

.pid-section {
    background-color: var(--e-global-color-accent);
}

#building-tabs .nav-link {
    padding: 10px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    color: #232323;
    background-color: var(--e-global-color-accent);
    border-radius: 100px;
    border: 0;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, ;


}

#building-tabs .nav-link {
    padding: 10px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.5em;
    color: #232323;
    background-color: var(--e-global-color-accent);
    border-radius: 100px;
    border: 0;
    transition: color .15s ease-in-out, background-color .15s ease-in-out;


}

#building-tabs .nav-link.active {
    color: white;
    background-color: var(--color-primary);
}

.news-detail-section h1 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3em;
}

.article-info {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.article-info .publish-date,
.article-info .category {
    display: flex;
    align-items: center;
    gap: 10px;
}

.article-info .publish-date svg,
.article-info .category svg {
    width: 15px;
    fill: var(--color-primary);
}

.news-detail-section .news-thumbail {
    margin-bottom: 40px;
    border-radius: 20px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.news-detail-section .content h2 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3em;
}

.news-detail-section .content h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3em;
}

.share-article p {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 0;
    color: var(--color-primary);
}

.title-divider {
    padding: 20px 0;
}

.title-divider .divider {
    width: 40px;
    background-color: var(--color-primary);
    border-block-start: 3px solid var(--color-primary);
}

.share-article ul {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.share-article ul li a {
    font-size: 18px;
    text-decoration: none;
    color: var(--color-text);
}

.related-article {
    background-color: var(--e-global-color-accent);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}