
body {
    background-color: #050505;
    color: #f3f3f3;
    overflow-x: hidden;
    cursor: none;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 9000; opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Custom cursor */
.cursor-dot, .cursor-circle {
    position: fixed; top: 0; left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%; z-index: 9999; pointer-events: none;
}
.cursor-dot { width: 6px; height: 6px; background: #D4AF37; }
.cursor-circle {
    width: 40px; height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s, transform 0.3s;
}

/* Scrollbar */
::-webkit-scrollbar { width: 0px; }

/* Glass panel */
.glass-panel {
    background: rgba(18, 18, 18, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

/* Service cards */
.service-card {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    padding: 2rem 0;
    box-sizing: border-box;
    transform-origin: center top;
}

/* Service items */
.service-item {
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.service-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}
.service-item:hover::before {
    transform: translateX(100%);
}
.service-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}
.service-item:hover .service-img {
    transform: scale(1.1);
}

/* Preloader */
.preloader {
    position: fixed; inset: 0; background: #050505; z-index: 10000;
    display: flex; justify-content: center; align-items: center; flex-direction: column;
}
.loader-bar-bg { width: 200px; height: 1px; background: #222; margin-top: 20px; overflow: hidden; }
.loader-bar { width: 0%; height: 100%; background: #D4AF37; }

/* Gradient text */
.text-gradient-gold {
    background: linear-gradient(to right, #D4AF37, #F2D16B, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 4s linear infinite;
}
@keyframes shine {
    to { background-position: 200% center; }
}

/* Custom scrollbar for inner content */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.4);
    border-radius: 999px;
}


/* FAST SCROLL FIX */
.service-card .custom-scrollbar {
    scroll-behavior: auto !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

/* Performance boost */



/* Scroll containers inside service cards */
.custom-scrollbar {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    scroll-behavior: smooth;
}

/* Simple marquee via CSS */
.marquee-content {
    display: inline-flex;
    animation: marquee-linear 30s linear infinite;
    will-change: transform;
}
@keyframes marquee-linear {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* LOGO APPEAR ANIMATION WITH GOLDEN GLOW */

.logo-anim {
    opacity: 0;
    transform: translateY(15px);
    animation: logoFadeGlow 1.1s ease-out forwards;
    animation-delay: 0.35s;
}

@keyframes logoFadeGlow {
    0% {
        opacity: 0;
        transform: translateY(15px) scale(0.96);
        filter: blur(3px);
        box-shadow: 0 0 0 rgba(212, 175, 55, 0);
    }
    60% {
        opacity: 1;
        transform: translateY(0) scale(1.03);
        filter: blur(0);
        box-shadow: 0 0 28px rgba(212, 175, 55, 0.55);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        box-shadow: 0 0 16px rgba(212, 175, 55, 0.25);
    }
}


/* CONTACT BLOCK ANIMATION */
.contact-anim {
    opacity: 0;
    transform: translateY(25px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}
.contact-anim.show {
    opacity: 1;
    transform: translateY(0);
}

/* Social Card */
.social-card {
    width:160px; height:160px;
    border:1px solid rgba(255,255,255,0.1);
    border-radius:22px;
    background:rgba(255,255,255,0.02);
    backdrop-filter:blur(8px);
    display:flex; flex-direction:column;
    justify-content:center; align-items:center;
    gap:12px; color:white;
    font-size:14px;
    transition:.4s ease;
}
.social-card:hover {
    transform:translateY(-8px);
    border-color:#D4AF37;
    color:#D4AF37;
    box-shadow:0 10px 28px rgba(212,175,55,0.25);
}

/* Video background */
.video-bg { filter:brightness(0.55); }

/* Parallax */
.parallax-wrap { position:relative; overflow:hidden; perspective:1200px; }
.parallax-item { position:absolute; inset:0; transform:translateZ(0); transition:transform .2s ease-out; }
