        /* Menggunakan font Poppins untuk tampilan yang lebih modern */
        body {
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
        }

        /* Palet Warna dari Gambar */
        :root {
            --primary-blue: #0D2D5B;
            --primary-red: #D72429;
            --primary-yellow: #FBC02D;
            --text-light: #f8f9fa;
            --text-dark: #343a40;
        }
        /* Navbar Styles */
        .navbar {
            box-shadow: 0 4px 12px rgba(13, 45, 91, 0.15);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
            background-color: white;
            transition: all 0.3s ease;
            padding: 15px 0;
            border-bottom: 3px solid var(--primary-blue);
        }

        /* Add margin-top to body to account for fixed navbar */
        body {
            margin-top: 76px;
        }

        .navbar-scrolled {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .nav-link {
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-link:hover {
            color: var(--primary-blue) !important;
        }

        /* Hero Section Styling */
        .hero-section {
            background: linear-gradient(rgba(13, 45, 91, 0.8), rgba(13, 45, 91, 0.8)), url('assets/8.jpg') no-repeat center center;
            background-size: cover;
            color: var(--text-light);
            padding: 180px 0;
            text-align: center;
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .hero-section .display-4 {
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 3.5rem;
        }

        .hero-section .lead {
            font-weight: 400;
            font-style: italic;
            font-size: 1.4rem;
            opacity: 0.9;
        }

        /* Custom Section Styling */
        .section-title {
            color: var(--primary-blue);
            font-weight: 700;
            margin-bottom: 3rem;
            text-align: center;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background-color: var(--primary-red);
            margin: 10px auto 0;
            border-radius: 2px;
        }

        section {
            padding: 80px 20px;
        }

        @media (min-width: 768px) {
            section {
                padding: 100px 30px;
            }
        }

        @media (min-width: 992px) {
            section {
                padding: 120px 40px;
            }
        }

        /* Container padding adjustments */
        .container {
            padding-left: 15px;
            padding-right: 15px;
        }

        @media (min-width: 768px) {
            .container {
                padding-left: 30px;
                padding-right: 30px;
            }
        }

        @media (min-width: 992px) {
            .container {
                padding-left: 40px;
                padding-right: 40px;
            }
        }

        /* Visi & Misi Card Styling */
        .card-vision-mission {
            border: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        /* Vision card - blue border */
        .card-vision-mission.vision-card {
            border-left: 5px solid var(--primary-blue);
        }

        /* Mission card - red border */
        .card-vision-mission.mission-card {
            border-left: 5px solid var(--primary-red);
        }

        .card-vision-mission:hover {
            transform: translateY(-5px);
        }

        .card-vision-mission .card-header {
            background-color: transparent;
            border-bottom: none;
            font-size: 1.5rem;
            font-weight: 600;
        }

        .vision-card .card-header {
            color: var(--primary-blue);
        }

        .mission-card .card-header {
            color: var(--primary-red);
        }

        .mission-card .card-header i {
            color: var(--primary-red);
        }

        .vision-card .card-header i {
            color: var(--primary-blue);
        }

        /* Contact Section Styling */
        .contact-info i {
            font-size: 1.5rem;
            color: var(--primary-red);
        }

        .contact-info p {
            margin-bottom: 0;
        }
        
        .map-container {
            overflow: hidden;
            position: relative;
            height: 400px;
            border-radius: 0.5rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .map-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Enhanced Footer Styling */
        .footer-section {
            background-color: var(--primary-blue);
            color: var(--text-light);
            padding: 60px 0 30px 0;
        }

        .footer-brand {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-heading {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 1.25rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .footer-links li, .footer-contact li {
            margin-bottom: 0.75rem;
            font-size: 0.85rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.85rem;
        }
        
        .footer-contact span {
            font-size: 0.85rem;
            line-height: 1.5;
        }

        .footer-links a:hover {
            color: var(--primary-yellow);
        }

        .footer-contact {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .footer-contact i {
            color: var(--primary-red);
        }

        .social-icons .social-icon {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-light);
            font-size: 1.1rem;
            margin-right: 10px;
            text-decoration: none;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .social-icons .social-icon:hover {
            background-color: var(--primary-red);
            color: var(--text-light);
        }
         .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            margin-bottom: 30px;
        }
        
        .gallery-item img {
            transition: transform 0.5s ease;
            width: 100%;
            height: 300px;
            object-fit: cover;
        }
        
        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            color: white;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
         .service-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            background-color: white;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            transition: all 0.3s ease;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }

        /* Specific colors for each service icon */
        .garmen-icon {
            background-color: #FF6B6B;
        }

        .print-icon {
            background-color: #4ECDC4;
        }

        .toy-icon {
            background-color: #FFD93D;
        }

        .supply-icon {
            background-color: #6C5CE7;
        }

        .mice-icon {
            background-color: #A8E6CF;
        }

        .training-icon {
            background-color: #FF8B94;
        }

        /* Service card enhancements */
        .service-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            background-color: white;
            padding: 20px;
        }
        
        .service-card h4 {
            color: var(--primary-blue);
            margin-top: 15px;
            font-size: 1.1rem;
            font-weight: 600;
        }
        
        .service-img {
            height: 200px;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .service-card:hover .service-img {
            transform: scale(1.05);
        }
        .feature-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--accent-color);
            color: white;
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .stat-item {
            text-align: center;
            padding: 30px;
            border-radius: 10px;
            background-color: rgba(255,255,255,0.2);
            backdrop-filter: blur(5px);
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
        }
        
        .testimonial-card {
            background-color: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .testimonial-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--accent-color);
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            color: white;
            padding: 80px 0;
            margin-top: 50px;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 20px;
                min-height: 60vh;
            }

            .hero-section .display-4 {
                font-size: 2.2rem;
                margin-bottom: 1rem;
            }

            .hero-section .lead {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 1.8rem;
                margin-bottom: 2rem;
            }

            .gallery-item {
                margin-bottom: 20px;
            }

            .service-card {
                margin-bottom: 20px;
            }

            .footer-section {
                padding: 40px 20px 20px;
            }

            .footer-heading {
                margin-top: 20px;
            }
        }

        /* Tablet Styles */
        @media (min-width: 768px) and (max-width: 991px) {
            .hero-section {
                padding: 80px 30px;
            }

            .hero-section .display-4 {
                font-size: 2.5rem;
            }

            .service-card {
                margin-bottom: 30px;
            }

            .gallery-item {
                margin-bottom: 25px;
            }
        }

        /* Desktop Styles */
        @media (min-width: 992px) {
            .hero-section {
                padding: 120px 40px;
            }

            .hero-section .display-4 {
                font-size: 3rem;
            }
        }

        /* Navigation Responsive */
        @media (max-width: 991px) {
            .navbar {
                padding: 10px 0;
            }

            .navbar-collapse {
                background: white;
                padding: 15px;
                border-radius: 8px;
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            }

            .nav-item {
                margin: 8px 0;
            }
        }
        .company-name {
        font-weight: 700;
        color: #111827;
        }
        .motto {
        font-weight: 700;
        color: #1f2937; /* slightly darker */
        font-style: normal;
        }
         .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .gallery-title {
            text-align: center;
            margin-bottom: 40px;
            font-weight: 600;
            color: #343a40;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .thumbnail-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            margin-bottom: 30px;
        }
        
        .thumbnail {
            width: 120px;
            height: 90px;
            object-fit: cover;
            border-radius: 5px;
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 2px solid transparent;
        }
        
        .thumbnail:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-color: #0d6efd;
        }
        
        .thumbnail.active {
            border-color: #0d6efd;
            transform: scale(1.05);
        }
        
        .preview-container {
            margin-bottom: 30px;
            display: flex;
            justify-content: center;
        }
        
        .preview-image {
            max-width: 100%;
            max-height: 350px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .btn-gallery {
            padding: 10px 25px;
            font-weight: 500;
            border-radius: 50px;
            transition: all 0.3s;
        }
        
        .btn-gallery:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .image-caption {
            text-align: center;
            margin-top: 15px;
            font-style: italic;
            color: #6c757d;
        }