/* --- Global Reset & Variables (Navbar ke liye zaroori) --- */
:root {
    --gold-bright: #FFD700;
    --gold-glow: #ffeb77;
    --gold-dull: #b8860b;
    --text-light: #fff5e6;
    --text-dark: #ccac93;
    --heading-font: 'Cinzel Decorative', serif;
    --bg-crimson: #2a0101;
}

body {
    background-color: #2a0101; /* Pura background black rakhein */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- NAVBAR DESIGN --- */
.navbar {
    background: rgba(42, 1, 1, 0.95);
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 80px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--gold-dull);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
}

/* --- LOGO STYLING --- */
.logo {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 900;
    text-decoration: none;
}

.logo-img {
    width: 120px;
    height: auto;
    margin-right: 15px;
    filter: drop-shadow(0 0 5px var(--gold-bright));
}

/* --- NAV LINKS & HOVER EFFECTS --- */
.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 25px;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover {
    color: var(--gold-bright);
    text-shadow: 0 0 10px var(--gold-glow);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-bright);
    box-shadow: 0 0 10px var(--gold-bright);
    transition: width 0.4s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Active link color */
.nav-links a.active {
    color: var(--gold-bright);
}

/* Active underline */
.nav-links a.active::after {
    width: 100%;
}

/* --- BURGER MENU (Mobile Icon) --- */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 28px;
    height: 3px;
    background-color: var(--gold-bright);
    margin: 6px;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* --- MOBILE RESPONSIVE NAVBAR --- */
@media screen and (max-width: 1024px) {
    .navbar {
        padding: 0 30px;
    }
}

@media screen and (max-width: 768px) {
    .logo-img {
        width: 100px;
    }

    .logo {
        font-size: 1.4rem;
    }

    .burger {
        display: block;
    }

    .nav-links {
        position: absolute;
        right: 0px;
        height: 100vh;
        top: 90px;
        background-color: var(--bg-crimson);
        border-left: 2px solid var(--gold-dull);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 60%;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        padding-top: 50px;
    }

    .nav-links li {
        margin: 20px 0;
        opacity: 0;
    }

    /* JavaScript Toggle Classes */
    .nav-active {
        transform: translateX(0%);
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}



@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Container and Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px;
}

/* Card Styling */
.service-card {
    background: rgba(255, 215, 0, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 35px 25px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: 0.4s ease;
    backdrop-filter: blur(10px);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 215, 0, 0.06);
    border-color: #FFD700;
}

/* Content Details */
.card-icon { font-size: 3rem; margin-bottom: 15px; }
.service-card h3 { color: #FFD700; font-family: 'Cinzel Decorative', serif; margin-bottom: 10px; }
.service-intro { color: #ccac93; font-size: 0.85rem; font-weight: bold; margin-bottom: 20px; border-bottom: 1px solid rgba(212, 175, 55, 0.2); padding-bottom: 10px; }
.main-para { color: #ccc; font-size: 0.9rem; margin-bottom: 20px; line-height: 1.6; }

/* Why Choose Section */
.why-choose h4 { color: #FFD700; font-size: 1rem; margin-bottom: 10px; text-transform: uppercase; }
.card-features { list-style: none; text-align: left; margin-bottom: 25px; }
.card-features li { color: #e0e0e0; font-size: 0.85rem; margin-bottom: 8px; }
.card-features span { color: #FFD700; margin-right: 5px; }

/* Footer Link with Arrow */
.card-action { margin-top: auto; padding-top: 15px; }
.card-footer-link {
    text-decoration: none;
    color: #FFD700;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: inline-block;
    transition: 0.3s;
}
.card-footer-link:hover { letter-spacing: 2px; text-shadow: 0 0 10px #ffeb77; }
.card-ornament { color: #b8860b; font-size: 0.8rem; margin-top: 10px; opacity: 0.5; }

/* Mobile View */
@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: 25px 15px; }
}

/* --- NEW PREMIUM SERVICES SECTION --- */
.premium-services {
    padding: 100px 0;
    /* Deep Background Gradient */
    background: radial-gradient(circle at center, #1a0101 0%, #0d0000 100%);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    padding: 20px;
}

/* --- THE ROYAL GLASS CARD --- */
.service-card {
    /* Glass Effect: Halka transparent black */
    background: rgba(20, 0, 0, 0.6);
    /* Golden glow border */
    border: 1px solid rgba(255, 215, 0, 0.15);
    padding: 45px 35px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(15px); /* Background blur premium dikhta hai */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

/* Card ke upar ek halki chamak (Overlay) */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.05), transparent);
    transition: 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 215, 0, 0.6);
    /* Golden Glow Shadow */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 215, 0, 0.1);
    background: rgba(30, 0, 0, 0.8);
}

/* --- TEXT & ICON COLORS --- */
.card-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.service-card h3 {
    font-family: 'Cinzel Decorative', serif;
    color: #FFD700; /* Solid Gold */
    font-size: 1.7rem;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.service-intro {
    color: #ccac93;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    padding-bottom: 15px;
}

.main-para {
    color: #d1d1d1;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Highlight Box (Why Choose) */
.why-choose {
    background: rgba(255, 215, 0, 0.03);
    padding: 20px;
    border-radius: 12px;
    border-left: 2px solid #FFD700;
}

.why-choose h4 {
    color: #FFD700;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.card-features li {
    color: #b3b3b3;
    font-size: 0.88rem;
    margin-bottom: 10px;
}

/* ==========================================================================
   FOOTER SECTION CSS
   ========================================================================== */

/* --- Main Footer Container --- */
.main-footer {
    background: #0d0000;
    border-top: 3px solid var(--gold-bright);
    padding-top: 80px;
    color: #e0e0e0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 50px;
}

/* --- Footer Headings --- */
.footer-col h3,
.footer-col h4 {
    font-family: 'Cinzel Decorative', serif;
    color: var(--gold-bright);
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.footer-col h4 {
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 10px;
}

/* Heading Underline Effect */
.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--gold-bright);
}

.footer-col p {
    line-height: 1.8;
    color: #b3b3b3;
    font-size: 0.95rem;
}

/* --- Links List (Quick Links) --- */
.links-col ul {
    list-style: none;
}

.links-col li {
    margin-bottom: 12px;
}

.links-col a {
    color: #b3b3b3;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.links-col a:hover {
    color: var(--gold-bright);
    transform: translateX(8px); /* Hover par slide effect */
}

/* --- Social Icons Styling --- */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold-bright);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--gold-bright);
    font-size: 0.8rem;
    font-weight: bold;
    transition: 0.4s;
}

.social-icons a:hover {
    background: var(--gold-bright);
    color: #1a0000;
    box-shadow: 0 0 15px var(--gold-bright);
}

/* --- Contact Info Section --- */
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item .icon {
    font-size: 1.2rem;
    color: var(--gold-bright);
}

/* --- Premium Footer Logo --- */
.footer-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    width: 100%;
}

.premium-logo {
    width: 70px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
    transition: all 0.5s ease;
    cursor: pointer;
}

.premium-logo:hover {
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.7));
    transform: scale(1.05);
}

/* --- Footer Bottom Bar (Copyright Area) --- */
.footer-bottom {
    background: #000;
    padding: 25px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
    font-size: 0.85rem;
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.designer-link {
    color: var(--gold-bright);
    text-decoration: none;
}

/* --- FOOTER RESPONSIVE QUERIES --- */

/* Tablets / Laptops */
@media screen and (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile Devices */
@media screen and (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    /* Mobile pe headings center karne ke liye */
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons {
        justify-content: center !important;
        flex-direction: row !important; /* Mobile icons row mein rahein */
        gap: 20px;
    }

    .contact-item, .bottom-flex {
        justify-content: center;
    }

    .premium-logo {
        width: 140px; /* Mobile pe logo ka size adjust kiya */
    }
}

/* --- FOOTER GLOBAL STYLING --- */
.main-footer {
    background: #0d0000; /* Deep Black */
    border-top: 2px solid #FFD700; /* Top Golden Line */
    padding-top: 60px;
    color: #e0e0e0;
    font-family: 'Poppins', sans-serif;
}

.footer-top {
    padding-bottom: 50px;
}

/* Footer Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; /* Space distribution */
    gap: 40px;
    align-items: start;
}

/* --- LEFT COLUMN: LOGO & ABOUT --- */
.about-col {
    display: flex;
    flex-direction: column;
    align-items: center; /* Logo aur description ko center-align karne ke liye */
    text-align: center;
}

.footer-logo-container {
    width: 100%;
    margin-bottom: 20px;
}

.premium-logo {
    width: 130px; /* Logo size */
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
}

.about-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b3b3b3;
    max-width: 400px;
    margin-bottom: 25px;
}

/* Social Icons (Circles) */
.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icons a {
    width: 42px;
    height: 42px;
    border: 1px solid #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    transition: all 0.4s ease;
}

.social-icons a:hover {
    background: #FFD700;
    color: #000;
    box-shadow: 0 0 15px #FFD700;
}

/* --- TITLES (Quick Links & Visit Us) --- */
.footer-col h4 {
    font-family: 'Cinzel Decorative', serif;
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 2px;
    background: #FFD700;
}

/* --- LINKS COLUMN --- */
.links-col ul {
    list-style: none;
}

.links-col li {
    margin-bottom: 12px;
}

.links-col a {
    color: #b3b3b3;
    text-decoration: none;
    transition: 0.3s;
}

.links-col a:hover {
    color: #FFD700;
    padding-left: 8px; /* Subtle slide effect */
}

/* --- CONTACT COLUMN --- */
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-item .icon {
    font-size: 1.2rem;
    color: #FFD700;
}

.contact-item p {
    font-size: 0.95rem;
    color: #b3b3b3;
    line-height: 1.5;
}

/* --- FOOTER BOTTOM BAR --- */
.footer-bottom {
    background: #000;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #888;
}

.designer-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr; /* Tablet pe 2 columns */
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Mobile pe stack layout */
        text-align: center;
        gap: 45px;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%); /* Underline center karne ke liye */
    }

    .contact-item {
        justify-content: center;
    }

    .bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* --- LAPTOP & DESKTOP SIZE REDUCTION --- */
@media screen and (min-width: 1025px) {
    .main-footer {
        padding-top: 50px; /* Pehle 80px ya 60px tha, ab kam kiya */
    }

    .footer-top {
        padding-bottom: 30px; /* Space kam karne ke liye */
    }

    .footer-grid {
        gap: 30px; /* Columns ke beech ka gap kam kiya */
        max-width: 1100px; /* Footer ki total width thodi narrow ki */
        margin: 0 auto;
    }

    .premium-logo {
        width: 110px; /* Logo thoda chota kiya */
    }

    .footer-col h4 {
        font-size: 1.2rem; /* Headings thodi choti ki */
        margin-bottom: 15px;
    }

    .footer-desc {
        font-size: 0.9rem; /* Text size thoda compact kiya */
        max-width: 320px;
        margin-bottom: 15px;
    }

    .links-col li {
        margin-bottom: 8px; /* List spacing kam ki */
    }

    .contact-item {
        margin-bottom: 10px; /* Contact info spacing kam ki */
    }

    .social-icons {
        margin-top: 15px;
    }

    .social-icons a {
        width: 35px; /* Icons thode chote kiye */
        height: 35px;
    }
}



