    /* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Poppins', 'Maven Pro', sans-serif;
}

:root {
    --BlueColor: #001f3f;
    --YellowColor: #ffd700;
    --SoftWhiteColor: #eeeeee;
    --PaddingSection: 3rem 2rem;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section - Combined Styles */
.hero {
    position: relative; 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    overflow: hidden; 
    color: #fff; 
}

.hero img {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Membuat lapisan gradasi (overlay) */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2; 
    
    background: linear-gradient(to right, #001f3f 45%, rgba(0, 31, 63, 0.0) 75%);
}


.hero .container {
    position: relative; 
    z-index: 3; 
    width: 100%;
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 2rem;
    box-sizing: border-box;
}

/* Area konten teks */
.hero .hero-content {
    max-width: 50%; 
    text-align: left;
}

.hero .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Tombol */
.hero .btn {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid #fff;
    border-radius: 50px;
    transition: background-color 0.3s, color 0.3s;
}

.hero .btn:hover {
    background-color: #fff;
    color: #001f3f;
}
/* .hero {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: 30% center;
    min-height: 480px;
    height: auto;
}

.hero img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60vw;
    object-fit: cover;
    object-position: right center;
    z-index: 0;
    margin: 0;
    padding: 0;
}

.hero-content {
    display: flex;
    flex-flow: column;
    position: relative;
    max-width: 500px;
    margin-left: 400px;
    height: 480px;
}

.hero-content h1 {
    margin-top: 100px;
    padding: 10px;
}

.hero-content p {
    padding: 10px;
} */

/* .hero, .heros {
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero::before, .heros::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    z-index: 0;
}

.heros h1 {
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.heros p {
    color: var(--YellowColor);
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 500px;
}



.hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero .subheading {
    font-size: 2.2rem;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 500px;
}

/* Button Styles */
.hero-buttons {
    display: flex;
    gap: 15px;
    padding: 10px;
}

.btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: white;
    color: #2563eb;
}

.btn-primary:hover {
    background-color: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-text {
    color: white;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    padding: 0;
    background: transparent;
    border: none;
    position: relative;
}

.btn-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.btn-text:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Stats Section */
.stats {
    padding: 8rem 0;
    background: #f0f7ff;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.stats h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.stats .subtitle {
    font-size: 1.25rem;
    color: #3b82f6;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: #e0f2fe;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 150px;
    height: 150px;
    background: #bae6fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.stat-card h3 {
    font-size: 2.2rem;
    color: #1d4ed8;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-card h4 {
    font-size: 1.25rem;
    color: #1e40af;
    margin-bottom: 1rem;
    font-weight: 600;
}

.stat-card p {
    font-size: 1rem;
    color: #1e3a8a;
    line-height: 1.6;
}

/* Values Section */
.values {
    background-image: url("../img/bg-values.png");
    background-size: cover;
    background-position: top;
    
    padding: 8rem 0;
    width: 100%;
    overflow: hidden;
}

.values h2 {
    text-align: center;
    color: #1e3a8a;
    margin-bottom: 30px;
    font-size: 2rem;
}

.values-scroll-wrapper {
    overflow-x: auto;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

.values-grid {
    display: inline-flex;
    gap: 15px;
    padding: 20px 0;
    white-space: nowrap;
}

.value-card {
    min-width: 340px;
    height: 280px;
    background: #f6f9ff;
    border-radius: 18px;
    border: 2px solid #bfdbfe;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 15px 12px rgba(37,99,235,0.06);
}

.value-card img {
    width: 100px;
    height: 100px;
    margin-bottom: 16px;
    filter: drop-shadow(0 2px 8px #e0e7ef);
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.value-card p {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
    white-space: normal;
}

nav-container {
        background-color: #1a2a44;
        padding: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        background-image: linear-gradient(135deg, #1a2a44, #0d1b2a);
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .nav-dot {
        width: 5px;
        height: 5px;
        background-color: #fff;
        border-radius: 50%;
        display: inline-block;
        margin: 0 2px;
    }

    .nav-button {
        width: 30px;
        height: 30px;
        background-color: transparent;
        border: 2px solid #fff;
        border-radius: 50%;
        cursor: pointer;
        font-size: 16px;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: background-color 0.3s;
    }

    .nav-button:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

    
/* Container for scroll buttons and dots */
.values-scroll-buttons {
    text-align: right;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Scroll buttons */
.scroll-button {
    background-color: white;
    color: var(--BlueColor);
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);

    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.scroll-button.left {
    margin-right: 12px;
}

.scroll-button.right {
    margin-left: 0;
}

.scroll-button:hover {
    background-color: var(--BlueColor);
    color: var(--SoftWhiteColor);
    border: 2px solid var(--SoftWhiteColor);
    transform: scale(1.05);
}

.scroll-button:active {
    transform: scale(0.95);
}

/* Dots container */
.values-dots {
    margin-left: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Dot indicators */
.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--YellowColor);
    transform: scale(1.2);
}

.dot:hover:not(.active) {
    background-color: #93c5fd;
    transform: scale(1.1);
}

.values-scroll-wrapper {
    overflow-x: hidden; 
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}


.values-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.services {
    padding: 150px 0;
    background-color: #021B29;
    color: white;
    position: relative;
}

.services h2 {
    color: #1e3a8a;
    font-size: 2rem;
    margin-bottom: 50px;
    text-align: center;
}

.services-slider-wrapper {
    overflow-x: auto;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 10px 0;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 24px;
    color: #333;
    min-width: 280px;
}

.service-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2563eb;
}

.service-card p {
    font-size: 0.9rem;
    color: #c79a46;
    line-height: 1.5;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    max-width: 100%;
    max-height: 120px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    line-clamp: 6;
    -webkit-box-orient: vertical;
}


/* Scrollbar Styling */
.values-scroll-wrapper::-webkit-scrollbar {
    height: 6px;
}

.values-scroll-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.values-scroll-wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.values-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Responsive Adjustments */
@media only screen and (max-width: 1100px) {
    header {
        position: sticky;
        top: 0;
    }
    
    .con-header {
        width: 90%;
        padding: 0 20px;
    }
    
    .con-header nav {
        position: absolute;
        left: -300px;
        top: 0;
        width: 280px;
        height: 100vh;
        background-color: var(--BlueColor);
        transition: 0.2s;
        box-shadow: 2px 0 20px 0 rgba(0, 0, 0, 0.5);
    }
    
    #nav_check:checked ~ nav {
        left: 0;
    }
    
    nav .logo {
        display: flex;
        color: white;
        margin-top: 1.5rem;
        font-size: 18px;
        height: 70px;
        display: flex;
        align-items: center;
        margin-left: 30px;
    }
    
    nav .logo img {
        height: 45px;
    }
    
    nav .logo span {
        color: var(--YellowColor);
    }
    
    .con-header nav ul li a {
        margin-bottom: 5px;
        padding: 10px 15px;
        border-radius: 5px;
        color: white;
    }
    
    .con-header nav ul li a.active {
        background-color: var(--YellowColor);
        color: var(--BlueColor);
    }
    
    .con-header nav ul {
        display: block;
        padding: 0 20px;
        margin-top: 30px;
    }
    
    .hamburger {
        display: block;
    }

    .hero-nav nav ul li a {
        display: block;
        margin: 0 2px;
        font-size: 13px;
        font-weight: 500;
        padding: 8px 10px;
    }
}

@media (max-width: 768px) {
    .hero, .heros {
        padding: 80px 0;
        text-align: center;
        height: auto;
    }
    
    .hero h1, .heros h1 {
        font-size: 2rem;
    }
    
    .hero .subheading {
        font-size: 1.6rem;
    }
    
    .hero p, .heros p {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .stats-grid,
    .values-grid,
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .value-card {
        min-width: 260px;
        height: auto;
        padding-bottom: 25px;
    }
    
    .stats {
        padding: 3rem 1rem;
    }
    
    .stats h2 {
        font-size: 1.8rem;
    }
    
    .stats .subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-icon {
        width: 120px;
        height: 120px;
        margin-bottom: 1rem;
    }
    
    .stat-card h3 {
        font-size: 1.8rem;
    }
    
    .stat-card h4 {
        font-size: 1.1rem;
    }
    
    .services-grid {
        display: inline-flex;
        grid-template-columns: none;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .hero h1, .heros h1 {
        font-size: 1.8rem;
    }
    
    .hero .subheading {
        font-size: 1.4rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .stat-icon {
        width: 100px;
        height: 100px;
    }
    
    .con-header {
        height: 60px;
        padding: 0 15px;
    }
    
    .logo {
        width: 100px;
        height: 35px;
    }
}