* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #060608;
    color: #f1f1f1;
    overflow-x: hidden;
    position: relative;
}

/* Ambient Background Glow Effect */
.glow-orb {
    position: fixed;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.22;
}

.orb-1 {
    top: 5%;
    left: -100px;
    background: #d4af37;
}

.orb-2 {
    bottom: 10%;
    right: -100px;
    background: #e67e22;
}

/* Header & Nav */
header {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    background: rgba(10, 10, 12, 0.75);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo span {
    color: #d4af37;
    background: linear-gradient(135deg, #ffd700, #d4af37, #aa820a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;   
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: #dedede;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: 0.3s;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #d4af37;
    transition: width 0.3s ease;
}

nav a:hover {
    color: #ffd700;
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 60px 8%;
    position: relative;
}

.hero-text {
    max-width: 720px;
}

.small-title {
    color: #d4af37;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero h1 span {
    background: linear-gradient(90deg, #d4af37, #fff099, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero p {
    color: #a0a0a0;
    font-size: 17px;
    line-height: 1.8;
    max-width: 600px;
}

.buttons {
    margin-top: 35px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* Modern Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #0b0b0b;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
    border: none;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45);
}

.btn.outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(212, 175, 55, 0.6);
    box-shadow: none;
}

.btn.outline:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    transform: translateY(-3px);
}

/* Headings */
h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-text {
    text-align: center;
    color: #888;
    margin-bottom: 50px;
    font-size: 15px;
}

/* Services */
#services {
    padding: 100px 8%;
    background: #09090c;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 22px;
}

.service-card {
    background: rgba(22, 22, 26, 0.6);
    backdrop-filter: blur(8px);
    padding: 30px 22px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    transition: all 0.4s ease;
}

.service-card .icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.service-card h3 {
    color: #d4af37;
    font-size: 18px;
    margin-bottom: 10px;
}

.service-card p {
    color: #8f8f9d;
    line-height: 1.6;
    font-size: 13px;
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(30, 30, 36, 0.9);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.15);
}

/* About Section */
#about {
    padding: 100px 8%;
    background: #060608;
}

.about-content {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    text-align: left;
    margin-bottom: 20px;
}

.about-content p {
    color: #999;
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 15px;
}

.about-box {
    padding: 40px 30px;
    background: linear-gradient(145deg, #131317, #0a0a0d);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.about-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.about-box h3 {
    color: #d4af37;
    margin-bottom: 12px;
    font-size: 22px;
}

.about-box p {
    color: #aaa;
    font-size: 14px;
}

/* Work / Showcase */
#work {
    padding: 100px 8%;
    background: #09090c;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

.work-card {
    background: #111116;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.work-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.work-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-card:hover .work-img-wrapper img {
    transform: scale(1.08);
}

.work-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.work-image-placeholder {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #17171d;
    color: #d4af37;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
}

.work-card h3 {
    color: #fff;
    padding: 20px 20px 6px;
    font-size: 18px;
}

.work-card p {
    color: #888;
    padding: 0 20px 20px;
    font-size: 13px;
}

/* Contact */
#contact {
    padding: 100px 8%;
    background: #060608;
}

.contact-box {
    max-width: 620px;
    margin: 40px auto 0;
    background: linear-gradient(145deg, #121217, #0d0d10);
    padding: 40px 35px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-item .icon {
    font-size: 18px;
}

.contact-item p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

.contact-item strong {
    color: #fff;
}

.contact-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px;
    background: #040405;
    color: #666;
    font-size: 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer span {
    color: #d4af37;
}

/* Responsive Styles */
.menu-btn {
    display: none;
    background: none;
    border: none;
    color: #d4af37;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 900px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }

    #main-nav {
        display: none;
        position: absolute;
        top: 80px;
        right: 8%;
        width: 220px;
        background: rgba(18, 18, 22, 0.95);
        backdrop-filter: blur(15px);
        padding: 20px;
        border: 1px solid rgba(212, 175, 55, 0.3);
        border-radius: 12px;
        flex-direction: column;
        gap: 16px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    }

    #main-nav.active {
        display: flex !important;
    }

    .hero h1 {
        font-size: 42px;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }
}
.float-wa {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25d366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.float-wa:hover {
    transform: scale(1.12);
}
/* Top Information Bar */
.top-bar {
    background: #020203;
    padding: 8px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-info span {
    margin-right: 20px;
    color: #a0a0a0;
}

.top-info a {
    color: #00d2ff;
    text-decoration: none;
}

.quote-link {
    color: #ff007f;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.quote-link:hover {
    color: #ffd700;
}

/* Slider Section */
.hero-slider {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 80% 20%, rgba(0, 210, 255, 0.08), transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(255, 0, 127, 0.08), transparent 40%),
                #060609;
}

.slides-wrapper {
    width: 100%;
}

.slide {
    display: none;
    padding: 80px 8%;
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: 50px;
}

.slide.active {
    display: grid;
    animation: fadeInSlide 0.7s ease-in-out forwards;
}

@keyframes fadeInSlide {
    from { opacity: 0; transform: translateX(25px); }
    to { opacity: 1; transform: translateX(0); }
}

/* CMYK Printing Color Badges */
.cmyk-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.cmyk-tag.cyan {
    background: rgba(0, 210, 255, 0.15);
    color: #00d2ff;
    border: 1px solid rgba(0, 210, 255, 0.4);
}

.cmyk-tag.magenta {
    background: rgba(255, 0, 127, 0.15);
    color: #ff007f;
    border: 1px solid rgba(255, 0, 127, 0.4);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(90deg, #00d2ff, #00f0ff, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-magenta {
    background: linear-gradient(90deg, #ff007f, #ff758c, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Slider Hero Box */
.slide-badge-box {
    background: rgba(18, 18, 24, 0.8);
    border: 1px solid rgba(0, 210, 255, 0.3);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    text-align: center;
}

.slide-badge-box.magenta-border {
    border-color: rgba(255, 0, 127, 0.4);
}

.color-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.cyan-dot { background: #00d2ff; box-shadow: 0 0 10px #00d2ff; }
.magenta-dot { background: #ff007f; box-shadow: 0 0 10px #ff007f; }
.yellow-dot { background: #ffd700; box-shadow: 0 0 10px #ffd700; }
.black-dot { background: #555; }

.counter-num {
    font-size: 48px;
    font-weight: 800;
    color: #ff007f;
    margin-bottom: 8px;
}

/* Buttons with Neon Accents */
.btn-cyan {
    background: linear-gradient(135deg, #00d2ff, #008be3);
    color: #000;
}

.btn-cyan:hover {
    box-shadow: 0 6px 25px rgba(0, 210, 255, 0.5);
}

.btn-magenta {
    background: linear-gradient(135deg, #ff007f, #d60067);
    color: #fff;
}

.btn-magenta:hover {
    box-shadow: 0 6px 25px rgba(255, 0, 127, 0.5);
}

/* Slider Arrow Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(18, 18, 24, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

/* Dots Indicators */
.slider-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: 0.3s;
}

.indicator.active {
    width: 32px;
    border-radius: 12px;
    background: #00d2ff;
}

@media (max-width: 900px) {
    .slide {
        grid-template-columns: 1fr;
        padding: 60px 8%;
    }
    .top-bar {
        display: none;
    }
}
/* Perfectly Balanced Text Sizes */
.hero-slider h1, 
.hero h1 {
    font-size: 60px !important; /* Pehle 80px tha, ab balanced ho gaya */
    line-height: 1.15;
    font-weight: 700;
}

#dynamic-text {
    font-size: 70px !important; /* Pehle 82px tha */
    display: inline-block;
    color: #d4af37;
}

.small-title {
    font-size: 12px !important;
    letter-spacing: 3px;
}

.hero-slider p,
.hero p {
    font-size: 15px !important; /* Subtitle text thoda compact */
}

/* Mobile Screens */
@media (max-width: 768px) {
    .hero-slider h1, 
    .hero h1 {
        font-size: 36px !important;
    }
    #dynamic-text {
        font-size: 38px !important;
    }
    .hero-slider p,
    .hero p {
        font-size: 14px !important;
    }
}
/* 1. Top Reading / Scroll Progress Bar */
#scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, #d4af37, #00d2ff, #ff007f);
    z-index: 100001;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    transition: width 0.1s ease-out;
}

/* 2. Custom Luxury Dark Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #060608;
}

::-webkit-scrollbar-thumb {
    background: #1c1c24;
    border-radius: 6px;
    border: 2px solid #060608;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #d4af37, #b8860b);
}

/* 3. Smooth Dynamic Scroll Behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
}
.slides-wrapper .slide {
    display: none !important;
    width: 100%;
}

.slides-wrapper .slide.active {
    display: grid !important;
}
/* Lightbox Modal Background */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Modal Open State */
.lightbox-modal.active {
    display: flex;
}

/* Lightbox Image Preview */
.lightbox-content {
    max-width: 85%;
    max-height: 80vh;
    border-radius: 12px;
    border: 2px solid rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.35);
    animation: zoomPopup 0.3s ease;
}

@keyframes zoomPopup {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Close Button (X) */
.close-lightbox {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #fff;
    font-size: 42px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.close-lightbox:hover {
    color: #d4af37;
}

/* Caption Text */
#modalCaption {
    margin-top: 15px;
    color: #ffd700;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Work Card Image Hover Pointer */
.work-img-wrapper img {
    cursor: pointer;
}
/* Filter Tabs Styling */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    background: #111116;
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: #bbb;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #0b0b0b;
    border-color: #d4af37;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    font-weight: 600;
}

/* Smooth Card Filter Animations */
.work-card.hide {
    display: none !important;
}

.work-card.show {
    animation: fadeInCard 0.4s ease forwards;
}

@keyframes fadeInCard {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}
/* Hero Gallery Button */
.btn-gallery {
    padding: 12px 24px;
    background: linear-gradient(135deg, #ffd700, #b8860b);
    color: #0b0b0b !important;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
}

.btn-gallery:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

/* Big Showcase Center Button */
.gallery-showcase-btn {
    display: inline-block;
    padding: 16px 36px;
    background: #111116;
    border: 2px solid #d4af37;
    border-radius: 50px;
    color: #ffd700;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.gallery-showcase-btn:hover {
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}