:root {
    --bg-dark: #0a0a0a;
    --text-main: #ffffff;
    --accent: #2dffca; /* Your Neon Mint/Gold */
    --gray-muted: #1a1a1a;
    --nav-height: 85px;
    --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Plus Jakarta Sans', sans-serif; }

body { 
    background-color: var(--bg-dark); 
    color: var(--text-main); 
    padding-top: var(--nav-height); 
    overflow-x: hidden; 
    cursor: none; /* Hide default cursor */
}

/* NAVBAR */
.navbar {
    position: fixed; top: 0; width: 100%; height: var(--nav-height);
    display: flex; justify-content: space-between; align-items: center;
    padding: 0 5%; z-index: 2000; background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(15px); border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo { 
    font-size: 1.4rem; 
    font-weight: 800; 
    letter-spacing: 4px; 
    color: #ffffff; /* --- CHANGE: White logo colour --- */
    text-transform: uppercase;
    text-decoration: none;
}
/* NAVBAR LINKS - Hamesha Mint Color mein */
.nav-links a { 
    text-decoration: none; 
    color: var(--accent) !important; /* Hamesha #2dffca rahega */
    font-size: 11px; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    opacity: 1; /* Opacity full rakhi hai taaki faded na dikhe */
    transition: 0.3s var(--ease-out); 
    margin-left: 30px;
    font-weight: 500;
}

/* Hover effect se white color hatane ke liye */
.nav-links a:hover, 
.nav-links a.active { 
    color: var(--accent) !important; /* Hover par bhi color change nahi hoga */
    opacity: 0.8; /* Sirf halka sa click feel dene ke liye opacity thodi kam ki hai */
    text-shadow: 0 0 10px rgba(45, 255, 202, 0.4); /* White highlight ki jagah mint glow add kiya hai */
}

/* Cursor fix (pichli baar ki tarah default karne ke liye) */
body { 
    background-color: var(--bg-dark); 
    cursor: auto !important; 
}

/* Dynamic cursor elements ko hide karne ke liye safety check */
.cursor-dot, .cursor-outline {
    display: none !important;
}
/* GRID LAYOUT */
.container { padding: 40px 3%; }
.grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
    grid-auto-rows: 220px; grid-auto-flow: dense; gap: 15px; 
}

.item { 
    position: relative; overflow: hidden; background: var(--gray-muted); 
    opacity: 0; transform: translateY(40px); transition: 1.2s var(--ease-out); 
}
.item.revealed { opacity: 1; transform: translateY(0); }

/* Sizes */
.v-long { grid-row: span 2; }
.h-wide { grid-column: span 2; }
.big-box { grid-column: span 2; grid-row: span 2; }

.item img { 
    width: 100%; height: 100%; object-fit: cover; 
    transition: 1.2s var(--ease-out); filter: grayscale(100%); 
}
.item:hover img { filter: grayscale(0%); transform: scale(1.05); }

/* --- DYNAMIC CURSOR --- */
.cursor-dot, .cursor-outline {
    pointer-events: none; position: fixed; top: 0; left: 0;
    border-radius: 50%; z-index: 9999; transform: translate(-50%, -50%);
    /* mix-blend-mode: difference; Optional: Inverts color over text */
}

.cursor-dot { 
    width: 6px; height: 6px; background-color: var(--accent); 
    transition: width 0.3s, height 0.3s, opacity 0.3s;
}

.cursor-outline { 
    width: 35px; height: 35px; border: 1.5px solid var(--accent); 
    transition: width 0.4s var(--ease-out), height 0.4s var(--ease-out), 
                background-color 0.4s, border-color 0.4s;
}

/* Hover state for cursor */
.cursor-active .cursor-outline {
    width: 70px; height: 70px;
    background-color: rgba(45, 255, 202, 0.1);
    border-color: transparent;
}
.cursor-active .cursor-dot { opacity: 0; }

/* BACK TO TOP */
.back-to-top {
    position: fixed; bottom: 40px; right: 40px; width: 50px; height: 50px;
    background: var(--accent); color: #000; border: none; border-radius: 50%;
    font-weight: bold; cursor: pointer; display: none; z-index: 2500;
}

/* LIGHTBOX */
.lightbox {
    display: none; position: fixed; z-index: 3000; top: 0; left: 0; 
    width: 100%; height: 100%; background: rgba(0,0,0,0.95); 
    backdrop-filter: blur(10px); justify-content: center; align-items: center;
}
.lightbox.active { display: flex; opacity: 1; }
.lightbox-content { max-width: 90%; max-height: 80vh; transition: 0.5s var(--ease-out); }
.close-lightbox { position: absolute; top: 30px; right: 40px; color: var(--accent); font-size: 50px; cursor: pointer; }

/* --- ELITE FOOTER STYLING --- */
footer {
    background-color: #050505;
    padding: 100px 5% 40px 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand .logo {
    margin-bottom: 20px;
    display: block;
}

.footer-brand p {
    opacity: 0.5;
    font-size: 14px;
    line-height: 1.8;
    max-width: 300px;
}

.footer-header {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 30px;
    font-weight: 800;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 13px;
    opacity: 0.5;
    transition: 0.4s var(--ease-out);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
    padding-left: 5px;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex; /* Flexbox use kiya for centering */
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-main);
    font-size: 18px; /* Icon size increase kiya */
    transition: all 0.4s var(--ease-out);
    border-radius: 50%;
}

.social-icon:hover {
    background: var(--accent); /* Aapka mint/neon color */
    color: #000;
    border-color: var(--accent);
    transform: translateY(-5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.4;
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

