* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: #f8fafc;
            color: #333;
            line-height: 1.6;
        }

        /* Sticky Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.341);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .nav-logo a {
            font-size: 1rem;
            font-weight: bold;
            text-decoration: none;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-menu {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        .nav-link {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link:hover {
            color: #667eea;
        }

        .nav-link.active {
            color: #667eea;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        /* Mobile Navigation Toggle */
        .nav-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .nav-toggle .bar {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        /* Container for desktop margins */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Modern Hero Section */
        header.hero {
            position: relative;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            color: white;
            padding-top: 80px;
        }

        /* Hero Section Layout */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px; /* space between text and image */
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Hero Content (Text) */
.hero-content {
    flex: 1 1 0;
    min-width: 0;
}

/* Floating Image */
.floating-image {
    flex: 1 1 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-image img {
    max-width: 600px; /* reduce image size */
    width: 100%;
    height: auto;
    border-radius: 20px;
    /* box-shadow: 0 8px 32px rgba(0,0,0,0.12); */
}

/* Hero video background */

.hero-bg-video {
    position: fixed; /* Atau absolute kalau nak ikut container */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Supaya di belakang content */
    background: black;
}

.hero-bg-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%; /* Lebihkan sikit supaya tak ada ruang hitam */
    height: 120%;
    transform: translate(-50%, -50%);
    pointer-events: none; /* Supaya tak boleh klik video */
}


/* Responsive: Stack on mobile */
@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        gap: 32px;
        padding: 40px 10px;
    }
    .floating-image img {
        max-width: 600px;
    }
}

/* ...existing code... */

        .hero-bg-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .hero-bg-video video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: translateZ(0);
        }

        .hero-bg-video::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
        }

        .hero-content {
            z-index: 3;
            transform: translateZ(0);
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: bold;
            margin-bottom: 24px;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 32px;
            opacity: 0.9;
            max-width: 500px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
        }

        .btn-primary {
            display: inline-block;
            background: linear-gradient(135deg, #ff7f50 0%, #ff6b35 100%);
            color: white;
            padding: 16px 32px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 127, 80, 0.4);
        }

        .btn-secondary {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 16px 32px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 127, 80, 0.6);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            text-decoration: none;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .social-link:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        /* Floating Hero Image with Parallax */
        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 3;
            transform: translateZ(0);
        }

    

        .floating-image {
            animation: float 6s ease-in-out infinite;
            will-change: transform;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* Section Styles with Spacing */
        section {
            padding: 120px 0;
            position: relative;
            transform: translateZ(0);
        }

        section:not(:last-child) {
            margin-bottom: 60px;
        }

        h2 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 60px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: bold;
        }

        /* Portfolio Grid */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .portfolio-card {
            position: relative;
            height: 280px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            will-change: transform;
        }

        .portfolio-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .video-card {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
        }

        .card-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            transition: background 0.3s ease;
            padding: 20px;
        }

        .portfolio-card:hover .card-overlay {
            background: rgba(0, 0, 0, 0.5);
        }

        .card-overlay h3 {
            font-size: 1.8rem;
            margin-bottom: 12px;
            font-weight: bold;
        }

        .card-overlay p {
            font-size: 1rem;
            opacity: 0.9;
        }

        .play-button {
            font-size: 4rem;
            margin-bottom: 20px;
            opacity: 0.8;
            transition: all 0.3s ease;
        }

        .video-card:hover .play-button {
            opacity: 1;
            transform: scale(1.1);
        }

        /* About Section */
        .about {
            background: white;
            border-radius: 30px;
            padding: 60px;
            margin: 0 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .about p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            color: #666;
        }

        /* Services Section */
        .services {
            background: white;
            border-radius: 30px;
            padding: 60px;
            margin: 0 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }

        .service-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 30px 20px;
            border-radius: 20px;
            text-align: center;
            transition: transform 0.3s ease;
            will-change: transform;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
        }

        .service-card p {
            opacity: 0.9;
            font-size: 0.9rem;
        }

        .another-service {
            text-align: center;
            margin-top: 10px;
        }

        /* Testimonials */
        .testimonials {
            text-align: center;
        }

        .testimonial-slider {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 5px;
        }

        .testimonial {
            padding: 40px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            font-size: 1.2rem;
            color: #666;
            opacity: 0;
            transform: translateX(100px);
            transition: all 0.5s ease;
        }

        .testimonial.active {
            opacity: 1;
            transform: translateX(0);
        }

        .testimonial-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .testimonial-controls button {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 15px 20px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .testimonial-controls button:hover {
            transform: scale(1.1);
        }

        /* Contact Section */
        .contact {
            background: white;
            border-radius: 30px;
            padding: 60px;
            margin: 0 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: #333;
        }

        .contact-info p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.8;
        }

        .contact-form {
            background: #f8fafc;
            padding: 40px;
            border-radius: 20px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #333;
        }

        .form-group input {
            width: 100%;
            padding: 15px;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus {
            outline: none;
            border-color: #667eea;
        }

        .btn-whatsapp {
            width: 100%;
            background: #25D366;
            color: white;
            border: none;
            padding: 16px 24px;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .btn-whatsapp:hover {
            background: #20b857;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        }

        /* Image Gallery Modal */
        .image-gallery-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
        }

        .gallery-content {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-image {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            border-radius: 10px;
        }

        .gallery-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.2);
            color: white;
            border: none;
            font-size: 1.5rem;
            padding: 15px 20px;
            cursor: pointer;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .gallery-nav:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: translateY(-50%) scale(1.1);
        }

        .gallery-prev {
            left: 30px;
        }

        .gallery-next {
            right: 30px;
        }

        .gallery-close {
            position: absolute;
            top: 30px;
            right: 30px;
            color: white;
            font-size: 35px;
            font-weight: bold;
            cursor: pointer;
            z-index: 1001;
            background: rgba(255, 255, 255, 0.2);
            padding: 10px 15px;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .gallery-close:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: scale(1.1);
        }

        .gallery-counter {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            background: rgba(0, 0, 0, 0.7);
            padding: 10px 20px;
            border-radius: 20px;
            font-size: 1.1rem;
        }

        .gallery-thumbnails {
            position: absolute;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            max-width: 80%;
            overflow-x: auto;
            padding: 10px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 15px;
        }

        .gallery-thumb {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
            cursor: pointer;
            opacity: 0.6;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .gallery-thumb:hover,
        .gallery-thumb.active {
            opacity: 1;
            border-color: #ff7f50;
        }

        /* Footer */
        footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 40px 0;
        }

        /* Smooth Fade-in Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeIn 0.8s ease forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Navigation */
        @media (max-width: 768px) {

            
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 70px;
                flex-direction: column;
                background: rgba(255, 255, 255, 0.98);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                padding: 20px 0;
                gap: 20px;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-toggle {
                display: flex;
            }


            .hero-container {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 0 20px;
                /* margin-top: 200px; */
                text-align: center;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-buttons {
                flex-direction: row;
                justify-content: center;
                gap: 15px;
            }
            
            .btn-primary, .btn-secondary {
                padding: 14px 24px;
                font-size: 1rem;
            }
            
            .hero-image {
                order: -1;
            }
            
            .floating-image img {
                width: 80%;
                /* height: 250px; */
            }

            .hero-bg-video iframe {
        width: 250%; /* Lebihkan zoom */
        height: 250%;
    }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }

            .service-card {
                padding: 25px 15px;
            }

            .service-card h3 {
                font-size: 1.1rem;
            }

            .service-card p {
                font-size: 0.85rem;
            }

            .testimonial-slider {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .about, .services, .contact {
                margin: 0 10px;
                padding: 40px 30px;
            }
            
            section {
                padding: 80px 0;
                margin-bottom: 40px;
            }
        }