:root {
    --gold: #b39359;
    --dark: #121212;
    --light: #fdfcf9;
    --glass: rgba(255, 255, 255, 0.8);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

/* UPDATED LOADER SECTION */
#loader {
    position: fixed;
    inset: 0;
    /* Yahan aap apni CNC interior design image ka link daalein */
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?q=80&w=2000&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: transform 0.8s cubic-bezier(0.7, 0, 0.3, 1);
}

/* Logo aur Text ke piche ka white circle */
.loader-content {
    background: #ffffff; /* Pure White Background */
    width: 250px;
    height: 250px;
    border-radius: 50%; /* Circle shape */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2); /* Thoda depth ke liye */
    padding: 20px;
}

/* Is section ko update karein */
#loader img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
    /* border: 2px solid var(--gold); <--- Yeh line hata di gayi hai */
    animation: logoFloat 2s ease-in-out infinite;
}
}

.loader-text {
    font-family: 'Playfair Display', serif;
    font-size: 25px;
    font-weight: 1100;
    letter-spacing: 3px;
    color: #1a1a1a;
    margin-bottom: 6px;
}
@keyframes logoFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

/* HEADER */
header {
    position: fixed;
    top: 0; width: 100%;
    padding: 15px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--glass);
    backdrop-filter: blur(15px);
    z-index: 900;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
/* HEADER UPDATED */
.brand-container { 
    display: flex; 
    align-items: center; 
    gap: 12px; 
    flex-direction: row; /* Ensure logo is on the left */
}

/* HEADER UPDATED */
.header-logo { 
    width: 35px; 
    height: 35px; 
    border-radius: 50%; 
    /* border: 1px solid var(--gold); <--- Is line ko delete kar dein */
    order: 1; /* Logo pehle */
    object-fit: cover; /* Isse logo stretch nahi hoga */
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 800;
    order: 2; /* Name baad mein */
}

nav a { text-decoration: none; color: var(--dark); font-size: 13px; font-weight: 600; text-transform: uppercase; margin-left: 25px; }

/* MOBILE NAV */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 20px; left: 5%; right: 5%;
    background: var(--dark);
    height: 65px; border-radius: 20px;
    z-index: 999; justify-content: space-around; align-items: center;
}
.mobile-nav a { color: white; text-decoration: none; font-size: 11px; text-align: center; opacity: 0.6; }
.mobile-nav a.active { opacity: 1; color: var(--gold); }

/* HERO */
.hero { padding: 140px 6% 60px; }
.accent-line { background: var(--gold); height: 2px; width: 40px; margin-bottom: 20px; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(38px, 10vw, 72px); line-height: 1.1; margin-bottom: 20px; }
.hero p { color: #666; max-width: 500px; margin-bottom: 30px; }

/* SERVICES */
.services { padding: 40px 6%; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.service-card { position: relative; height: 400px; border-radius: 24px; overflow: hidden; background: #eee; }
.service-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.8s; }
.service-card:hover img { transform: scale(1.1); }
.card-info {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; color: white;
}

/* FOOTER */
footer { background: #f4f1eb; padding: 60px 6% 120px; text-align: center; }
.footer-logo { width: 60px; height: 60px; border-radius: 50%; margin-bottom: 20px; }
.contact-btn { display: inline-block; background: var(--dark); color: white; padding: 16px 40px; border-radius: 50px; text-decoration: none; font-weight: 600; }
.copy { margin-top: 20px; font-size: 12px; opacity: 0.5; }

/* RESPONSIVE */
@media (max-width: 768px) {
    header nav { display: none; }
    .mobile-nav { display: flex; }
    .hero { text-align: center; display: flex; flex-direction: column; align-items: center; }
}
