     /* ================= BASE ================= */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Figtree', sans-serif;
            scroll-behavior: smooth;
            background: #0a0a0a;
            color: #fff;
            overflow-x: hidden;
        }

        /* ================= NAVBAR ================= */
        .navbar {
            background: rgba(255, 255, 255, 0.05) !important;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding: 1.2rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(10, 10, 10, 0.95) !important;
            padding: 0.8rem 0;
        }

        .navbar-brand img {
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover img {
            transform: scale(1.05);
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 500;
            margin: 0 1rem;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #d4a574, #a28369);
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: #d4a574 !important;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* ================= HERO ================= */
        .hero {
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: url('img2.jpg') center/cover;
            opacity: 0.3;
            z-index: 0;
        }

        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 50%, rgba(212, 165, 116, 0.15), transparent 50%),
                        radial-gradient(circle at 70% 50%, rgba(162, 131, 105, 0.1), transparent 50%);
            z-index: 1;
        }

        .hero .container {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 700;
            background: linear-gradient(135deg, #ffffff 0%, #d4a574 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
            animation: heroFade 1.2s ease forwards;
        }

        .hero p {
            font-size: clamp(1.1rem, 2vw, 1.5rem);
            color: rgba(255, 255, 255, 0.85);
            max-width: 600px;
            line-height: 1.8;
            animation: heroFade 1.2s ease forwards;
            animation-delay: 0.3s;
            opacity: 0;
        }

        .hero-cta {
            display: inline-block;
            margin-top: 2rem;
            padding: 1rem 2.5rem;
            background: linear-gradient(135deg, #d4a574, #a28369);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            animation: heroFade 1.2s ease forwards;
            animation-delay: 0.6s;
            opacity: 0;
            position: relative;
            overflow: hidden;
        }

        .hero-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s ease;
        }

        .hero-cta:hover::before {
            left: 100%;
        }

        .hero-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(212, 165, 116, 0.4);
        }

        /* ================= SCROLL INDICATOR ================= */
        .scroll-down {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            animation: bounce 2s infinite;
            z-index: 2;
            font-size: 0.9rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .scroll-down i {
            font-size: 1.5rem;
        }

        /* ================= ABOUT SECTION ================= */
        #about {
            background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
            padding: 8rem 0;
            position: relative;
        }

        #about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.5), transparent);
        }

        #about h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            background: linear-gradient(135deg, #ffffff 0%, #d4a574 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 2rem;
        }

        #about p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1.5rem;
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2rem;
            transition: all 0.4s ease;
        }

        .glass-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(212, 165, 116, 0.2);
        }

        /* ================= IMAGE EFFECTS ================= */
        .image-container {
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .image-container::before {
            content: '';
            position: absolute;
            inset: -30px;
            background: radial-gradient(circle, rgba(212, 165, 116, 0.2), transparent 70%);
            filter: blur(40px);
            z-index: 0;
            animation: pulse 4s ease-in-out infinite;
        }

        .image-container img {
            max-height: 100%;
            object-fit: contain;
            border-radius: 20px;
            position: relative;
            z-index: 1;
            animation: floatShadow 7s ease-in-out infinite;
        }

        .float-shadow {
            animation: floatShadow 7s ease-in-out infinite;
            border-radius: 20px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        }

        /* ================= SERVICES ================= */
        #services {
            background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 100%);
            padding: 8rem 0;
            position: relative;
            overflow: hidden;
        }

        #services::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(212, 165, 116, 0.1), transparent 70%);
            border-radius: 50%;
            filter: blur(60px);
        }

        #services h2 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            background: linear-gradient(135deg, #ffffff 0%, #d4a574 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 4rem;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 3rem 2rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #d4a574, #a28369);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-15px);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 30px 60px rgba(212, 165, 116, 0.3);
            border-color: rgba(212, 165, 116, 0.3);
        }

        .service-icon-img {
            width: 80px;
            margin-bottom: 1.5rem;
            transition: transform 0.4s ease;
        }

        .service-card:hover .service-icon-img {
            transform: scale(1.1) rotate(5deg);
        }

        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #d4a574;
        }

        .service-card p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1rem;
            line-height: 1.6;
        }

        /* ================= APP SECTION ================= */
        .app-section {
            background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
            padding: 8rem 0;
            position: relative;
        }

        .app-section h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            margin: 1.5rem 0 1rem;
            background: linear-gradient(135deg, #ffffff 0%, #d4a574 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .app-section p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .app-icon {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #d4a574, #a28369);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            box-shadow: 0 20px 40px rgba(212, 165, 116, 0.3);
            animation: float 3s ease-in-out infinite;
        }

        .app-icon i {
            font-size: 3rem;
            color: white;
        }

        /* ================= FOOTER ================= */
        footer {
            background: #0a0a0a;
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }

        footer h4 {
            color: #d4a574;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        footer p {
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.8;
        }

        /* ================= REVEAL ANIMATIONS ================= */
        .reveal {
            opacity: 0;
            transform: translateY(60px);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .delay-1 { transition-delay: 0.15s; }
        .delay-2 { transition-delay: 0.3s; }
        .delay-3 { transition-delay: 0.45s; }

        /* ================= KEYFRAMES ================= */
        @keyframes heroFade {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
            40% { transform: translate(-50%, -10px); }
            60% { transform: translate(-50%, -5px); }
        }

        @keyframes floatShadow {
            0% {
                transform: translateY(0);
                box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
            }
            50% {
                transform: translateY(-20px);
                box-shadow: 0 50px 80px rgba(212, 165, 116, 0.2);
            }
            100% {
                transform: translateY(0);
                box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 0.8; }
        }

        /* ================= RESPONSIVE ================= */
        @media (max-width: 768px) {
            .navbar-nav {
                background: rgba(10, 10, 10, 0.95);
                padding: 1rem;
                border-radius: 10px;
                margin-top: 1rem;
            }

            .nav-link {
                margin: 0.5rem 0;
            }

            #about, #services, .app-section {
                padding: 4rem 0;
            }
        }