/**
* Template Name: Dewi
* Template URL: https://bootstrapmade.com/dewi-free-multi-purpose-html-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Manrope", sans-serif;
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Inter", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #444444;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #073763;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #073763;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
    --hover-color: #ffab40;
    /* For hover color */
    --btn-color: linear-gradient(145deg,
            rgba(61, 133, 198, 1) 0%,
            rgba(7, 55, 99, 1) 100%);
    --btn-hover-color: linear-gradient(145deg,
            rgba(255, 171, 64, 1) 0%,
            rgba(156, 96, 19, 1) 100%);
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #e5eaee;
    /* The default color of the main navmenu links */
    --nav-hover-color: #3d85c6;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #444444;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #3d85c6;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f1f4fa;
    --surface-color: #ffffff;
}

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

.footer-background {
    --background-color: #3d85c6;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #28323a;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

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

p {
    font-family: var(--default-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

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

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--accent-color) 50%,
            color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

.pulsating-play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.pulsating-play-btn:hover:after {
    border-left: 15px solid var(--accent-color);
    transform: scale(20);
}

@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

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

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

.header .logo img {
    max-height: 4rem;
    margin-right: 8px;
}

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

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

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

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

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

    .header .navmenu {
        order: 3;
    }
}

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

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: rgba(21, 34, 43, 0.85);
}

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

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

    .navmenu li {
        position: relative;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /* Tambahkan ini untuk submenu agar class .active terlihat jelas */
    .navmenu .dropdown ul a.active {
        color: var(--nav-dropdown-hover-color);
        /* Atau warna khusus lain */
        font-weight: bold;
        background-color: rgba(0, 0, 0, 0.05);
        /* opsional: memberi highlight */
    }

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

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
    /* border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%); */
    position: relative;
    z-index: 3;
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--heading-font);
    color: var(--heading-color);
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

.footer .footer-contact .info-item i {
    background: var(--contrast-color);
    /* color: color-mix(in srgb, var(--accent-color), transparent 92%); */
    color: var(--background-color);
    font-size: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

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

.footer .footer-links ul i {
    padding-right: 3px;
    font-size: 13px;
    line-height: 0;
    color: var(--accent-color);
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 6px 8px;
    position: relative;
    border-radius: 4px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    display: flex;
    background-color: var(--background-color);
    transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
    border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
    border: 0;
    padding: 4px;
    width: 100%;
    background-color: var(--background-color);
    color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"]:focus-visible {
    outline: none;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
    border: 0;
    font-size: 16px;
    padding: 0 20px;
    margin: -7px -8px -7px 0;
    background: var(--accent-color);
    color: var(--contrast-color);
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
    background: var(--hover-color);
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 6px;
    font-size: 13px;
}

.footer-contact-form input,
.footer-contact-form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
}

.footer-contact-form button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 20px;
}

.footer-contact-form button:hover {
    background-color: var(--hover-color);
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 45px;
    height: 45px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: var(--hover-color);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 80px 0;
    text-align: center;
    position: relative;
}

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

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

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

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

.page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 768px) {

    section,
    .section {
        padding: 40px 0;
    }
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 76px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 30px;
    padding: 0;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg,
            var(--accent-color),
            var(--nav-hover-color));
    border-radius: 2px;
    animation: lineGrow 2s ease-out 1.5s forwards;
}

.section-subtitle {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--default-color);
}

@keyframes lineGrow {
    to {
        width: 200px;
    }
}

@media (max-width: 426px) {
    @keyframes lineGrow {
        to {
            width: 100px;
        }
    }
}

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

    .section-subtitle {
        font-size: 16px;
    }
}

/*--------------------------------------------------------------
# Global Button Section
--------------------------------------------------------------*/
.discover-btn {
    display: inline-block;
    min-width: max-content;
    padding: 14px 30px;
    background: var(--btn-color);
    color: var(--contrast-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(10px);
}

.discover-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--btn-hover-color);
    transition: left 0.5s ease;
    z-index: 0;
}

.discover-btn:hover {
    transform: translateY(-5px);
    border-color: var(--nav-dropdown-hover-color);
    /* box-shadow: 0 15px 35px rgba(100, 181, 246, 0.3); */
    color: var(--contrast-color);
}

.discover-btn:hover::before {
    left: 0;
}

.discover-btn span {
    position: relative;
    z-index: 1;
}

@keyframes contentSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes statsSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-container {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .discover-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# First Page Section
--------------------------------------------------------------*/
.first-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* background: linear-gradient(
        0deg,
        rgba(61, 133, 198, 1) 0%,
        rgba(27, 84, 136, 1) 76%,
        rgba(7, 55, 99, 1) 100%
    ); */
    background-image: url('../img/background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* .first-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; */
    /* background-color: #243464; */
    /* background: url('assets/img/background.jpg'); */
/* } */

/* .first-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../img/background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
    opacity: 1;
    -webkit-mask-image: radial-gradient(circle at 90% 10%, rgba(0, 0, 0, 1) 15%, transparent 30%);
    mask-image: radial-gradient(circle at 90% 10%, rgba(0, 0, 0, 1) 15%, transparent 30%);
    z-index: 1;
    pointer-events: none;
} */

/* Responsive untuk layar kecil */
/* @media (max-width: 768px) {
    .first-section::before {
        background-position: top center;
        -webkit-mask-image: radial-gradient(circle at 80% 10%, rgba(0, 0, 0, 1) 10%, transparent 20%);
        mask-image: radial-gradient(circle at 80% 10%, rgba(0, 0, 0, 1) 10%, transparent 20%);
    }
} */

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding: 0;
    margin-bottom: 40px;
}

.hero .carousel {
    width: 100%;
    height: 100vh;
    padding: 0;
    margin: 0;
    background-color: var(--background-color);
    position: relative;
}

@media (max-width: 1200px) {
    .hero .carousel {
        min-height: 100vh;
    }
}

.hero img {
    position: relative;
    /* inset: 0; */
    display: block;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.5);
}

.hero .carousel-item {
    position: relative;
    overflow: hidden;
}

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

.hero .carousel-container {
    position: absolute;
    /* inset: 90px 64px 64px 64px; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 3;
}

.hero h2 {
    font-size: 56px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 30px;
        max-width: 80%;
        display: flex;
        justify-content: center;
        line-height: 1.4;
    }

    .hero .carousel-container {
        inset: 90px 34px 64px 34px;
    }
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
    width: 10%;
    transition: 0.3s;
    opacity: 0;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
    opacity: 0;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
    opacity: 0.9;
}

@media (min-width: 1024px) {

    .hero .carousel-control-prev,
    .hero .carousel-control-next {
        width: 5%;
    }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
    font-size: 32px;
    line-height: 1;
}

.hero .carousel-indicators {
    list-style: none;
}

.hero .carousel-indicators li {
    cursor: pointer;
}

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

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .container img {
    height: 70vh;
    border-radius: 100px 0 0 100px;
}

.about {
    position: relative;
}

.about .content h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 2rem;
    line-height: 1.1;
    position: relative;
}

@keyframes expandLine {
    to {
        transform: scaleX(1);
    }
}

.about .content p {
    color: var(--default-color);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    /* display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease; */
    /* animation: fadeInUp 0.8s ease forwards; */
}

/* 
.about .content p.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
} */

.about .content p:first-of-type {
    animation-delay: 0.2s;
}

.about .content p:last-of-type {
    animation-delay: 0.4s;
}

/* Image container with advanced styling */
.image-container {
    position: relative;
    transform: translateX(50px);
}

.image-container::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.102),
            rgba(30, 64, 175, 0.102));
    border-radius: 100px 0 0 100px;
    z-index: -1;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.main-image {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.main-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

/* Floating accent elements */
.accent-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f61a, #1e40af1a);
    pointer-events: none;
    animation: floatGentle 8s ease-in-out infinite;
}

.accent-shape:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 30%;
    animation-delay: 0s;
}

.accent-shape:nth-child(2) {
    width: 60px;
    height: 60px;
    bottom: 15%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes floatGentle {

    0%,
    100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-15px) scale(1.5);
        opacity: 0.8;
    }
}

/* Responsive design */
@media (max-width: 992px) {
    .image-container {
        margin-top: 3rem;
    }

    .stat-item::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .about .content h1 {
        font-size: 3rem;
        text-align: center;
    }

    .about .content h1::after {
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        transform-origin: center;
    }

    .about .content p {
        text-align: justify;
        font-size: 16px;
    }

    .read-more {
        display: block;
        text-align: center;
        margin: 2rem auto 0;
        width: fit-content;
    }

    .main-image {
        height: 50vh;
        border-radius: 16px;
    }

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

    .image-container::before {
        border-radius: 20px;
    }
}

@media (max-width: 425px) {
    .about .stats-container {
        justify-content: left;
        text-align: center;
    }
}

/*--------------------------------------------------------------
# Awards & Certification Section
--------------------------------------------------------------*/
.certi-content-card {
    border-radius: 0 0 20px 20px;
    min-height: 339px;
}

.certi-content-card .title-card h3 {
    font-size: 26px;
    margin-bottom: 0;
}

.certi-content-card .title-card p {
    font-size: 18px;
}

.certi-content-card .desc-card h4 {
    margin-bottom: 0;
}

.certi-content-card .desc-card h4,
p {
    font-size: 16px;
}

/*--------------------------------------------------------------
# About Betari Section
--------------------------------------------------------------*/
.betari {
    position: relative;
    display: flex;
    align-items: center;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 110%;
    height: 110%;
    object-fit: cover;
    z-index: 1;
    animation: parallaxFloat 25s ease-in-out infinite;
    filter: brightness(0.7) contrast(1.1);
}

@keyframes parallaxFloat {

    0%,
    100% {
        transform: scale(1.05) rotate(0deg);
    }

    25% {
        transform: scale(1.08) rotate(0.5deg);
    }

    50% {
        transform: scale(1.06) rotate(0deg);
    }

    75% {
        transform: scale(1.07) rotate(-0.5deg);
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%,
            rgba(20, 60, 120, 0.8) 0%,
            transparent 50%),
        radial-gradient(circle at 70% 80%,
            rgba(10, 40, 80, 0.9) 0%,
            transparent 50%),
        linear-gradient(135deg,
            rgba(5, 25, 55, 0.85) 0%,
            rgba(15, 45, 85, 0.75) 100%);
    z-index: 2;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: float 8s ease-in-out infinite;
}

.floating-circle:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-circle:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

.floating-circle:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 80%;
    animation-delay: -14s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }

    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-40px) rotate(180deg);
        opacity: 0.3;
    }

    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 0.6;
    }
}

.betari .content-container {
    position: relative;
    width: 80%;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 60px;
    align-items: center;
}

.betari .content-grid {
    margin: 4rem 0;
}

.content-left {
    position: relative;
    padding-left: 2rem;
    color: var(--contrast-color);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
    justify-content: center;
}

.content-left::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg,
            var(--nav-dropdown-hover-color),
            var(--accent-color));
    animation: borderGrow 1.5s ease-out 1.5s forwards;
}

@keyframes borderGrow {
    to {
        height: 100%;
    }
}

.content-right {
    padding-right: 2rem;
}

.highlight {
    color: var(--hover-color);
    font-weight: 400;
    position: relative;
    display: inline-block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .betari .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .betari .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .betari .content-container {
        padding: 80px 40px;
    }
}

@media (max-width: 768px) {
    .betari .content-container {
        padding: 60px 20px;
    }

    .betari .title {
        letter-spacing: 2px;
    }

    .betari .floating-circle {
        display: none;
    }
}

@media (max-width: 426px) {
    .betari .content-container {
        padding: 40px 12px;
        width: 100%;
        margin: 0;
    }

    .betari .title {
        letter-spacing: 2px;
    }

    .betari .floating-circle {
        display: none;
    }

    .betari .content-left {
        padding: 0;
        text-align: justify;
    }

    .betari .content-left:before {
        opacity: 0;
    }

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

/*--------------------------------------------------------------
# Company Overview Section
--------------------------------------------------------------*/
/* .background-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    mix-blend-mode: screen;
    will-change: transform;
    animation: move 10s ease-in-out infinite alternate;
    transition: transform 0.1s linear;
}

.blob1 {
    width: 420px;
    height: 420px;
    top: 6%;
    left: -10%;
    animation-delay: 0s;
    background: #64aded;
    background: linear-gradient(
        152deg,
        rgba(100, 173, 237, 1) 0%,
        rgba(61, 133, 198, 1) 55%,
        rgba(17, 75, 130, 1) 100%
    );
}

.blob2 {
    width: 420px;
    height: 420px;
    bottom: 10%;
    right: -6%;
    animation-delay: 2s;
    background: #64aded;
    background: linear-gradient(
        152deg,
        rgba(100, 173, 237, 1) 0%,
        rgba(61, 133, 198, 1) 55%,
        rgba(17, 75, 130, 1) 100%
    );
}

@keyframes move {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(40px, 20px);
    }
} */

/* @keyframes float {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -30px);
    }
    100% {
        transform: translate(-20px, 30px);
    }
} */

.overview-content,
.overview-btn {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 2rem;
    color: white;
}

.overview-content h1 {
    font-size: 87px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--accent-color);
    text-shadow: 2px 4px 6px #ffffff66;
}

@keyframes animate-background {
    0% {
        background-position: 0 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

.overview-content h2 {
    font-size: 16px;
    font-weight: 600;
    color: var(--contrast-color);
    background-color: var(--hover-color);
    border-radius: 50px;
    margin-top: 5rem;
    width: fit-content;
    padding: 6px 10px;
}

.overview-content p {
    font-size: 16px;
    margin-bottom: 44px;
    line-height: 1.7;
    color: var(--accent-color);
}

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

.overview-btn i {
    margin-top: 2rem;
    font-size: 56px;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.overview-btn i:hover {
    transform: translateY(10px);
}

@media (max-width: 768px) {
    .overview-content h1 {
        font-size: 47px;
        font-weight: 700;
        margin-bottom: 22px;
        color: var(--accent-color);
        text-shadow: 2px 4px 6px #ffffff66;
    }

    .overview-content h2 {
        font-size: 12px;
        font-weight: 600;
        color: var(--contrast-color);
        background-color: var(--hover-color);
        border-radius: 50px;
        margin-top: 5rem;
        width: fit-content;
        padding: 6px 10px;
    }

    .overview-content p {
        font-size: 14px;
        margin-bottom: 24px;
        line-height: 1.7;
    }

    .blob1 {
        width: 220px;
        height: 220px;
        top: 6%;
        left: -10%;
        animation-delay: 0s;
        background: #64aded;
        background: linear-gradient(152deg,
                rgba(100, 173, 237, 1) 0%,
                rgba(61, 133, 198, 1) 55%,
                rgba(17, 75, 130, 1) 100%);
    }

    .blob2 {
        width: 220px;
        height: 220px;
        bottom: 10%;
        right: -6%;
        animation-delay: 2s;
        background: #64aded;
        background: linear-gradient(152deg,
                rgba(100, 173, 237, 1) 0%,
                rgba(61, 133, 198, 1) 55%,
                rgba(17, 75, 130, 1) 100%);
    }
}

/*--------------------------------------------------------------
# More Overview Section
--------------------------------------------------------------*/
.more-overview {
    position: relative;
    overflow: hidden;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.more-overview .container {
    position: relative;
    z-index: 2;
}

.overview-card {
    background: var(--background-color);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 4px 20px #0000001a;
    border: 1px solid #ffffff33;
    position: relative;
    overflow: hidden;
    opacity: 1;
    /* transform: translateY(50px); */
    /* animation: slideInUp 0.8s ease forwards;
    transition: all 0.3s ease-in-out; */
}

.overview-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15px;
    background: linear-gradient(90deg,
            var(--nav-hover-color),
            var(--accent-color));
}

.card-title {
    font-size: 34px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.more-overview .card-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--default-color);
    text-align: justify;
}

.highlight-box {
    background: linear-gradient(135deg,
            var(--accent-color),
            var(--nav-hover-color));
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: justify;
    position: relative;
    overflow: hidden;
    opacity: 1;
    height: 100%;
    /* transform: scale(0.9); */
    /* animation: zoomIn 1s ease forwards 0.8s; */
}

.highlight-title {
    font-size: 34px;
    font-weight: 600;
    color: var(--contrast-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.highlight-text {
    font-size: 18px;
    line-height: 1.6;
    opacity: 1;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

@media (max-width: 1024px) {

    .more-overview .card-text,
    .highlight-text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .overview-card {
        padding: 30px 20px;
    }

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

    .more-overview .card-text,
    .highlight-text {
        font-size: 14px;
    }

    .highlight-box {
        padding: 20px 20px;
    }

    .highlight-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .highlight-text {
        text-align: left;
    }

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

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/*--------------------------------------------------------------
# Our Values Section
--------------------------------------------------------------*/
.our-values {
    position: relative;
    overflow: hidden;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.3s ease;
    position: relative;
}

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

.value-item:nth-child(1) {
    animation: slideInLeft 0.8s ease-out 0.4s forwards;
}

.value-item:nth-child(2) {
    animation: slideInLeft 0.8s ease-out 0.6s forwards;
}

.value-item:nth-child(3) {
    animation: slideInLeft 0.8s ease-out 0.8s forwards;
}

.value-item:nth-child(4) {
    animation: slideInLeft 0.8s ease-out 1s forwards;
}

.value-item:nth-child(5) {
    animation: slideInLeft 0.8s ease-out 1.2s forwards;
}

.value-letter {
    background: var(--hover-color);
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 900;
    color: var(--contrast-color);
    position: relative;
    overflow: hidden;
}

.value-letter::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: left 0.6s;
}

.value-item:hover .value-letter::before {
    left: 100%;
}

.value-header {
    background: var(--accent-color);
    color: white;
    padding: 20px 30px;
    flex: 1;
    display: flex;
    align-items: center;
}

.value-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--contrast-color);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.value-description {
    background: var(--nav-dropdown-hover-color);
    color: var(--contrast-color);
    padding: 20px 30px;
    flex: 2;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
}

.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

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

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

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.pulse-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 154, 86, 0.1) 0%,
            rgba(255, 107, 53, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-item:hover .pulse-bg {
    opacity: 1;
}

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

    .value-letter {
        width: 100%;
        /* height: 80px; */
        font-size: 2rem;
    }

    .value-header {
        justify-content: center;
    }

    .value-header,
    .value-description {
        padding: 20px;
    }

    .value-title {
        font-size: 22px;
        margin-bottom: 0;
    }

    .value-description {
        font-size: 14px;
        text-align: center;
    }
}

.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.value-item:hover .glow-effect::after {
    opacity: 1;
}

/*--------------------------------------------------------------
# Milestones Section
--------------------------------------------------------------*/
.timeline-container {
    background: linear-gradient(135deg,
            var(--accent-color),
            var(--nav-hover-color));
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.timeline-container::before {
    content: "";
    position: absolute;
    top: 0;
    right: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 70%);
    animation: rotate 15s linear infinite;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    top: 53%;
    left: 0;
    right: 0;
    height: 2px;
    /* background: linear-gradient(
        90deg,
        var(--accent-color),
        var(--nav-hover-color)
    ); */
    background: var(--background-color);
    z-index: 1;
}

.timeline-point {
    position: relative;
    z-index: 10;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.year-label {
    font-size: 26px;
    font-weight: 500;
    font-family: var(--heading-font);
    color: #92999f;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #adb5bd;
    border: 3px solid var(--contrast-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.timeline-point:hover .dot {
    transform: scale(1.2);
    background-color: red;
}

.timeline-point:hover .year-label {
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.timeline-point.active .dot {
    background-color: var(--accent-color);
    transform: scale(1.3);
    box-shadow: 0 4px 15px rgba(7, 55, 100, 0.3);
}

.timeline-point.active .year-label {
    color: var(--contrast-color);
    font-weight: 600;
}

.content-container {
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.content-section {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    visibility: hidden;
}

.content-section.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
}

.period-title {
    font-size: 1.8rem;
    font-family: var(--heading-font);
    color: var(--contrast-color);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.period-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg,
            var(--contrast-color),
            var(--nav-hover-color));
}

.milestones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.milestone-card {
    background: var(--contrast-color);
    border-radius: 15px;
    padding: 1.5rem;
    border-left: 4px solid var(--nav-dropdown-hover-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.milestone-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgb(61, 135, 199, 0.1),
            transparent);
    transition: left 0.6s ease;
}

.milestone-card:hover::before {
    left: 100%;
}

.milestone-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: white;
}

.milestone-icon {
    width: 40px;
    height: 40px;
    background-color: var(--nav-dropdown-hover-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.milestone-text {
    font-size: 0.95rem;
    color: var(--default-color);
    margin: 0;
    text-align: left;
}

.project-name {
    color: var(--nav-dropdown-hover-color);
    font-weight: 600;
}

.distance {
    color: var(--hover-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@media (max-width: 1400px) {
    .content-container {
        min-height: 450px;
    }
}

@media (max-width: 1024px) {
    .milestones-grid {
        display: flex;
    }

    .content-container {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .container-fluid {
        /* padding: 1rem; */
    }

    .timeline-container {
        padding: 1.5rem;
    }

    .timeline-header {
        margin-bottom: 2rem;
        padding: 1rem 0;
    }

    .header h1 {
        font-size: 2rem;
    }

    .content-container {
        min-height: 250px;
    }

    .milestones-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .year-label {
        font-size: 1.2rem;
    }

    .timeline-point {
        margin: 0 0.5rem;
    }

    .period-title {
        font-size: 1.4rem;
    }

    .milestones-grid {
        display: flex;
    }

    .milestone-card {
        padding: 1rem;
    }

    .milestone-text {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .content-container {
        min-height: 330px;
    }
}

@media (max-width: 500px) {
    .timeline-header {
        /* flex-wrap: wrap; */
        gap: 1rem;
    }

    .timeline-line {
        top: 51%;
    }

    .timeline-point {
        margin: 0.5rem 0;
    }

    .year-label {
        margin-bottom: 0.8rem;
        font-size: 0.8rem;
    }

    .dot {
        width: 10px;
        height: 10px;
        border: 2px solid var(--contrast-color);
    }

    .milestones-grid {
        display: grid;
    }

    .milestone-icon {
        display: none;
    }
}

@media (max-width: 430px) {
    .content-container {
        min-height: 430px;
    }
}

@media (max-width: 320px) {
    .timeline-line {
        top: 57%;
    }
}

/*--------------------------------------------------------------
# Business Structure Section
--------------------------------------------------------------*/
.structure-container {
    background: var(--background-color);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-left: 5px solid var(--nav-dropdown-hover-color);
}

.structure-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.structure-title {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
}

.structure-desc {
    margin-bottom: 0;
}

/* Cards Layout */
.cards-structure {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    pointer-events: none;
}

.company-card {
    background: var(--background-color);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: visible;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: #3b82f6;
    z-index: 5;
}

.company-name {
    margin-bottom: 0;
    color: var(--contrast-color);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.company-info {
    position: absolute;
    top: 100%;
    /* Position below the main card */
    left: 0;
    right: 0;
    background: var(--contrast-color);
    color: var(--default-color);
    padding: 20px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.company-card:hover .company-info {
    opacity: 1;
    transform: translateY(8px);
    /* Small gap between cards */
    pointer-events: auto;
}

/* Holding Company */
.holding-card {
    width: 400px;
    background-color: var(--accent-color);
    color: white;
    border: none;
}

.sub-card {
    width: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--nav-dropdown-hover-color);
    color: white;
    border: none;
    pointer-events: auto;
}

.company-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
    transition: all 0.3s ease;
}

.company-card:hover::before {
    transform: translateY(2px);
    opacity: 0.3;
}

/* Service Cards */
.service-card {
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--hover-color);
    color: white;
    border: none;
}

.service-card .company-name {
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .structure-container {
        padding: 1.5rem;
    }

    .structure-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .cards-structure {
        gap: 10px;
        flex-wrap: nowrap;
    }

    .structure-service {
        flex-wrap: wrap;
    }

    .company-card {
        height: 60px;
    }

    .company-name {
        font-size: 16px;
    }

    .sub-card {
        height: 80px;
    }

    .holding-card,
    .sub-card,
    .service-card {
        width: 100%;
        max-width: 350px;
    }

    .service-card {
        max-width: 150px;
    }
}

@media (max-width: 425px) {
    .sub-card {
        height: 109px;
    }
}

/* Clean animations */
.company-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.company-card:nth-child(1) {
    animation-delay: 0.1s;
}

.company-card:nth-child(2) {
    animation-delay: 0.2s;
}

.company-card:nth-child(3) {
    animation-delay: 0.3s;
}

.company-card:nth-child(4) {
    animation-delay: 0.4s;
}

/*--------------------------------------------------------------
# Developer Services Section
--------------------------------------------------------------*/
.dev-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.dev-service-card {
    background: transparent;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.dev-service-card:nth-child(1) {
    animation-delay: 0.2s;
}

.dev-service-card:nth-child(2) {
    animation-delay: 0.4s;
}

.dev-service-card:nth-child(3) {
    animation-delay: 0.6s;
}

.dev-service-card:nth-child(4) {
    animation-delay: 0.8s;
}

.dev-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 15px;
    background: linear-gradient(90deg,
            var(--nav-hover-color),
            var(--accent-color));
    transition: height 0.4s ease-in-out, opacity 0.4s ease-in-out;
    z-index: 1;
}

.dev-service-card:hover {
    transform: translateY(-15px) scale(1.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.dev-service-card:hover::before {
    height: 100%;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-color);
    position: relative;
    z-index: 2;
}

.service-description {
    color: var(--default-color);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.service-list {
    list-style: none;
    position: relative;
    z-index: 2;
}

.service-list li {
    padding: 0.5rem 0;
    color: var(--nav-dropdown-hover-color);
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
}

.service-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--nav-dropdown-hover-color);
    font-weight: bold;
}

.service-note {
    margin-top: 1, 4rem;
    color: #444444;
    font-style: italic;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.service-title,
.service-description,
.service-list li,
.service-list li::before,
.service-note {
    transition: color 0.3s ease;
}

.dev-service-card:hover .service-title,
.dev-service-card:hover .service-description,
.dev-service-card:hover .service-list li,
.dev-service-card:hover .service-list li::before,
.dev-service-card:hover .service-note {
    color: var(--contrast-color);
    transition-delay: 0.1s;
}

.dev-expertise-section {
    background: transparent;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.expertise-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.expertise-item {
    background: var(--contrast-color);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border-left: 4px solid var(--nav-dropdown-hover-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.expertise-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgb(61, 135, 199, 0.1),
            transparent);
    transition: left 0.6s ease;
}

.expertise-item:hover::before {
    left: 100%;
}

.expertise-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: var(--background-color);
}

.expertise-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.expertise-text {
    color: var(--default-color);
    font-weight: 500;
}

.projects-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s forwards;
}

.projects-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.6s ease;
}

.projects-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.projects-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.projects-list {
    list-style: none;
}

.projects-list li {
    padding: 0.8rem 0;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.projects-list li:last-child {
    border-bottom: none;
}

.projects-list li:hover {
    color: #06b6d4;
    padding-left: 1rem;
}

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

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .projects-section {
        grid-template-columns: 1fr;
    }

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

/*--------------------------------------------------------------
# Managed Service Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Global Card Section
--------------------------------------------------------------*/
.global-card {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    color: var(--background-color);
    box-shadow: 0 3px 20px 3px rgba(0, 0, 0, 0.2);

    img {
        position: absolute;
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 0;
        opacity: 0.9;
        transition: opacity 0.2s ease-out;
    }

    .card-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 25%;
        /* Hanya sebagian, misal 60% */
        background-color: var(--background-color);
        border-radius: 20px 20px 0;
        transition: all 0.3s ease-in-out;
        z-index: 1;
    }

    h3,
    p {
        position: relative;
        z-index: 2;
    }

    h3 {
        position: absolute;
        inset: auto 20px 20px 20px;
        margin: 0;
        transition: inset 0.3s ease-in-out;
        color: var(--accent-color);
        /* Karena background-nya putih */
        font-weight: 700;
        font-size: 22px;
    }

    p {
        position: absolute;
        opacity: 0;
        max-width: 80%;
        transition: opacity 0.3s ease-in-out;
        color: var(--default-color);
        /* biar terlihat di background putih */
    }

    p {
        inset: auto 20px 20px 20px;
    }

    &:hover .card-overlay {
        height: 60%;
        transition: all 0.3s ease-in-out;
    }

    &:hover h3 {
        inset: auto 20px 180px 20px;
        transition: inset 0.3s ease-in-out;
    }

    &:hover p {
        opacity: 1;
        transition: opacity 0.5s 0.1s ease-in-out;
    }
}

/*--------------------------------------------------------------
# NOC Section
--------------------------------------------------------------*/
.noc {
    position: relative;
    overflow: hidden;
}

/* NOC Visualization */
.noc-visual {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    border-radius: 20px;
    /* height: 100vh; */
}

.monitoring-display {
    background: var(--background-color);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.display-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-family: "Courier New", monospace;
    font-size: 1.3rem;
    font-weight: 600;
}

.monitoring-display img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.status-lights {
    display: flex;
    gap: 0.5rem;
}

.status-light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-light.green {
    background: #ed3500;
}

.status-light.orange {
    background: #ffab40;
    animation-delay: 0.5s;
}

.status-light.blue {
    background: #b6f500;
    animation-delay: 1s;
}

.noc-info {
    margin-top: 2rem;
}

.noc-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* tampil 3 baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}

.noc-info p.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}

.noc .preventive-container .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.read-toggle {
    display: none;
    color: var(--nav-dropdown-hover-color);
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
    margin-top: 8px;
}

/* Animations */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes networkPulse {

    0%,
    100% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .noc .preventive-container .grid {
        grid-template-columns: auto;
    }

    .noc-features {
        grid-template-columns: 1fr;
    }

    .monitoring-display {
        padding: 1.5rem;
    }

    .monitoring-display img {
        height: 180px;
    }

    .noc-info p {
        font-size: 1rem;
        text-align: justify;
    }

    .read-toggle {
        display: inline-block;
        margin-top: 8px;
    }
}

/*--------------------------------------------------------------
# Submarine Cable Section
--------------------------------------------------------------*/
.submarine-cable {
    position: relative;
    padding-bottom: 0;
}

#submarine,
#inland {
    padding-bottom: 0;
}

/*--------------------------------------------------------------
# Submarine & Inland Preventive Section
--------------------------------------------------------------*/
.preventive {
    position: relative;
    overflow: hidden;
}

.preventive .content-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.image-card {
    border-radius: 20px;
    transition: transform 0.3s ease;
    overflow: hidden;
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.intro-text {
    font-size: 1.1rem;
    margin-bottom: 24px;
    line-height: 1.6;
    padding: 24px;
    background: #f1f4fa;
    border-radius: 20px;
    border-left: 4px solid var(--nav-dropdown-hover-color);
}

.system-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 16px;
}

.description {
    font-size: 1.1rem;
    margin: 0;
}

#submarine-preventive .preventive-container .grid {
    display: grid;
    /* grid-template-columns: 1fr 2fr; */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

#inland-preventive .grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.features-section {
    background: linear-gradient(135deg,
            var(--accent-color),
            var(--nav-hover-color));
    border-radius: 20px;
    padding: 40px;
    /* height: 398px; */
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.features-section img {
    height: 100%;
}

.features-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--contrast-color);
    margin-bottom: 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--background-color);
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-left: 4px solid var(--nav-dropdown-hover-color);
}

.feature-text {
    font-size: 1rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    #submarine-preventive .preventive-container .grid {
        display: flex;
        flex-direction: column;
    }

    .intro-text {
        font-size: 1rem;
    }

    .system-title {
        font-size: 1.4rem;
    }

    .preventive .text-content .description {
        font-size: 1rem;
    }

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

    .image-card {
        padding: 12px;
        border-radius: 12px;
    }

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

    .preventive {
        padding: 40px 0;
    }

    .features-section {
        padding: 24px;
    }

    .feature-text {
        font-size: 14px;
        font-weight: 500;
    }
}

/*--------------------------------------------------------------
# Submarine Corrective Section
--------------------------------------------------------------*/
.global-card2 {
    background: var(--background-color);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.global-card2:hover img {
    transform: scale(1.2);
}

.submarine-corrective {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.submarine-corrective img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: 0.6s;
}

.submarine-corrective-content {
    padding: 40px 32px;
    min-height: 374px;
}

.submarine-corrective-content .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.submarine-corrective-content .card-subtitle {
    font-size: 1rem;
    color: var(--default-color);
    margin-bottom: 22px;
    font-weight: 400;
}

.card-grid {
    display: grid;
    gap: 10px;
}

.card-item {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    background: #f1f4fa;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.card-icon {
    width: 33px;
    height: 33px;
    background-color: var(--nav-dropdown-hover-color);
    color: var(--background-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
}

.card-icon i {
    font-size: 1.3rem;
}

.card-text {
    font-size: 1rem;
    letter-spacing: -0.2px;
}

@media (max-width: 480px) {
    .submarine-corrective-content {
        padding: 30px 24px;
    }

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

/*--------------------------------------------------------------
# Inland Corrective Section
--------------------------------------------------------------*/
#inland-corrective .submarine-corrective {
    height: 200px;
}

#inland-corrective .submarine-corrective-content {
    min-height: 258px;
}

#inland-corrective .details {
    height: 231px;
}

@media (max-width: 768px) {
    #inland-corrective .details {
        height: auto;
    }
}

/*--------------------------------------------------------------
# Contractor Section
--------------------------------------------------------------*/
.contractor-business .card-item,
.developer-business .card-item {
    padding: 16px 24px;
}

.contractor-business .card-icon,
.developer-business .card-icon {
    width: 45px;
    height: 45px;
}

.contractor-business .card-icon i,
.developer-business .card i {
    font-size: 1.3rem;
}

.contractor-business .card-text,
.developer-business .card-text {
    font-size: 1.1rem;
    font-weight: 600;
}


/*--------------------------------------------------------------
# GCG Section
--------------------------------------------------------------*/

.whistleblowing p,
.protection-whistleblowers p,
.reportable-violations p {
    line-height: 1.7;
    font-size: 1.1rem;
    text-align: justify;
}

.whistleblowing .card-custom {
    background: linear-gradient(135deg,
            var(--accent-color),
            var(--nav-hover-color));
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    border: none;
    height: 100%;
}

.whistleblowing .card-title {
    font-size: 2rem;
    font-weight: bold;
    color: var(--contrast-color);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.whistleblowing .card-description {
    font-size: 1rem;
    color: var(--contrast-color);
    line-height: 1.5;
    margin-bottom: 0;
    text-align: center;
}

.protection-whistleblowers {
    background-color: var(--nav-dropdown-hover-color);
    color: var(--contrast-color);
}

.violation-item {
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
}

.violation-item:last-child {
    border-bottom: none;
}

.violation-number {
    background-color: var(--accent-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.violation-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--default-color);
    margin: 0;
}

.report-form .form-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin: auto;
    max-width: 600px;
    border: 1px solid #e9ecef;
}

.report-form .form-title {
    color: var(--accent-color);
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

.report-form .form-subtitle {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.report-form .form-label, .apply-form .form-label {
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.report-form .form-control{
    border: 2px solid #e8ecf4;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
    margin-bottom: 20px;
}

.report-form .form-control[type="file"] {
    padding: 10px 15px;
    background: #f8f9fa;
    border: 2px dashed #e8ecf4;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.report-form .form-control[type="file"]:hover {
    border-color: var();
    background: #e8ecf4;
}

.report-form .form-control[type="file"]:focus {
    border-color: var();
    background: #e8ecf4;
    border-style: solid;
}

.report-form .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(7, 55, 99, 0.227);
    background: white;
    transform: none;
}

.report-form .form-control:hover {
    border-color: var(--accent-color);
    background: white;
}

.report-form .form-control::placeholder,
.apply-form .form-control::placeholder {
    color: #aaa;
    font-style: italic;
}

.report-form .required {
    color: #e74c3c;
    margin-left: 2px;
}

.report-form .btn-submit {
    background: var(--nav-dropdown-hover-color);
    border: none;
    border-radius: 8px;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    width: 100%;
    transition: all 0.3s ease;
}

.report-form .btn-submit:hover {
    background: var(--accent-color);
    color: white;
}

.report-form .btn-submit:active {
    transform: translateY(1px);
}

.report-form .form-floating {
    margin-bottom: 20px;
}

/* .report-form .form-floating .form-control {
    padding: 20px 20px 10px 20px;
    height: auto;
}

.report-form .form-floating label {
    padding: 15px 20px;
    color: #666;
    font-weight: 500;
}

.report-form .input-group {
    position: relative;
} */

/*--------------------------------------------------------------
# Career Section
--------------------------------------------------------------*/
.apply-form h6 {
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 500;
}

/*--------------------------------------------------------------
# CSR Section
--------------------------------------------------------------*/
.card-csr {
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-csr .img{
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.card-csr .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-csr .csr-detail {
    padding: 30px;
}

.card-csr .csr-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.card-csr .csr-desc {
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4; /* jumlah baris maksimum */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    min-height: 5.8em; /* pastikan semua deskripsi punya tinggi yang sama */
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
    position: relative;
    overflow: hidden;
    background-color: var(--surface-color);
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
    padding: 42px;
    justify-content: center;
    text-align: center;
    transition: color 0.3s ease;
    z-index: 1;
}

/* Overlay untuk efek background sliding */
.stats .stats-item::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background-color: var(--accent-color);
    z-index: 0;
    transition: height 0.5s ease;
}

/* Saat hover, overlay naik dari bawah ke atas */
.stats .stats-item:hover::before {
    height: 100%;
}

/* Konten di atas overlay */
.stats .stats-main,
.stats .stats-detail {
    position: relative;
    z-index: 1;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Default: detail disembunyikan */
.stats .stats-detail {
    position: absolute;
    opacity: 0;
    transform: translateY(20px);
    padding: 30px;
}

/* Hover: tampilkan detail dan sembunyikan main */
.stats .stats-item:hover .stats-main {
    opacity: 0;
    transform: translateY(-20px);
}

.stats .stats-item:hover .stats-detail {
    opacity: 1;
    transform: translateY(0);
    color: var(--contrast-color);
}

.stats .stats-item span {
    color: var(--heading-color);
    font-size: 46px;
    display: block;
    font-weight: 600;
}

.stats .stats-item .stats-main p {
    padding: 0;
    margin: 0;
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 600;
}

.stats .stats-item .stats-detail p {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .stats .stats-item {
        padding: 20px;
    }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .img {
    border-radius: 20px;
    overflow: hidden;
}

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

.services .details {
    background: var(--background-color);
    padding: 30px;
    margin: -100px 10px 0 10px;
    transition: all 0.3s ease-in-out;
    position: relative;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
    height: 209px;
}

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

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

.services .details .stretched-desc {
    line-height: 1.5;
    font-size: 16px;
    margin-bottom: 0;
}

.services .details p {
    line-height: 1.5;
    font-size: 14px;
    margin-bottom: 0;
}

/* Default: sembunyikan tombol */
.service-item .service-detail {
    /* left: 32%; */
    inset: auto 130px 0 130px;
    bottom: 0;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 6px 18px;
    border-radius: 8px 8px 0 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    transform: translateY(10px);
}

.services .service-detail i {
    font-size: 20px;
    font-weight: 600;
}

.services .details ul {
    text-align: start;
    margin-top: 15px;
    font-size: 1.1rem;
}

/* Saat hover pada service-item, tampilkan tombol */
.service-item:hover .service-detail {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.service-item .service-detail:hover {
    background-color: #ffab40;
    transition: all 0.3s ease-in-out;
}

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

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

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

@media (max-width: 1400px) {
    .services .details {
        height: 245px;
    }

    .service-item .service-detail {
        inset: auto 60px 0 60px;
    }
}

@media (max-width: 1024px) {
    .services .details {
        height: 245px;
    }

    .service-item .service-detail {
        inset: auto 80px 0 80px;
    }
}

@media (max-width: 417px) {
    .services .details {
        height: max-content;
        padding-bottom: 45px;
    }

    .services .details p {
        font-size: 12px;
    }

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

    .service-item .service-detail {
        inset: auto 80px 0 80px;
    }
}

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

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

.clients .client-logo img {
    padding: 20px 40px;
    max-width: 90%;
    transition: 0.3s;
    opacity: 0.5;
    filter: grayscale(100);
}

.clients .client-logo img:hover {
    filter: none;
    opacity: 1;
}

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

.clients-marquee {
    overflow: hidden;
    padding: 40px 0;
    position: relative;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee-content img {
    height: 60px;
    margin: 0 40px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: 0.3s ease-in-out;
}

.marquee-content img:hover {
    opacity: 1;
    filter: none;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
    border: 0;
}

.features .nav-link {
    background-color: var(--surface-color);
    color: var(--heading-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    padding: 15px 20px;
    transition: 0.3s;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
}

.features .nav-link i {
    padding-right: 15px;
    font-size: 48px;
}

.features .nav-link h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.features .nav-link:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.features .nav-link.active {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}

.features .nav-link.active h4 {
    color: var(--contrast-color);
}

@media (max-width: 768px) {
    .features .nav-link i {
        padding: 0;
        line-height: 1;
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .features .nav-link {
        padding: 15px;
    }

    .features .nav-link i {
        font-size: 24px;
    }
}

.features .tab-content {
    margin-top: 30px;
}

.features .tab-pane h3 {
    color: var(--heading-color);
    font-weight: 700;
    font-size: 26px;
}

.features .tab-pane ul {
    list-style: none;
    padding: 0;
}

.features .tab-pane ul li {
    padding-bottom: 10px;
}

.features .tab-pane ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--accent-color);
}

.features .tab-pane p:last-child {
    margin-bottom: 0;
}

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

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

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

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

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

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

.testimonials .testimonial-item .testimonial-img {
    width: 100px;
    border-radius: 50%;
    border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    margin: 0 0 15px 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

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

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 26px;
    line-height: 0;
}

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

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

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}

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

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

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

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

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

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.portfolio-grid-contractor {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.project-card {
    background: var(--background-color);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    opacity: 0;
    position: relative;
}

.project-card:hover {
    transform: translateY(-20px) scale(1.02);
    border-color: rgb(59, 130, 246, 0.2);
}

.project-image {
    width: 100%;
    object-fit: fill;
    transition: transform 0.6s ease;
}

/* Varied image heights for dynamic layout */
/* .project-card:nth-child(odd) .project-image {
    height: 280px;
}

.project-card:nth-child(even) .project-image {
    height: 320px;
}

.project-card:nth-child(3n) .project-image {
    height: 240px;
} */

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

.project-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1.3;
    margin-bottom: 20px;
}

.project-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.detail-section,
.detail-title,
.detail-content {
    margin-bottom: 0;
    line-height: 1.5;
}

.detail-title {
    font-size: 18px;
    font-weight: 600;
}

.detail-content {
    font-size: 14px;
    font-weight: 400;
    padding: 0 2rem;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgb(59, 130, 246, 0.2);
    font-size: 0.9rem;
}

.project-link:hover {
    background: var(--background-color);
    transform: translateY(-2px);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            var(--background-color) 0%,
            #e0f2fe 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

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

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-grid-contractor {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .project-content {
        padding: 1.5rem;
    }

    .project-links {
        flex-direction: column;
    }
}

/* Special styling for featured project */
.project-card.featured {
    grid-column: span 2;
}

.project-card.featured .project-image {
    height: 400px;
}

@media (max-width: 1024px) {
    .project-card.featured {
        grid-column: span 1;
    }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
    position: relative;
}

.team .member .pic {
    overflow: hidden;
    margin-bottom: 50px;
    border-radius: 20px;
}

.team .member .img-fluid {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: top;
    transition: 0.6s;
}

.team .member:hover .img-fluid {
    transform: scale(1.2);
}

.team .member .member-info {
    background-color: var(--surface-color);
    color: var(--default-color);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: -50px;
    left: 20px;
    right: 20px;
    border-radius: 20px;
    padding: 20px 15px;
    overflow: hidden;
    transition: 0.5s;
}

.team .member h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 20px;
    position: relative;
    padding-bottom: 10px;
}

.team .member h4::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg,
            var(--accent-color),
            var(--nav-hover-color));
    bottom: 0;
    left: 0;
}

.team .member span {
    font-style: italic;
    display: block;
    font-size: 16px;
}

.team .member .social {
    position: absolute;
    right: 15px;
    bottom: 15px;
}

.team .member .social a {
    transition: color 0.3s;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.team .member .social a:hover {
    color: var(--accent-color);
}

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 24px 0 30px 0;
}

.contact .info-item i {
    font-size: 20px;
    color: var(--accent-color);
    width: 56px;
    height: 56px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
    font-size: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .php-email-form {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    padding: 30px;
}

@media (max-width: 575px) {
    .contact .php-email-form {
        padding: 20px;
    }
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: var(--surface-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type="submit"] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

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

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

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

.portfolio-details .portfolio-info {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

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

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

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

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
    background-color: var(--surface-color);
    padding: 10px 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 20px;
}

.service-details .services-list a {
    display: block;
    line-height: 1;
    padding: 8px 0 8px 15px;
    border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
    margin: 20px 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
}

.service-details .services-list a.active {
    color: var(--heading-color);
    font-weight: 700;
    border-color: var(--accent-color);
}

.service-details .services-list a:hover {
    border-color: var(--accent-color);
}

.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700;
}

.service-details h4 {
    font-size: 20px;
    font-weight: 700;
}

.service-details p {
    font-size: 15px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color);
}
/*--------------------------------------------------------------
# News Section
--------------------------------------------------------------*/
.card-news {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-news .img{
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.card-news .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-news a {
    background-color: var(--accent-color);
    border-radius: 8px;
    padding: 6px 12px;
    width: 40%;
}

.card-news a:hover {
    background-color: var(--nav-dropdown-hover-color);
}

.card-news .news-detail {
    padding: 30px;
}

.card-news .news-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 20px;
    line-height: 1.5em;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* maksimal 2 baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3em; /* tinggi 2 baris */
}

.card-news .news-desc {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Admin Login Section Section
--------------------------------------------------------------*/
.card-login {
    padding: 30px;
    border: 2px solid #e9ecef;
    box-shadow: 0 14px 20px #00000085;
}

.card-login h4{
    font-size: 34px;
    font-weight: 600;
    font-family: var(--heading-font);
}

.card-login .form-control {
    padding: 8px 16px;
}

.card-login .btn {
    background-color: var(--nav-dropdown-hover-color);
    padding: 10px 20px;
}

.card-login .btn:hover {
    background-color: var(--accent-color);
    padding: 10px 20px;
}

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