body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #0b0b0f;
    color: #fff;
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

/* HERO SECTION */
header {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Background Video */
.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

/* Gradient Overlay */
header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(127, 0, 255, 0.6),
        rgba(225, 0, 255, 0.6)
    );
    z-index: -1;
}

/* Hero Content */
header h1 {
    font-size: 4rem;
    animation: fadeDown 1.5s ease;
}

header p {
    font-size: 1.2rem;
    opacity: 0.9;
}



/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.logo span {
    background: linear-gradient(45deg, #7f00ff, #e100ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

/* Neon underline hover */
.nav-links li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #e100ff;
    transition: 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Enquiry Button */
.nav-btn {
    padding: 8px 16px;
    border-radius: 20px;
    background: linear-gradient(45deg, #7f00ff, #e100ff);
    box-shadow: 0 0 15px #e100ff;
}

.nav-btn::after {
    display: none;
}

section {
    padding: 80px 10%;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Gallery */
/* =========================
   MARQUEE GALLERY – DESKTOP
========================= */

.marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 40px auto 0;
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll-left 30s linear infinite;
}

.marquee-track img {
    height: 220px;
    width: auto;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(225, 0, 255, 0.35);
    transition: transform 0.4s ease;
}

/* Hover zoom */
.marquee-track img:hover {
    transform: scale(1.08);
}

/* Pause on hover */
.marquee:hover .marquee-track {
    animation-play-state: paused;
}

/* Animation */
@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}



/* LIGHTBOX */
#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

/* Floating Enquiry Button */
#enquiryBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #e100ff;
    color: #fff;
    padding: 15px 20px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 0 20px #e100ff;
    z-index: 999;
}

/* Popup Form */
.popup {
    position: fixed;
    bottom: -100%;
    right: 20px;
    width: 320px;
    background: #111;
    border-radius: 15px;
    padding: 20px;
    transition: 0.5s;
    z-index: 1000;
}

.popup.active {
    bottom: 90px;
}

.popup input,
.popup textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 6px;
    border: none;
}

.popup button {
    width: 100%;
    background: linear-gradient(45deg,#7f00ff,#e100ff);
    border: none;
    padding: 12px;
    color: #fff;
    cursor: pointer;
}

@keyframes fadeDown {
    from {opacity:0; transform: translateY(-50px);}
    to {opacity:1; transform: translateY(0);}
}


.footer {
    background: #050508;
    padding: 60px 10% 20px;
    border-top: 1px solid #222;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-box h3,
.footer-box h4 {
    margin-bottom: 15px;
    background: linear-gradient(45deg,#7f00ff,#e100ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-box p {
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: #e100ff;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid #222;
    color: #777;
    font-size: 0.9rem;
}


/* =========================
   MOBILE STYLES
========================= */
@media (max-width: 768px) {

    /* HERO – MOBILE */
    header {
        height: 50vh;
        min-height: 368px;
        width: 100%;
    }

    .bg-video {
        display: block;
        height: 100%;
    }

    header h1 {
        font-size: 2.4rem;
        /*margin-top: -70px;*/
    }

    header p {
        font-size: 1rem;
        margin-top: 10px;
    }






 /* NAVBAR */
    .navbar {
        width: 100%;
        padding: 0;
    }

    /* CONTAINER FIX */
    .nav-container {
        width: 100%;
        max-width: 100%;
        padding: 12px 16px;   /* important for mobile */
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-sizing: border-box;
    }

    /* LOGO */
    .logo {
        font-size: 1.1rem;
    }

    /* NAV LINKS */
    .nav-links {
        display: flex;
        gap: 11px;
        flex-wrap: wrap;     /* prevents overflow */
    }

    .nav-links li a {
        font-size: 0.65rem;
    }

    /* BUTTON FIX */
    .nav-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
        white-space: nowrap;
    }


    /* GALLERY – MOBILE GRID */
    .marquee {
        overflow: hidden;
        margin-top: 20px;
    }

    .marquee-track {
        animation: none;
        transform: none;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .marquee-track img {
        width: 100%;
        height: 140px;
        object-fit: cover;
        border-radius: 12px;
    }

    .marquee-track .is-duplicate {
        display: none;
    }

    /* SECTION PADDING */
    section {
        padding: 60px 6%;
    }
    
    
}