* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif; /* Sama di semua halaman */
}

body {
    background-color: #f5f5f5; /* Ganti dengan warna yang diinginkan */
}
        
/* Header */
.top-bar {
    background-color: #1f1e1d;
    padding: 5px 15px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: white;
    font-size: 12px;
}

.top-bar a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 20px;
}

/* Main Navbar */
nav.main-nav {
    background-color: #333;
    color: white;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 0.2px solid #ff9900; /* Border Bottom */
}

nav.main-nav .logo img {
    height: 50px;
}

.nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    position: relative; /* For dropdown positioning */
    margin: 0 4px;
}

.nav-list li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease; /* Animation on hover */
}

.nav-list li a:hover {
    color: #ff9900;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    display: none; /* Initially hidden */
    position: absolute;
    top: 100%; /* Position below the parent menu */
    left: 0;
    background-color: #444;
    list-style: none;
    padding: 10px 0;
    min-width: 190px;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 10px 20px;
    color: white;
}

/* Show dropdown on hover */
.nav-list .dropdown:hover .dropdown-menu {
    display: block;
}

/* Membership Dropdown */
.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-dropdown .dropdown-toggle {
    color: white;
    text-decoration: none;
    font-size: 12px;
    cursor: pointer;
}

.language-dropdown .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #444;
    list-style: none;
    width: 10px; /* Mengatur lebar menu dropdown */
    max-width: 10px; /* Menjaga lebar menu tetap kecil */
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 10; /* Increase z-index to ensure it's above other content */
    opacity: 0; /* Initially hidden */
    visibility: hidden; /* Initially hidden */
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.language-dropdown .dropdown-menu li {
    padding: 1px 1px;
}

.language-dropdown .dropdown-menu li a {
    color: white;
    text-decoration: none;
    display: block;
    font-size: 12px;
}

.language-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1; /* Make the menu visible */
    visibility: visible; /* Make the menu visible */
}

.language-dropdown .dropdown-menu li:hover {
    background-color: #f4b400; /* Highlight on hover */
}

/* Language Dropdown */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #444;
    list-style: none;
    padding: 10px 20px;
    min-width: 175px;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dropdown-menu a {
    padding: 10px 0px;
    color: white;
}


.hamburger {
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* Responsif untuk layar kecil */
@media (max-width: 768px) {
    .nav-list {
        display: flex; /* Ubah ke flex agar properti transform bekerja */
        flex-direction: column;
        gap: 10px;
        position: fixed;
        top: 0;
        right: 0;
        height: 100%;
        background-color: #333;
        width: 80%;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        overflow-y: auto;

        /* Animasi default */
        opacity: 0; /* Awalnya tidak terlihat */
        transform: translateX(100%); /* Awalnya keluar layar */
        pointer-events: none; /* Agar tidak bisa diklik saat tersembunyi */
        transition: opacity 0.3s ease, transform 0.3s ease; /* Animasi smooth */
    }

    /* Tampilkan menu dengan animasi */
    .nav-list.show {
        opacity: 1; /* Tampilkan menu */
        transform: translateX(0); /* Geser ke posisi normal */
        pointer-events: auto; /* Aktifkan klik saat terlihat */
    }

    .hamburger {
        position: absolute; /* Tetapkan posisi tombol */
        top: 45px;
        right: 10px; /* Selalu di kanan atas */
        z-index: 1100; /* Pastikan tombol di atas menu */
        cursor: pointer;

    }

    .right-nav {
        flex-direction: column;
        gap: 10px;
        align-items: flex-end;
    }
}

/* Content */
/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px;
    text-align: center;
    margin-top: 60px;
}

.hero h1 {
    margin: 0;
    font-size: 36px;
    font-weight: bold;
    color: #333;
}

.hero p {
    margin-top: 10px;
    font-size: 18px;
    color: #666;
}

.highlight-green {
    color: green;
}

.highlight-orange {
    color: orange;
}

/* About Section */
.about-section {
    margin: 50px auto;
    max-width: 1200px;
    border-radius: 15px; /* Membulatkan tepi */
    overflow: hidden; /* Menyembunyikan elemen yang keluar */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); /* Shadow untuk kedalaman */
    position: relative;
}

/* Gambar latar belakang penuh */
.about-image {
    position: relative;
    width: 100%;
    height: 500px; /* Tinggi fixed untuk tampilan konsisten */
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Foto menyesuaikan kotak */
}

/* Overlay untuk konten */
.about-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Transparansi hitam */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff; /* Warna teks putih */
    padding: 20px;
    text-align: center;
}

/* Logo */
.about-logo {
    width: 130px;
    height: 75px;
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.about-logo:hover {
    transform: scale(1.1); /* Zoom kecil pada hover */
}

/* Heading */
.about-content-overlay h2 {
    font-size: 28px; /* Ukuran lebih besar */
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase; /* Huruf kapital */
    letter-spacing: 1.2px; /* Spasi antar huruf */
}



/* Paragraf */
.about-content-overlay p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #eee; /* Warna abu-abu terang */
    max-width: 800px; /* Lebar maksimum teks */
}


/* 2024 at Glance Section */
.glance-section {
    background-color: #ffffff;
    margin: 50px auto;
    padding: 20px 30px;
    max-width: 1200px;
    border-radius: 10px; /* Add rounded corners for a modern look */
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}

/* Header with background image */
.glance-header {
    background: url('../foto/outlookfoto/2024atglance.png') no-repeat center center;
    background-size: cover;
    padding: 30px;
    text-align: center;
    border-radius: 10px; /* Add rounded corners for a modern look */
    margin-bottom: 30px;
}

.glance-header h1 {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
}

.highlight-yellow {
    color: #f4b400;
}

/* Content styles */
.glance-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.glance-item {
    padding: 15px;
    border-left: 4px solid #f4b400;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.glance-item h2 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.glance-item h3 {
    font-size: 18px;
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
}

.glance-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* General Styles */
.outlook-section {
    text-align: center;
    background-color: #fff; /* White background for the box */
    padding: 30px; /* Increase padding for better spacing */
    margin: 20px auto; /* Center the section with spacing above and below */
    max-width: 1200px; /* Match width to make it similar to "2024 at Glance" */
    border-radius: 10px; /* Add rounded corners for a modern look */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

.text-content ul li {
    font-size: 13px;
    color: #2b2626;
}

.header-container {
    position: relative;
    width: 100%;
    max-width: 1200px; /* Mengikuti ukuran container */
    margin: 0 auto; /* Tengah berdasarkan container */
    height: 250px; /* Tinggi header */
    overflow: hidden;
    border-radius: 10px; /* Sudut membulat agar konsisten */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow sama seperti section */
}

.outlook-image {
    background-image: url('../foto/outlookfoto/outlook2025.png'); /* Ganti dengan path gambar Anda */
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.outlook-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay hitam transparan */
    z-index: 1;
}

.outlook-image h1 {
    position: relative;
    font-size: 40px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Slider Styles */
.slider-container {
    position: relative;
    width: 80%;
    max-width: 1200px;
    margin: 20px auto;
    overflow: hidden;
    background: #ffffff;
}

.slide-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 0 0 100%;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

.slide-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:10px;
    padding: 0 40px; /* Add padding for more spacing */
}

.text-content {
    flex: 1;
    text-align: left;
    margin-left: 50px; /* Shift text content to the right */
}

.text-content h2 {
    font-size: 30px; /* Larger font size for header */
    margin-bottom: 10px;
    color: #333;
    font-weight: bold;
}

.text-content p {
    font-size: 20px; /* Larger font size for paragraph */
    margin-bottom: 10px;
    color: #666;
}

.text-content ul {
    list-style: none;
    padding: 0;
}

.text-content ul li {
    font-size: 18px; /* Larger font size for list items */
    color: #666;
    margin-bottom: 5px;
}

.image-content {
    flex: 1;
    text-align: center;
}

.image-content img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
}

/* Navigation Buttons */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffa500;
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 13px 25px;
    cursor: pointer;
    border-radius: 50%;
    outline: none;
    z-index: 1000; /* Ensure buttons appear above other content */
    opacity: 0.9;
    display: block;
}

.prev-btn {
    left: 0px; /* Adjust button to stay farther left */
}

.next-btn {
    right: 10px; /* Adjust button to stay farther right */
}

.prev-btn:hover, .next-btn:hover {
    background: #333;
    opacity: 1;
}

/* Ensure Buttons are Always Visible on Hover */
.slider-container:hover .prev-btn,
.slider-container:hover .next-btn {
    display: block;
}


  /* Pemisah antar bagian */
.section-gap {
    width: 300%;
    height: 50px; /* Tinggi lebih besar untuk tampilan lebih lebar */
    background: url('../foto/outlookfoto/lspbi2025.png') center/cover no-repeat;
    filter: brightness(0.2); 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Tambahkan sedikit bayangan agar terlihat rapi */
  }

.highlight-yellow {
    color: #f4b400; /* Warna kuning */
}

/* Header Section Styling */
.header-container {
    position: relative;
    width: 100%;
    max-width: 1200px; /* Mengikuti ukuran container */
    margin: 0 auto; /* Tengah berdasarkan container */
    height: 250px; /* Tinggi header */
    overflow: hidden;
    border-radius: 10px; /* Sudut membulat agar konsisten */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow sama seperti section */
}

.background-image {
    background-image: url('../foto/outlookfoto/lspbi2025.png'); /* Ganti dengan path gambar Anda */
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.background-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay hitam transparan */
    z-index: 1;
}

.background-image h1 {
    position: relative;
    font-size: 40px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-weight: 700;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* General Section Styling */
.lsp-bi-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #fff;
    padding: 40px 20px;
    margin: 20px auto;
    max-width: 1200px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    gap: 10px;
}


/* Left Content (Text Section) */
.content-text {
    flex: 1 1 45%;
    font-family: 'Poppins', sans-serif;
    padding-right: 20px;
}

.content-text ul {
    list-style: none;
    padding: 0;
    color: #333;
    font-size: 16px;
    line-height: 1.8;
}

.content-text ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 20px;
}

.content-text ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffa500;
    font-size: 20px;
}

/* Right Content (Carousel Section) */
.content-carousel {
    flex: 1 1 50%;
    position: relative;
    border: 2px solid #ddd; /* Warna border lebih lembut */
    border-radius: 15px; /* Sudut membulat */
    overflow: hidden;
    height: 540px; /* Tinggi slider */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow untuk efek kedalaman */
    background-color: #f9f9f9; /* Warna latar belakang */
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Pastikan elemen tersembunyi */
}

.slider img {
    position: absolute; /* Untuk menumpuk gambar */
    width: 100%;
    height: 100%;
    object-fit: cover; /* Proporsi gambar tetap */
    opacity: 0; /* Mulai transparan */
    transform: scale(1.1); /* Zoom out sedikit */
    transition: opacity 1s ease-in-out, transform 1s ease-in-out; /* Animasi transisi */
}

.slider img.active {
    opacity: 1; /* Gambar aktif terlihat */
    transform: scale(1); /* Zoom ke ukuran normal */
    z-index: 1; /* Pastikan gambar aktif berada di atas */
}

/* Footer Styling */
.footer {
    background-color: #333; /* Background hitam */
    color: #fff; /* Teks putih */
    padding: 30px 0; /* Spasi atas-bawah */
    font-family: Arial, sans-serif;
    border-top: 1px solid #ff9900; /* Garis oranye di atas */
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
    margin-top: 20px;
}

.footer-logo {
    max-width: 100px; /* Atur lebar maksimal logo */
    margin-bottom: 20px; /* Jarak bawah */
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-links li {
    display: inline-block;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffb900; /* Warna hover hijau */
}

.social-icons {
    margin: 20px 0;
}

.social-icons a {
    margin: 0 10px;
    color: #ffb900; /* Warna ikon hijau */
    font-size: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #fff; /* Warna hover putih */
}

.footer-copyright {
    font-size: 12px;
    color: #aaa; /* Warna abu-abu */
    margin-top: 20px;
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: wrap; /* Susun secara vertikal */
        gap: 10px;
    }
    

    .social-icons {
        flex-wrap: wrap; /* Agar ikon menyesuaikan */
        gap: 10px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-section, 
    .glance-section, 
    .outlook-section, 
    .lsp-bi-section,
    .header-container{
        max-width: 90%; /* Lebar lebih kecil untuk layar yang lebih kecil */
    }

    .about-content-overlay p,
    .text-content p,
    .text-content h2,
    .glance-item h2,
    .glance-item p {
        font-size: 90%; /* Perkecil font agar lebih cocok */
    }

    .about-logo {
        width: 100px; /* Perkecil ukuran logo */
        height: auto;
    }

    .text-content ul li {
        font-size: 13px;
        color: #2b2626;
    }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .about-section,
    .glance-section,
    .outlook-section {
        padding: 15px;
    }

    .text-content {
        margin-left: 20px; /* Kurangi margin kiri */
    }

    .prev-btn, .next-btn {
        font-size: 10px;
        padding: 10px 15px;
    }

    .text-content ul li {
        font-size: 13px;
        color: #2b2626;
    }

    .slider img {
        transform: scale(1); /* Hindari zoom di layar kecil */
    }
    
    .content-carousel {
        height: 570px; /* Tinggi lebih rendah */
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 20px;
        margin-top: 40px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
    }

    .about-section {
        flex-direction: column;
    }

    .about-image {
        height: 300px; /* Tinggi lebih kecil untuk layar kecil */
    }

    .about-content-overlay h2 {
        font-size: 20px;
    }

    .about-content-overlay p {
        font-size: 14px;
    }

    .glance-header h1 {
        font-size: 24px;
    }

    .glance-item {
        padding: 10px;
    }

    .slider-container {
        width: 95%; /* Lebar slider hampir penuh di layar kecil */
    }

    .text-content {
        margin-left: 0;
    }

    .prev-btn, .next-btn {
        font-size: 10px;
        padding: 10px 15px;
    }

    .text-content ul li {
        font-size: 12px;
        color: #2b2626;
    }

    .content-carousel {
        height: 950px; /* Tinggi lebih rendah */
    }
}

@media (max-width: 576px) {
    .about-section,
    .glance-section,
    .outlook-section {
        padding: 15px;
    }

    .hero h1 {
        font-size: 20px;
    }

    .hero p {
        font-size: 12px;
    }

    .about-image {
        height: 200px; /* Tinggi lebih kecil untuk layar kecil */
    }

    .about-logo {
        width: 80px; /* Perkecil ukuran logo lebih jauh */
    }

    .about-content-overlay h2 {
        font-size: 12px;
    }

    .header-container {
        flex-direction: column;
    }

    .about-content-overlay p {
        font-size: 8px;
    }

    .glance-item h2 {
        font-size: 16px;
    }

    .glance-item p {
        font-size: 14px;
    }

    .slider img {
        object-fit: contain; /* Pastikan gambar tidak terpotong */
    }

    .prev-btn, .next-btn {
        font-size: 10px;
        padding: 10px 15px;
    }

    .content-carousel {
        height: 300px; /* Tinggi lebih kecil */
    }

    .content-text ul li {
        font-size: 12px;
    }

    .text-content ul li {
        font-size: 12px;
    }

    .content-carousel {
        height: 980px; /* Tinggi lebih rendah */
    }
    
}