@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@300;400;500;600;700&display=swap');
        
        :root {
            --primary: #00c4ff;
            --secondary: #0d1b2a;
            --light-bg: #f8f9fa;
            --dark-bg: #1a1a1a;
            --text-light: #ffffff;
            --text-dark: #333333;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
            padding-top: 70px;
            background-color: #fff;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(to right bottom, rgb(0, 195, 255), rgba(13, 27, 42, 0.7)), url(../images/hero-bg.jpg) center no-repeat;
            background-size: cover;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 1;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: -1;
        }

        /* Service Cards */
        .service-card {
            transition: var(--transition);
            background-color: #fff;
            height: 100%;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            border-radius: 8px;
            overflow: hidden;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .service-card i {
            transition: var(--transition);
        }

        .service-card:hover i {
            transform: scale(1.1);
        }

        .service-card h5 {
            font-size: 1.1rem;
            color: #153857;
        }

        .service-card p {
            color: #555;
        }

        /* Project Cards */
        .project-card img {
            transition: var(--transition);
            object-fit: cover;
            height: 250px;
            width: 100%;
        }

        .project-card:hover img {
            transform: scale(1.05);
        }

        /* Footer Icons */
        footer i {
            font-size: 1.2rem;
        }

        /* About Section */
        .about-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .about-image:hover {
            transform: scale(1.03);
        }

        @media (min-width: 768px) {
            .about-text,
            .about-image-wrapper {
                min-height: 400px;
            }
        }

        /* Visi & Misi Section */
        #visi-misi {
            background: linear-gradient(to bottom, #f8f9fa, #ffffff);
        }

        .visi-misi-col {
            padding: 3rem;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .visi-misi-col:hover {
            transform: translateY(-5px);
        }

        /* Navbar Custom */
        .navbar-custom {
            background-color: #153857;
            transition: var(--transition);
        }

        .navbar-dark .navbar-brand,
        .navbar-dark .nav-link,
        .navbar-dark .navbar-toggler-icon {
            color: #ffffff !important;
        }

        .navbar-custom.scrolled {
            background-color: #153857;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        /* Lead Text */
        .lead strong {
            font-weight: 700;
        }

        .lead em {
            font-style: italic;
            color: #DDDAD0;
        }

        /* Grid Proyek */
        #projectGrid .col-md-4,
        #moreProjects .col-md-4 {
            transition: var(--transition);
        }

        #projectGrid .col-md-4:hover,
        #moreProjects .col-md-4:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* Tombol Lihat Selengkapnya */
        #toggleProjects {
            background-color: #00BFFF;
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            transition: var(--transition);
        }

        #toggleProjects:hover {
            background-color: #0099CC;
        }

        @media (max-width: 768px) {
            #projectGrid .col-md-4,
            #moreProjects .col-md-4 {
                width: 50%;
            }
        }

        /* Brand Carousel */
        #brand-carousel {
            display: flex;
            min-width: max-content;
            animation: scrollBrands 60s linear infinite;
            will-change: transform;
        }

        .brand-logo {
            flex-shrink: 0;
            transition: var(--transition);
            height: 50px;
        }

        .brand-logo:hover {
            transform: scale(1.1);
        }

        @keyframes scrollBrands {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        @media (max-width: 768px) {
            #brand-carousel {
                animation: scrollBrandsMobile 60s linear infinite;
            }

            @keyframes scrollBrandsMobile {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(-50%);
                }
            }

            .brand-logo {
                height: 40px !important;
            }
        }

        /* Card Image */
        .card-img-top {
            object-fit: cover;
            height: 250px;
            width: 100%;
        }

        /* Form Message */
        #form-message {
            display: none;
        }

        /* Contact Info Section */
        .contact-info {
            background-color: #1d3557;
        }

        .card.bg-secondary {
            background-color: #34495e;
        }

        .text-warning {
            color: #f39c12;
        }

        .card {
            transition: var(--transition);
        }

        .card:hover {
            transform: translateY(-5px);
        }

        .visi-misi-col .card-body {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .list-unstyled li {
            margin-bottom: 1rem;
        }

        .custom-bullets li::before {
            content: "➤";
            font-size: 1.2em;
            margin-right: 0.5rem;
        }

        /* AOS Animation Base */
        [data-aos] {
            opacity: 0;
            transition-property: opacity, transform;
        }

        [data-aos].aos-animate {
            opacity: 1;
            transform: none;
        }

        /* Project Details - Tampilan penuh di halaman */
        .project-details {
            padding: 2rem;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .project-details .row {
            display: flex;
            align-items: stretch;
        }

        .project-details-img {
            border-radius: 8px;
            overflow: hidden;
            height: 100%;
        }

        .project-details-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .project-details-img img:hover {
            transform: scale(1.02);
        }

        .project-details-content {
            padding-left: 2rem;
        }

        @media (max-width: 768px) {
            .project-details-content {
                padding-left: 0;
                padding-top: 1.5rem;
            }
            
            .project-details .row {
                flex-direction: column;
            }
        }

        /* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.page-item.active .page-link {
    background-color: #00BFFF;
    border-color: #00BFFF;
}

.page-link {
    color: #000;
    transition: all 0.3s ease;
}

.page-link:hover {
    background-color: #00BFFF;
    color: white;
    text-decoration: none;
}

/* Mobile View for Projects */
@media (max-width: 768px) {
    #projectGrid .col-md-4,
    #projectGrid .col-sm-6 {
        width: 100%;
    }
    
    .project-card img {
        height: 200px;
    }
}

/* Pastikan background navbar selalu terlihat */
.navbar-custom {
    background-color: #153857 !important;
    transition: all 0.3s ease;
}

/* Untuk memastikan navbar tidak transparan meskipun di-scroll */
.navbar-custom.scrolled {
    background-color: #153857 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Pastikan navbar fixed-top memiliki background */
.fixed-top {
    background-color: #153857 !important;
}

/* Style untuk produk */
.product-card {
    transition: var(--transition);
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    min-height: 400px; /* Ukuran minimal agar semua card sama */
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-image-container {
    height: 200px; /* Ukuran gambar tetap */
    overflow: hidden;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .product-card {
        min-height: 350px;
    }
    
    .product-image-container {
        height: 150px;
    }
}