/* Color Variables */
:root {
    --nd-maroon: #8f1f2c;
    --nd-maroon-dark: #64111c;
    --nd-gold: #d9a441;
    --nd-gold-light: #f2c766;
    --nd-white: #ffffff;
    --nd-black: #111111;
    --nd-text: #333333;
    --nd-overlay: rgba(255, 255, 255, 0.88);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
    background: var(--nd-black);
}

/* --- Top Marquee --- */
.nd-top-bar {
    background: var(--nd-maroon-dark);
    color: var(--nd-gold-light);
    height: 35px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1001;
    font-size: 12px;
    font-weight: 500;
    overflow: hidden;
}

.nd-marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee 22s linear infinite;
}

.nd-marquee span {
    margin-right: 60px;
    display: flex;
    align-items: center;
    gap: 8px;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- Header --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,900&display=swap');

/* --- Header Styling --- */
.nd-header {
    width: 100%;
    height: 85px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    position: fixed;
    top: 35px;
    z-index: 1000;
    border-bottom: 1px solid rgba(217, 164, 65, 0.2);
}


:root {
    --nd-gold: #d4af37;
    --nd-gold-light: #f9f295;
    --nd-gold-dark: #b8860b;
    --nd-white: #ffffff;
}

/* Main Container - Logo aur Text ko ek line mein laane ke liye */
.nd-logo-box {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    gap: 10px; /* Logo aur Text ke beech ka space */
    padding: 5px;
    transition: all 0.3s ease;
}

/* --- Premium Logo Image Wrapper --- */
.nd-logo-img-wrap {
    width: 200px;  /* Desktop/Normal size */
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Soft Glow Background */
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.nd-logo-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Logo ko thoda utha hua dikhane ke liye filter */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* --- Brand Text Container --- */
.nd-logo-brand {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1.5px solid var(--nd-gold); /* Side line for unique look */
    padding-left: 10px;
}

/* NIDHI Text Style */
.nidhi-text {
    /* font-family: 'Playfair Display', serif; */
    font-family: "Monotype Corsiva", serif;
    font-size: 36px; 
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    margin: 0;
    letter-spacing: 1px;
    /* text-transform: uppercase; */
    
    /* Animated Gold Metallic Gradient */
    background: linear-gradient(
        to right, 
        var(--nd-gold-dark) 0%, 
        var(--nd-gold-light) 25%, 
        var(--nd-white) 50%, 
        var(--nd-gold-light) 75%, 
        var(--nd-gold-dark) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldSweep 3s infinite linear;
}

/* DECORATION Text Style */
.decor-text {
    /* font-family: 'Cinzel', serif; */
    font-family: "Monotype Corsiva", serif;
    font-size: 20px; 
    font-weight: 700;
    color: var(--nd-gold);
    /* text-transform: uppercase; */
    letter-spacing: 3.5px; /* Spreading letters for luxury feel */
    margin-top: 2px;
}

/* Metallic Shine Animation */
@keyframes goldSweep {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}




/* Hover effect for interactivity */
.nd-logo-box:hover .nd-logo-img-wrap img {
    transform: scale(1.1) rotate(5deg);
    transition: 0.4s ease;
}
.nd-header {
    width: 100%;
    height: 80px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 6%;
    position: fixed;
    top: 35px;
    z-index: 1000;
    border-bottom: 1px solid rgba(217, 164, 65, 0.2);
}

.nd-logo-box {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nd-logo-icon {
    width: 45px;
    height: 45px;
    background: var(--nd-gold);
    color: var(--nd-maroon-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Cinzel", serif;
    font-weight: 700;
    font-size: 20px;
    border: 2px solid var(--nd-white);
    box-shadow: 0 0 15px var(--nd-gold);
}

.nd-logo-text {
    font-family: "Cinzel", serif;
    font-size: 25px;
    color: var(--nd-white);
    font-weight: 700;
    margin-left: 12px;
}

.nd-logo-text span { color: var(--nd-gold); font-weight: 400; }

.nd-navbar a {
    color: var(--nd-white);
    text-decoration: none;
    margin-left: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
}

.nd-navbar a:hover, .nd-navbar a.active { color: var(--nd-gold-light); }

.nd-menu-btn {
    background: none;
    border: none;
    color: var(--nd-white);
    font-size: 24px;
    cursor: pointer;
    display: none;
}

/* --- Hero Slider --- */
.nd-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.nd-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.nd-slide.active {
    opacity: 1;
    animation: kenburns 10s ease forwards;
}

@keyframes kenburns {
    from { transform: scale(1.15); }
    to { transform: scale(1); }
}

.nd-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.nd-hero-content {
    color: var(--nd-white);
    padding: 20px;
    max-width: 850px;
}

.nd-badge {
    border: 1px solid var(--nd-gold);
    color: var(--nd-gold-light);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
}

.nd-hero-content h1 {
    font-family: "Cinzel", serif;
    font-size: clamp(35px, 7vw, 70px);
    line-height: 1.1;
    margin-bottom: 20px;
}

.nd-hero-content h1 span { color: var(--nd-gold); }

.nd-hero-content p {
    font-size: clamp(14px, 2vw, 19px);
    opacity: 0.9;
    margin-bottom: 40px;
}

.nd-btn-gold {
    background: var(--nd-gold);
    color: var(--nd-maroon-dark);
    padding: 16px 45px;
    text-decoration: none;
    font-family: "Cinzel", serif;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    transition: 0.4s;
    box-shadow: 0 0 25px rgba(217, 164, 65, 0.4);
}

.nd-btn-gold:hover {
    background: var(--nd-white);
    transform: translateY(-5px);
}

/* --- Dots --- */
.nd-dots {
    position: absolute;
    bottom: 35px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border: 1px solid var(--nd-white);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.4s;
}

.dot.active {
    background: var(--nd-gold);
    border-color: var(--nd-gold);
    width: 35px;
    border-radius: 10px;
}
/* --- Premium Services Section --- */
.nd-img-svc-sec {
    padding: 100px 5% 80px;
    background-color: #ffffff;
}

.nd-svc-wrap {
    max-width: 1200px;
    margin: 0 auto;
}

.nd-svc-intro {
    text-align: center;
    margin-bottom: 60px;
}

.nd-svc-mini {
    color: var(--nd-maroon);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 4px;
}

.nd-svc-h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 6vw, 45px);
    color: var(--nd-black);
    margin: 15px 0;
}

.nd-svc-h2 span { color: var(--nd-gold); }

.nd-svc-gold-bar {
    width: 80px;
    height: 3px;
    background: var(--nd-gold);
    margin: 0 auto;
}

/* Grid System */
.nd-svc-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* --- Premium Image Card --- */
.nd-img-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f1f1f1;
    transition: 0.5s;
    position: relative;
}

.card-img-box {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease-in-out;
}

.nd-img-card:hover .card-img-box img {
    transform: scale(1.1) rotate(1deg);
}

.card-info {
    padding: 30px 25px;
    text-align: center;
    position: relative;
}

.card-icon-top {
    width: 55px;
    height: 55px;
    background: #fff;
    color: var(--nd-maroon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid var(--nd-gold);
    transition: 0.4s;
}

.nd-img-card:hover .card-icon-top {
    background: var(--nd-maroon);
    color: #fff;
    border-color: var(--nd-maroon);
}

.card-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    margin-top: 10px;
    color: var(--nd-maroon-dark);
}

.card-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 15px 0 20px;
}

.card-label {
    font-size: 11px;
    color: var(--nd-gold);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    border-top: 1px solid #f9f9f9;
    padding-top: 15px;
    display: block;
}

/* Specialty Card */
.nd-special-card {
    border: 2px solid var(--nd-gold);
}

/* Animations */
.nd-reveal-item {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.reveal-active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}
.nd-img-svc-sec {
        padding: 80px 15px;
        background-color: #fffaf5; /* Very light cream to complement gold */
        overflow: hidden;
    }

    .nd-svc-wrap {
        max-width: 1200px;
        margin: 0 auto;
    }

    /* Header Styling */
    .nd-svc-intro {
        text-align: center;
        margin-bottom: 60px;
    }

    .nd-svc-mini {
        display: block;
        color: var(--nd-maroon);
        text-transform: uppercase;
        letter-spacing: 4px;
        font-weight: 700;
        font-size: 13px;
        margin-bottom: 12px;
    }

    .nd-svc-h2 {
        font-size: clamp(26px, 6vw, 42px);
        color: var(--nd-black);
        font-weight: 800;
        line-height: 1.1;
    }

    .nd-svc-h2 span {
        display: block;
        color: var(--nd-gold);
        font-weight: 300;
        margin-top: 5px;
    }

    .nd-svc-gold-bar {
        width: 80px;
        height: 3px;
        background: linear-gradient(to right, var(--nd-maroon), var(--nd-gold));
        margin: 25px auto;
        border-radius: 2px;
    }

    /* Card Grid */
    .nd-svc-card-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    /* Card Styling */
    .nd-img-card {
        background: var(--nd-white);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(143, 31, 44, 0.08); /* Maroon tint shadow */
        transition: var(--nd-transition);
        position: relative;
        border: 1px solid rgba(217, 164, 65, 0.1);
    }

    .nd-img-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 25px 50px rgba(143, 31, 44, 0.15);
        border-color: var(--nd-gold-light);
    }

    /* Image Box with Shine Animation */
    .card-img-box {
        height: 240px;
        overflow: hidden;
        position: relative;
    }

    .card-img-box::after {
        content: '';
        position: absolute;
        top: 0; left: -100%;
        width: 50%; height: 100%;
        background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
        transition: 0.5s;
    }

    .nd-img-card:hover .card-img-box::after {
        left: 125%;
    }

    .card-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
    }

    .nd-img-card:hover .card-img-box img {
        transform: scale(1.15);
    }

    /* Content Area */
    .card-info {
        padding: 40px 25px 30px;
        position: relative;
    }

    /* Floating Icon */
    .card-icon-top {
        width: 60px;
        height: 60px;
        background: var(--nd-maroon);
        color: var(--nd-gold-light);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 18px;
        font-size: 24px;
        position: absolute;
        top: -30px;
        left: 25px;
        box-shadow: 0 10px 20px rgba(143, 31, 44, 0.3);
        transition: var(--nd-transition);
        transform: rotate(-5deg);
    }

    .nd-img-card:hover .card-icon-top {
        transform: rotate(0deg) scale(1.1);
        background: var(--nd-maroon-dark);
    }

    .card-info h3 {
        font-size: 22px;
        color: var(--nd-maroon-dark);
        margin-bottom: 15px;
        font-weight: 700;
    }

    .card-info p {
        color: var(--nd-text);
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .card-label {
        display: inline-block;
        background: rgba(217, 164, 65, 0.1);
        color: var(--nd-maroon);
        padding: 6px 16px;
        font-size: 12px;
        border-radius: 50px;
        font-weight: 700;
        margin-bottom: 25px;
        border: 1px solid rgba(217, 164, 65, 0.2);
    }
/* --- Contact Header Styling --- */
.nd-section-header-center {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 20px;
}

.nd-sub-badge {
    color: var(--nd-maroon);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.nd-main-heading {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: #111;
    margin-bottom: 15px;
}

.nd-main-heading span {
    color: var(--nd-gold);
}

.nd-heading-line {
    width: 80px;
    height: 3px;
    background: var(--nd-gold);
    margin: 0 auto 20px;
}

.nd-header-desc {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
}
    /* Premium Read More Button */
    .nd-svc-read-more {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        color: var(--nd-maroon);
        font-weight: 800;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        padding-bottom: 5px;
        transition: var(--nd-transition);
    }

    .nd-svc-read-more::after {
        content: '';
        position: absolute;
        bottom: 0; left: 0;
        width: 40%; height: 2px;
        background: var(--nd-gold);
        transition: var(--nd-transition);
    }

    .nd-svc-read-more:hover::after {
        width: 100%;
        background: var(--nd-maroon);
    }

    .nd-svc-read-more i {
        font-size: 16px;
        transition: var(--nd-transition);
    }

    .nd-svc-read-more:hover i {
        transform: translateX(8px);
        color: var(--nd-gold);
    }
    .nd-about-premium {
        padding: 100px 0;
        background: #fffcf9;
        overflow: hidden;
        font-family: 'Poppins', sans-serif;
    }

    .nd-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .nd-about-row {
        display: flex;
        align-items: center;
        gap: 60px;
        flex-wrap: wrap;
    }

    /* Left Side: Image Styles */
    .nd-about-img-wrap {
        flex: 1;
        min-width: 300px;
        position: relative;
        z-index: 1;
    }

    .nd-image-frame {
        position: relative;
        border-radius: 30px;
        padding: 15px;
        background: white;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .nd-image-frame img {
        width: 100%;
        border-radius: 20px;
        display: block;
        transition: var(--nd-transition);
    }

    /* Floating Experience Badge */
    .nd-exp-badge {
        position: absolute;
        bottom: -30px;
        right: -30px;
        background: var(--nd-maroon);
        color: white;
        padding: 25px;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 15px 30px rgba(143, 31, 44, 0.3);
        animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-15px); }
    }

    .exp-num {
        display: block;
        font-size: 36px;
        font-weight: 800;
        color: var(--nd-gold-light);
        line-height: 1;
    }

    .exp-txt {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Right Side: Content */
    .nd-about-content {
        flex: 1.2;
        min-width: 300px;
    }

    .nd-sub-tag {
        color: var(--nd-maroon);
        font-weight: 700;
        letter-spacing: 3px;
        font-size: 14px;
        display: block;
        margin-bottom: 15px;
    }

    .nd-main-title {
        font-size: clamp(30px, 5vw, 48px);
        color: var(--nd-black);
        line-height: 1.1;
        margin-bottom: 25px;
        font-weight: 800;
    }

    .nd-main-title span {
        color: var(--nd-maroon);
        display: block;
        background: linear-gradient(45deg, var(--nd-maroon), var(--nd-gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .nd-desc {
        color: var(--nd-text);
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    /* Feature List */
    .nd-feat-item {
        display: flex;
        gap: 20px;
        margin-bottom: 25px;
        padding: 20px;
        background: white;
        border-radius: 15px;
        transition: var(--nd-transition);
        border: 1px solid #f0f0f0;
    }

    .nd-feat-item:hover {
        transform: scale(1.03);
        box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        border-color: var(--nd-gold);
    }

    .feat-icon {
        width: 55px;
        height: 55px;
        background: rgba(143, 31, 44, 0.1);
        color: var(--nd-maroon);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        font-size: 24px;
    }

    .feat-text h4 {
        font-size: 18px;
        color: var(--nd-black);
        margin-bottom: 5px;
        font-weight: 700;
    }

    .feat-text p {
        font-size: 14px;
        color: #777;
    }

    /* Button Area */
    .nd-action-btns {
        margin-top: 40px;
        display: flex;
        align-items: center;
        gap: 30px;
        flex-wrap: wrap;
    }

    .nd-btn-primary {
        background: var(--nd-maroon);
        color: white;
        padding: 18px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: var(--nd-transition);
        box-shadow: 0 10px 20px rgba(143, 31, 44, 0.2);
    }

    .nd-btn-primary:hover {
        background: var(--nd-black);
        transform: translateY(-3px);
    }

    .nd-phone-group {
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--nd-maroon);
        font-weight: 700;
    }
    .nd-wc-ultra {
        padding: 100px 0;
        background-color: #fffaf5;
        font-family: 'Poppins', sans-serif;
        overflow: hidden;
    }

    .nd-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    /* Header Styling */
    .nd-wc-header {
        text-align: center;
        margin-bottom: 80px;
    }

    .nd-wc-tag {
        color: var(--nd-maroon);
        font-weight: 800;
        letter-spacing: 4px;
        font-size: 13px;
        text-transform: uppercase;
        display: block;
        margin-bottom: 12px;
    }

    .nd-wc-main-title {
        font-size: clamp(28px, 5vw, 46px);
        color: var(--nd-black);
        font-weight: 800;
        line-height: 1.1;
    }

    .nd-wc-main-title span {
        color: var(--nd-gold);
    }

    .nd-wc-divider {
        width: 50px;
        height: 4px;
        background: linear-gradient(to right, var(--nd-maroon), var(--nd-gold));
        margin: 25px auto;
        border-radius: 10px;
    }

    /* Grid Layout */
    .nd-wc-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 30px;
    }

    /* CARD STYLING: Tall with Linear Gradient Border */
    .nd-wc-card {
        position: relative;
        padding: 60px 30px;
        border-radius: 30px;
        text-align: center;
        z-index: 1;
        overflow: hidden;
        min-height: 440px;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: var(--nd-transition);
        cursor: pointer;
        
        /* Premium Gradient Border Hack */
        background: var(--nd-white);
        border: 2px solid transparent;
        background-clip: padding-box, border-box;
        background-origin: padding-box, border-box;
        background-image: linear-gradient(var(--nd-white), var(--nd-white)), 
                          linear-gradient(135deg, var(--nd-maroon), var(--nd-gold));
        box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    }

    /* ICON CIRCLE */
    .nd-icon-circle {
        width: 100px;
        height: 100px;
        border: 2px dashed var(--nd-maroon);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 35px;
        transition: var(--nd-transition);
        position: relative;
    }

    /* ICON ADVANCED MOVEMENT: Constant floating + slight rotation */
    .nd-icon-anim {
        font-size: 40px;
        color: var(--nd-maroon);
        transition: var(--nd-transition);
        animation: nd-complex-float 4s ease-in-out infinite;
    }

    @keyframes nd-complex-float {
        0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
        33% { transform: translateY(-12px) rotate(5deg) scale(1.05); }
        66% { transform: translateY(5px) rotate(-5deg) scale(0.95); }
    }

    /* Card Content */
    .nd-wc-card h3 {
        font-size: 24px;
        font-weight: 800;
        color: var(--nd-black);
        margin-bottom: 20px;
        transition: 0.4s;
    }

    .nd-wc-card p {
        font-size: 15px;
        color: var(--nd-text);
        line-height: 1.8;
        transition: 0.4s;
    }

    /* HOVER EFFECT: Background Slide Up */
    .nd-hover-bg {
        position: absolute;
        top: 100%; left: 0;
        width: 100%; height: 100%;
        background: linear-gradient(135deg, var(--nd-maroon), var(--nd-maroon-dark));
        z-index: -1;
        transition: var(--nd-transition);
    }

    /* --- FULL HOVER STATES --- */
    .nd-wc-card:hover {
        transform: translateY(-20px);
        box-shadow: 0 30px 60px rgba(143, 31, 44, 0.3);
    }

    .nd-wc-card:hover .nd-hover-bg {
        top: 0;
    }

    .nd-wc-card:hover h3, 
    .nd-wc-card:hover p {
        color: var(--nd-white);
    }

    .nd-wc-card:hover .nd-icon-circle {
        background: var(--nd-white);
        border: 2px solid var(--nd-gold);
        transform: rotate(360deg) scale(1.1);
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
    }

    .nd-wc-card:hover .nd-icon-anim {
        color: var(--nd-gold);
        animation: nd-mega-vibrate 0.3s linear infinite; /* Shaking Triggered */
    }

    /* ICON MEGA VIBRATION */
    @keyframes nd-mega-vibrate {
        0% { transform: translate(0, 0); }
        25% { transform: translate(3px, -3px); }
        50% { transform: translate(-3px, 3px); }
        75% { transform: translate(3px, 3px); }
        100% { transform: translate(0, 0); }
    }
/* --- RESPONSIVE 320PX --- */
@media (max-width: 480px) {
    .nd-img-svc-sec { padding: 60px 15px; }
    .nd-svc-card-grid { grid-template-columns: 1fr; }
    .card-img-box { height: 200px; }
    .nd-svc-h2 { font-size: 28px; }
     .nd-about-premium {
            padding: 60px 0;
        }
        
        .nd-about-row {
            gap: 40px;
        }

        .nd-main-title {
            font-size: 28px;
        }

        .nd-exp-badge {
            right: 0;
            bottom: -20px;
            padding: 15px;
        }

        .exp-num { font-size: 28px; }

        .nd-action-btns {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
        }

        .nd-btn-primary {
            width: 100%;
            justify-content: center;
         .nd-wc-ultra {
            padding: 60px 0;
        }

        .nd-wc-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .nd-wc-card {
            min-height: auto;
            padding: 45px 20px;
        }

        .nd-icon-circle {
            width: 85px;
            height: 85px;
        }

        .nd-icon-anim { font-size: 32px; }
        
        .nd-wc-main-title { font-size: 26px; }
    }

    /* Entrance Animation */
    .nd-wc-card {
        opacity: 0;
        animation: ndFadeInUp 0.8s forwards;
    }
    @keyframes ndFadeInUp {
        from { opacity: 0; transform: translateY(40px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .nd-wc-card:nth-child(1) { animation-delay: 0.1s; }
    .nd-wc-card:nth-child(2) { animation-delay: 0.2s; }
    .nd-wc-card:nth-child(3) { animation-delay: 0.3s; }
    .nd-wc-card:nth-child(4) { animation-delay: 0.4s; }
}
  .nd-contact-premium {
        padding: 80px 0;
        background-color: #f9f9f9;
        font-family: 'Poppins', sans-serif;
    }

    .nd-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .nd-contact-main-grid {
        display: grid;
        grid-template-columns: 0.8fr 1.2fr;
        gap: 30px;
        margin-bottom: 50px;
        align-items: stretch;
    }

    /* LEFT BOX: DARK MAROON */
    .nd-contact-info-box {
        background-color: var(--nd-maroon-dark);
        padding: 50px 40px;
        border-radius: 25px;
        color: var(--nd-white);
        position: relative;
        overflow: hidden;
    }

    .nd-info-title {
        font-size: 32px;
        color: var(--nd-gold);
        margin-bottom: 15px;
        font-weight: 700;
    }

    .nd-info-subtitle {
        font-size: 15px;
        color: rgba(255,255,255,0.7);
        line-height: 1.6;
        margin-bottom: 40px;
    }

    .nd-info-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }

    .info-icon {
        width: 50px;
        height: 50px;
        background: rgba(255,255,255,0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: var(--nd-gold);
        transition: var(--nd-transition);
    }

    .nd-info-item:hover .info-icon {
        background: var(--nd-gold);
        color: var(--nd-maroon-dark);
        transform: rotateY(180deg);
    }

    .info-details span {
        display: block;
        font-size: 12px;
        letter-spacing: 1px;
        color: rgba(255,255,255,0.5);
        margin-bottom: 5px;
    }

    .info-details a, .info-details p {
        color: var(--nd-white);
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        line-height: 1.5;
        display: block;
    }

    /* RIGHT BOX: FORM */
    .nd-contact-form-box {
        background: var(--nd-white);
        padding: 50px;
        border-radius: 25px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    }

    .nd-form-row {
        margin-bottom: 20px;
    }

    /* INPUT VISIBILITY FIX (Yahan text black dikhega) */
    .nd-input {
        width: 100%;
        padding: 18px 25px;
        border: 1px solid #e1e1e1;
        border-radius: 12px;
        font-size: 15px;
        color: var(--nd-black) !important; /* Force black text */
        background-color: #fcfcfc;
        transition: var(--nd-transition);
        outline: none;
    }

    .nd-input:focus {
        border-color: var(--nd-maroon);
        background-color: var(--nd-white);
        box-shadow: 0 5px 15px rgba(143, 31, 44, 0.05);
    }

    .nd-textarea {
        resize: none;
    }

    /* SUBMIT BUTTON */
    .nd-form-btn {
        width: 100%;
        padding: 18px;
        background-color: var(--nd-maroon);
        color: var(--nd-white);
        border: none;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: var(--nd-transition);
    }

    .nd-form-btn:hover {
        background-color: var(--nd-black);
        transform: translateY(-3px);
    }

    /* MAP WRAPPER */
    .nd-map-wrapper {
        border-radius: 25px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border: 5px solid var(--nd-white);
    }
     .nd-footer {
        background-color: var(--nd-footer-bg);
        color: var(--nd-white);
        padding: 80px 0 30px;
        position: relative;
        font-family: 'Poppins', sans-serif;
        overflow: hidden;
    }

    /* Wave Border at Top */
    .nd-footer::before {
        content: "";
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 4px;
        background: linear-gradient(to right, var(--nd-maroon), var(--nd-gold), var(--nd-maroon));
    }

    .nd-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .nd-footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 40px;
        margin-bottom: 50px;
    }

    /* Logo & About */
    .nd-footer-logo {
        font-size: 28px;
        font-weight: 800;
        margin-bottom: 20px;
        color: var(--nd-white);
    }

    .nd-footer-logo span { color: var(--nd-gold); }

    .nd-footer-about {
        font-size: 14px;
        line-height: 1.8;
        color: #b0b0b0;
        margin-bottom: 25px;
    }

    /* Titles */
    .nd-footer-col h3 {
        font-size: 20px;
        color: var(--nd-gold);
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 10px;
    }

    .nd-footer-col h3::after {
        content: '';
        position: absolute;
        bottom: 0; left: 0;
        width: 40px; height: 2px;
        background: var(--nd-maroon);
    }

    /* Animated Links */
    .nd-footer-links {
        list-style: none;
        padding: 0;
    }

    .nd-footer-links li {
        margin-bottom: 12px;
    }

    .nd-footer-links a {
        color: #b0b0b0;
        text-decoration: none;
        font-size: 15px;
        transition: var(--nd-transition);
        display: inline-block;
        position: relative;
    }

    .nd-footer-links a::after {
        content: '';
        position: absolute;
        width: 0; height: 1px;
        bottom: -2px; left: 0;
        background-color: var(--nd-gold);
        transition: var(--nd-transition);
    }

    .nd-footer-links a:hover {
        color: var(--nd-gold);
        transform: translateX(10px);
    }

    .nd-footer-links a:hover::after {
        width: 100%;
    }

    /* Social Icons Animation */
    .nd-social-links {
        display: flex;
        gap: 15px;
    }

    .nd-social-icon {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.05);
        color: var(--nd-white);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        text-decoration: none;
        transition: var(--nd-transition);
        border: 1px solid rgba(217, 164, 65, 0.2);
    }

    .nd-social-icon:hover {
        background: var(--nd-maroon);
        color: var(--nd-white);
        transform: translateY(-5px) rotate(360deg);
        border-color: var(--nd-gold);
    }

    /* Newsletter Form */
    .nd-footer-form {
        display: flex;
        margin-top: 20px;
    }

    .nd-footer-form input {
        flex: 1;
        padding: 12px 15px;
        border-radius: 5px 0 0 5px;
        border: none;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        outline: none;
    }

    .nd-footer-form button {
        background: var(--nd-maroon);
        color: white;
        border: none;
        padding: 0 20px;
        border-radius: 0 5px 5px 0;
        cursor: pointer;
        transition: var(--nd-transition);
    }

    .nd-footer-form button:hover {
        background: var(--nd-gold);
        color: var(--nd-maroon-dark);
    }

    /* Bottom Bar */
    .nd-footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        padding-top: 30px;
        text-align: center;
        font-size: 14px;
        color: #777;
    }

    .nd-footer-bottom span {
        color: var(--nd-gold);
        font-weight: 600;
    }
    /* about start======================================== */

    .nd-about-hero {
        height: 100vh; /* Full Screen */
        width: 100%;
        position: relative;
        /* Replace with your interior/blinds image */
        background: url('ph5.jpg') no-repeat center center/cover;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        font-family: 'Poppins', sans-serif;
    }

    /* Dark Gradient Overlay like the Image */
    .nd-hero-overlay {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: linear-gradient(to bottom, rgba(143, 31, 44, 0.4), rgba(17, 17, 17, 0.9));
        z-index: 1;
    }

    .nd-container1 {
        position: relative;
        z-index: 2;
        max-width: 1000px;
        padding: 0 20px;
    }

    /* Breadcrumb Animation */
    .nd-breadcrumb {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: var(--nd-gold);
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 20px;
        animation: fadeInDown 0.8s ease forwards;
    }

    .nd-breadcrumb a {
        color: var(--nd-white);
        text-decoration: none;
        transition: 0.3s;
    }

    .nd-breadcrumb a:hover { color: var(--nd-gold); }

    .nd-breadcrumb i { font-size: 10px; }

    /* Title Animation (Staggered) */
    .nd-hero-title {
        font-size: clamp(32px, 8vw, 70px);
        color: var(--nd-white);
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 25px;
        animation: fadeInUp 1s ease forwards;
    }

    .nd-gold-text {
        color: var(--nd-gold);
        display: inline-block;
    }

    /* Description Animation */
    .nd-hero-desc {
        font-size: clamp(14px, 4vw, 18px);
        color: rgba(255, 255, 255, 0.85);
        max-width: 700px;
        margin: 0 auto 40px;
        line-height: 1.6;
        animation: fadeInUp 1.2s ease forwards;
    }

    /* Scroll Down Mouse Animation */
    .nd-scroll-down {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 20px;
        animation: fadeInUp 1.5s ease forwards;
    }

    .nd-mouse {
        width: 25px;
        height: 45px;
        border: 2px solid var(--nd-gold);
        border-radius: 20px;
        position: relative;
    }

    .nd-wheel {
        width: 4px;
        height: 8px;
        background: var(--nd-gold);
        border-radius: 2px;
        position: absolute;
        top: 8px;
        left: 50%;
        transform: translateX(-50%);
        animation: mouseScroll 1.5s infinite;
    }

    @keyframes mouseScroll {
        0% { opacity: 0; top: 8px; }
        50% { opacity: 1; }
        100% { opacity: 0; top: 25px; }
    }

    .nd-scroll-text {
        color: var(--nd-gold);
        font-size: 11px;
        letter-spacing: 3px;
        font-weight: 700;
    }

    /* Keyframes */
    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(40px); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInDown {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .nd-process-premium {
        padding: 100px 0;
        background-color: #fffcf9; /* Light cream background */
        font-family: 'Poppins', sans-serif;
        overflow: hidden;
    }

    .nd-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Header Styling */
    .nd-process-header {
        text-align: center;
        margin-bottom: 80px;
    }

    .nd-mini-tag {
        color: var(--nd-maroon);
        font-weight: 800;
        letter-spacing: 4px;
        font-size: 13px;
        text-transform: uppercase;
        display: block;
        margin-bottom: 12px;
    }

    .nd-process-title {
        font-size: clamp(28px, 5vw, 46px);
        color: var(--nd-black);
        font-weight: 800;
        line-height: 1.1;
    }

    .nd-process-title span { color: var(--nd-gold); }

    .nd-process-gold-bar {
        width: 70px;
        height: 4px;
        background: var(--nd-gold);
        margin: 20px auto;
        border-radius: 10px;
    }

    .nd-process-desc {
        color: var(--nd-text);
        max-width: 600px;
        margin: 0 auto;
        font-size: 15px;
    }

    /* Timeline Grid */
    .nd-process-timeline {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        position: relative;
    }

    /* Connecting Line Animation (Desktop) */
    .nd-timeline-line {
        position: absolute;
        top: 135px;
        left: 50px;
        right: 50px;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--nd-maroon), var(--nd-gold), transparent);
        z-index: 0;
        opacity: 0.3;
        animation: lineFlow 3s infinite linear;
    }

    @keyframes lineFlow {
        0% { filter: hue-rotate(0deg); }
        100% { filter: hue-rotate(45deg); }
    }

    /* Step Card Styling */
    .nd-process-step {
        text-align: center;
        position: relative;
        z-index: 1;
        transition: var(--nd-transition);
    }

    /* Step Number Badge */
    .nd-step-number {
        width: 45px;
        height: 45px;
        background: var(--nd-maroon);
        color: var(--nd-gold-light);
        font-weight: 800;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 15px;
        margin: 0 auto -22px;
        position: relative;
        z-index: 3;
        box-shadow: 0 5px 15px rgba(143, 31, 44, 0.3);
        border: 2px solid var(--nd-white);
        transition: var(--nd-transition);
    }

    /* Icon Box like the Image */
    .nd-icon-box {
        width: 110px;
        height: 110px;
        background: var(--nd-white);
        border: 2px solid var(--nd-gold);
        color: var(--nd-maroon);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 30px;
        font-size: 36px;
        transition: var(--nd-transition);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        position: relative;
    }

    .nd-icon-box::after {
        content: '';
        position: absolute;
        width: 100%; height: 100%;
        border: 1px dashed var(--nd-maroon);
        border-radius: 50%;
        padding: 5px;
        animation: rotateDashed 10s linear infinite;
    }

    @keyframes rotateDashed {
        to { transform: rotate(360deg); }
    }

    /* Hover Effects */
    .nd-process-step:hover { transform: translateY(-10px); }

    .nd-process-step:hover .nd-icon-box {
        background: var(--nd-maroon);
        color: var(--nd-gold-light);
        border-color: var(--nd-maroon);
        transform: scale(1.1);
        box-shadow: 0 15px 35px rgba(143, 31, 44, 0.4);
    }

    .nd-process-step:hover .nd-step-number {
        background: var(--nd-gold);
        color: var(--nd-maroon-dark);
        transform: rotate(360deg) scale(1.2);
    }

    .nd-process-step h3 {
        font-size: 22px;
        color: var(--nd-maroon-dark);
        margin-bottom: 12px;
        font-weight: 700;
    }

    .nd-process-step p {
        font-size: 14.5px;
        color: var(--nd-text);
        line-height: 1.6;
        padding: 0 10px;
    }
 .nd-stats-ultra {
        background: var(--nd-maroon-dark);
        padding: 80px 0;
        font-family: 'Poppins', sans-serif;
        overflow: hidden;
        border-top: 4px solid var(--nd-gold);
    }

    .nd-stats-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
    }

    /* CARD STYLE */
    .nd-stat-box {
        position: relative;
        padding: 60px 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        z-index: 1;
        transition: var(--nd-transition);
        cursor: pointer;
    }

    /* SLANTED BACKGROUND ANIMATION (Image Style) */
    .nd-stat-bg-slant {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 100%);
        transform: skewX(-20deg);
        z-index: -1;
        transition: var(--nd-transition);
        border-right: 1px solid rgba(217, 164, 65, 0.1);
    }

    .nd-stat-box:hover .nd-stat-bg-slant {
        background: rgba(217, 164, 65, 0.08);
        transform: skewX(-15deg) scale(1.1);
    }

    /* ICON FLOATING ANIMATION (Hamesha chalta rahega) */
    .nd-icon-container {
        position: relative;
        margin-bottom: 30px;
    }

    .nd-icon-floating {
        width: 80px;
        height: 80px;
        background: rgba(255,255,255,0.05);
        border: 2px solid var(--nd-gold);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        color: var(--nd-gold);
        position: relative;
        z-index: 2;
        transition: var(--nd-transition);
        animation: nd-float 3s ease-in-out infinite; /* Floating effect */
    }

    @keyframes nd-float {
        0%, 100% { transform: translateY(0) rotate(-5deg); }
        50% { transform: translateY(-12px) rotate(5deg); }
    }

    /* GLOW BEHIND ICON */
    .nd-icon-glow {
        position: absolute;
        top: 50%; left: 50%;
        width: 100%; height: 100%;
        background: var(--nd-gold);
        filter: blur(25px);
        opacity: 0.2;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        animation: nd-pulse 2s infinite;
    }

    @keyframes nd-pulse {
        0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.2; }
        50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.4; }
        100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.2; }
    }

    /* HOVER STATE FOR ICON */
    .nd-stat-box:hover .nd-icon-floating {
        background: var(--nd-gold);
        color: var(--nd-maroon-dark);
        transform: rotateY(180deg) scale(1.1);
        box-shadow: 0 0 30px var(--nd-gold);
        animation: none; /* Hover par float stop, flip start */
    }

    /* TEXT ANIMATION */
    .nd-stat-info h3 {
        color: var(--nd-white);
        font-size: 38px;
        font-weight: 900;
        margin: 0;
        letter-spacing: 1px;
        transition: 0.3s;
    }

    .nd-stat-info p {
        color: var(--nd-gold-light);
        font-size: 13px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-top: 5px;
    }

    .nd-stat-box:hover .nd-stat-info h3 {
        color: var(--nd-gold);
        transform: scale(1.1);
    }

    /* about end======================================= */
    /* service start===================================== */

    .nd-img-svc-sec {
        padding: 80px 0;
        background-color: #fdfdfd;
        font-family: 'Poppins', sans-serif;
    }

    .nd-svc-wrap {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Header Styling */
    .nd-svc-intro {
        text-align: center;
        margin-bottom: 60px;
    }

    .nd-svc-mini {
        display: block;
        color: var(--nd-maroon);
        text-transform: uppercase;
        letter-spacing: 4px;
        font-weight: 700;
        font-size: 13px;
        margin-bottom: 10px;
    }

    .nd-svc-h2 {
        font-size: clamp(28px, 6vw, 45px);
        color: #111;
        font-weight: 800;
        line-height: 1.2;
    }

    .nd-svc-h2 span {
        color: var(--nd-gold);
    }

    .nd-svc-gold-bar {
        width: 80px;
        height: 4px;
        background: linear-gradient(to right, var(--nd-maroon), var(--nd-gold));
        margin: 20px auto;
        border-radius: 10px;
    }

    /* Grid Layout */
    .nd-svc-card-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }

    /* Card Styling */
    .nd-img-card {
        background: var(--nd-white);
        border-radius: 25px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        transition: var(--nd-transition);
        position: relative;
        border: 1px solid #f0f0f0;
    }

    .nd-img-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 25px 50px rgba(143, 31, 44, 0.1);
        border-color: var(--nd-gold-light);
    }

    /* Image Box Animation */
    .card-img-box {
        height: 240px;
        overflow: hidden;
        position: relative;
    }

    .card-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s ease;
    }

    .nd-img-card:hover .card-img-box img {
        transform: scale(1.15);
    }

    /* Content Area */
    .card-info {
        padding: 40px 25px 30px;
        position: relative;
    }

    /* Floating Icon Box */
    .card-icon-top {
        width: 60px;
        height: 60px;
        background: var(--nd-maroon);
        color: var(--nd-gold-light);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 15px;
        font-size: 24px;
        position: absolute;
        top: -30px;
        left: 25px;
        box-shadow: 0 10px 20px rgba(143, 31, 44, 0.2);
        transition: var(--nd-transition);
        border: 3px solid var(--nd-white);
    }

    .nd-img-card:hover .card-icon-top {
        transform: rotateY(180deg) scale(1.1);
        background: var(--nd-gold);
        color: var(--nd-maroon-dark);
    }

    .card-info h3 {
        font-size: 22px;
        color: #111;
        margin-bottom: 12px;
        font-weight: 700;
    }

    .card-info p {
        color: var(--nd-text);
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .card-label {
        display: inline-block;
        background: rgba(217, 164, 65, 0.1);
        color: var(--nd-maroon);
        padding: 5px 15px;
        font-size: 12px;
        border-radius: 50px;
        font-weight: 700;
        margin-bottom: 20px;
        border: 1px solid rgba(217, 164, 65, 0.2);
    }

    /* Read More Button with Animation */
    .nd-svc-read-more {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: var(--nd-maroon);
        font-weight: 800;
        font-size: 14px;
        transition: var(--nd-transition);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .nd-svc-read-more i {
        transition: var(--nd-transition);
    }

    .nd-svc-read-more:hover {
        color: var(--nd-gold);
    }

    .nd-svc-read-more:hover i {
        transform: translateX(10px);
    }
/* --- Nidhi Decoration Service Hero Styles --- */

.nd-ultimate-svc-hero {
    position: relative;
    padding: 160px 0 100px;
    background: #ffffff;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Floating Background Decoration */
.nd-floating-shapes .shape {
    position: absolute;
    z-index: 1;
    background: linear-gradient(135deg, rgba(143, 31, 44, 0.05), rgba(217, 164, 65, 0.05));
    border-radius: 50%;
}
.shape.s1 { width: 500px; height: 500px; top: -100px; right: -100px; animation: floatAnim 15s infinite alternate; }
.shape.s2 { width: 300px; height: 300px; bottom: -50px; left: -50px; animation: floatAnim 20s infinite alternate-reverse; }

@keyframes floatAnim {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(50px, 100px) rotate(30deg); }
}

.nd-svc-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Breadcrumb Animation */
.nd-breadcrumb-anim {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--nd-maroon);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.nd-breadcrumb-anim i { font-size: 6px; color: var(--nd-gold); }

/* Typography */
.nd-glitch-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(45px, 6vw, 80px);
    line-height: 1;
    color: #1a1a1a;
    margin-bottom: 25px;
}
.nd-glitch-title span { display: block; }
.gold-gradient {
    background: linear-gradient(to right, #d9a441, #f2c766);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nd-svc-lead-text {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    max-width: 550px;
    margin-bottom: 35px;
    border-left: 3px solid var(--nd-gold);
    padding-left: 20px;
}

/* Mini Service Badges */
.nd-svc-mini-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}
.svc-mini-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: #fcfcfc;
    padding: 15px;
    border-radius: 10px;
    width: 100px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.svc-mini-item i { font-size: 20px; color: var(--nd-maroon); }
.svc-mini-item span { font-size: 12px; font-weight: 600; text-transform: uppercase; }
.svc-mini-item:hover { transform: translateY(-5px); background: #fff; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* CTA Button */
.nd-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: var(--nd-maroon);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: 0.4s;
    box-shadow: 0 15px 30px rgba(143, 31, 44, 0.3);
}
.nd-explore-btn:hover { background: var(--nd-black); transform: scale(1.05); }

/* Mosaic Visual (Right Side) */
.nd-svc-mosaic-visual {
    position: relative;
    height: 550px;
}
.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    height: 100%;
}
.mosaic-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}
.mosaic-item:hover img { transform: scale(1.1); }

.m1 { grid-row: span 2; } /* Large vertical image */
.m2 { grid-column: span 1; }
.m3 { grid-column: span 1; }

/* Image Reveal Animation */
.mosaic-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--nd-maroon);
    transform-origin: left;
    animation: revealMosaic 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.m1 .mosaic-overlay { animation-delay: 0.2s; }
.m2 .mosaic-overlay { animation-delay: 0.4s; }
.m3 .mosaic-overlay { animation-delay: 0.6s; }

@keyframes revealMosaic {
    to { transform: scaleX(0); }
}

/* Expert Label */
.nd-expert-label {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    z-index: 10;
    animation: bounceIn 1s forwards 1.2s;
    opacity: 0;
}
@keyframes bounceIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.el-icon {
    width: 45px;
    height: 45px;
    background: var(--nd-gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
}
.el-text strong { display: block; font-size: 15px; color: var(--nd-black); }
.el-text span { font-size: 13px; color: #777; }
    /* service end=================================== */
@media (max-width: 330px) {
    .card-info { padding: 25px 15px; }
    .card-info h3 { font-size: 19px; }
}
/* --- Responsive (320px Perfect) --- */
@media (max-width: 850px) {
    .nd-menu-btn { display: block; }
    .nd-navbar {
        position: fixed;
        right: -100%;
        top: 0;
        width: 270px;
        height: 100vh;
        background: var(--nd-maroon-dark);
        display: flex;
        flex-direction: column;
        padding-top: 100px;
        transition: 0.4s;
    }
    .nd-navbar.show { right: 0; }
    .nd-navbar a { 
        margin: 15px 30px; 
        font-size: 16px; 
        border-bottom: 1px solid rgba(255,255,255,0.1); 
        padding-bottom: 10px; 
    }
    .nd-close-btn { 
        position: absolute; top: 20px; right: 20px; 
        background: none; border: none; color: #fff; font-size: 30px; 
    }
     .nd-close-btn { display: block; }
       .nd-contact-main-grid {
            grid-template-columns: 1fr;
        }
         .nd-stats-container { grid-template-columns: repeat(2, 1fr); }
        .nd-stat-bg-slant { transform: skewX(0); border-right: none; border-bottom: 1px solid rgba(217, 164, 65, 0.1); }
         .nd-svc-hero-layout { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .nd-svc-lead-text { margin: 0 auto 30px; border-left: none; border-top: 3px solid var(--nd-gold); padding: 20px 0 0; }
    .nd-svc-mini-grid { justify-content: center; }
}
 @media (max-width: 480px) {
        .nd-contact-info-box { padding: 40px 25px; }
        .nd-contact-form-box { padding: 30px 20px; }
        .nd-info-title { font-size: 26px; }
        .nd-contact-premium { padding: 50px 0; }
           .nd-footer {
            padding: 60px 0 20px;
            text-align: center;
        }

        .nd-footer-col h3::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .nd-social-links {
            justify-content: center;
        }

        .nd-footer-grid {
            gap: 50px;
        }
         .nd-process-premium { padding: 60px 0; }
        
        .nd-timeline-line { display: none; }
        
        .nd-process-timeline {
            grid-template-columns: 1fr;
            gap: 60px;
        }

        /* Vertical Line for Mobile */
        .nd-process-timeline::before {
            content: '';
            position: absolute;
            top: 50px; bottom: 50px;
            left: 50%;
            width: 1px;
            border-left: 1px dashed var(--nd-maroon);
            opacity: 0.3;
        }

        .nd-process-title { font-size: 26px; }

        .nd-icon-box {
            width: 95px; height: 95px;
            font-size: 30px;
        }
          .nd-stats-container { grid-template-columns: 1fr; }
        .nd-stat-box { padding: 40px 20px; }
        .nd-icon-floating { width: 70px; height: 70px; font-size: 28px; }
        .nd-stat-info h3 { font-size: 32px; }
         .nd-ultimate-svc-hero { padding: 120px 0 60px; }
    .nd-glitch-title { font-size: 36px; }
    .nd-svc-mosaic-visual { height: 400px; }
    .svc-mini-item { width: 85px; padding: 10px; }
    .nd-expert-label { right: 50%; transform: translateX(50%); width: 220px; padding: 12px; }
    .el-text strong { font-size: 13px; }
    .nd-main-heading {
        font-size: 32px;
    }
    .nd-section-header-center {
        margin-bottom: 30px;
    }
    .nd-header-desc {
        font-size: 14px;
        padding: 0 10px;
    }
    }

    /* ANIMATIONS */
    .nd-contact-info-box { animation: slideInLeft 0.8s ease; }
    .nd-contact-form-box { animation: slideInRight 0.8s ease; }

    @keyframes slideInLeft {
        from { opacity: 0; transform: translateX(-50px); }
        to { opacity: 1; transform: translateX(0); }
    }
    @keyframes slideInRight {
        from { opacity: 0; transform: translateX(50px); }
        to { opacity: 1; transform: translateX(0); }
        
    }
.nd-reveal {
        opacity: 0;
        transform: translateY(30px);
        animation: footerFadeUp 0.8s forwards;
    }

    @keyframes footerFadeUp {
        to { opacity: 1; transform: translateY(0); }
    }

    .nd-footer-col:nth-child(1) { animation-delay: 0.1s; }
    .nd-footer-col:nth-child(2) { animation-delay: 0.2s; }
    .nd-footer-col:nth-child(3) { animation-delay: 0.3s; }
    .nd-footer-col:nth-child(4) { animation-delay: 0.4s; }
    .nd-process-step {
        opacity: 0;
        transform: translateY(40px);
        animation: revealUp 0.8s forwards ease;
    }
    @keyframes revealUp {
        to { opacity: 1; transform: translateY(0); }
    }
    .nd-process-step:nth-child(2) { animation-delay: 0.2s; }
    .nd-process-step:nth-child(3) { animation-delay: 0.4s; }
    .nd-process-step:nth-child(4) { animation-delay: 0.6s; }
    .nd-process-step:nth-child(5) { animation-delay: 0.8s; }
     .nd-stat-box {
        opacity: 0;
        transform: translateY(40px);
        animation: ndReveal 0.8s forwards;
    }
    @keyframes ndReveal {
        to { opacity: 1; transform: translateY(0); }
    }
    .nd-stat-box:nth-child(1) { animation-delay: 0.1s; }
    .nd-stat-box:nth-child(2) { animation-delay: 0.2s; }
    .nd-stat-box:nth-child(3) { animation-delay: 0.3s; }
    .nd-stat-box:nth-child(4) { animation-delay: 0.4s; }
@media (max-width: 350px) {
    .nd-hero-content h1 { font-size: 30px; }
    .nd-logo-text { font-size: 20px; }
    .nd-header { height: 70px; }
    .nd-header { height: 75px; padding: 0 10px; }
    .nd-logo-img-wrap { width: 42px; height: 42px; border-radius: 8px; }
    .nidhi-text { font-size: 22px; }
    .decor-text { font-size: 10px; letter-spacing: 3px; }
    .nd-logo-box { gap: 8px; }
    .nd-close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    display: none; /* Desktop pe hide */
}

}
  @media (max-width: 380px) {
        .nd-img-svc-sec {
            padding: 50px 10px;
        }

        .nd-svc-h2 {
            font-size: 24px;
        }

        .nd-svc-card-grid {
            grid-template-columns: 1fr;
            gap: 45px; /* Extra gap for the floating icon */
        }

        .card-info {
            padding: 45px 20px 25px;
        }

        .card-img-box {
            height: 200px;
        }

        .card-icon-top {
            width: 50px;
            height: 50px;
            font-size: 20px;
            top: -25px;
        }
          .nd-svc-wrap { padding: 0 10px; }
        
        .nd-svc-card-grid {
            grid-template-columns: 1fr; /* Single column for 320px */
            gap: 40px;
        }

        .card-info { padding: 35px 15px 25px; }

        .nd-img-svc-sec { padding: 50px 0; }

        .card-img-box { height: 200px; }

        .nd-svc-h2 { font-size: 26px; }
        .nd-logo-box {
        gap: 8px;
    }
    
    .nd-logo-img-wrap {
        width: 45px; /* Choti screen par fit hone ke liye logo thoda chota */
        height: 45px;
    }
    
    .nd-logo-brand {
        padding-left: 8px;
    }
    
    .nidhi-text {
        font-size: 20px; /* Perfect for 320px */
        letter-spacing: 0.5px;
    }
    
    .decor-text {
        font-size: 8px; /* Word 'Decoration' lamba hai isliye size chota kiya */
        letter-spacing: 2px;
    }
        
    }

    

    




    .ndec-flow-gallery{
    background:#020912;
    padding:80px 0;
    overflow:hidden;
}

.ndec-flow-title{
    text-align:center;
    color:#fff;
    font-size:60px;
    font-weight:800;
    margin-bottom:60px;
}

.ndec-flow-title span{
    color:#0d8cff;
}

.ndec-marquee{
    overflow:hidden;
    width:100%;
    margin-bottom:35px;
}

.ndec-track{
    display:flex;
    width:max-content;
    gap:30px;
}

.ndec-left .ndec-track{
    animation: ndecleftmove 30s linear infinite;
}

.ndec-right .ndec-track{
    animation: ndecrightmove 30s linear infinite;
}

.ndec-item{
    width:420px;
    height:520px;
    border-radius:30px;
    overflow:hidden;
    flex-shrink:0;
    transition:.5s;
}

.ndec-item img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.ndec-item:hover{
    transform:translateY(-10px);
}

@keyframes ndecleftmove{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

@keyframes ndecrightmove{
    from{
        transform:translateX(-50%);
    }
    to{
        transform:translateX(0);
    }
}

@media(max-width:768px){

    .ndec-flow-title{
        font-size:38px;
    }

    .ndec-item{
        width:280px;
        height:360px;
    }

    .ndec-track{
        gap:15px;
    }
}

@media(max-width:320px){

    .ndec-item{
        width:240px;
        height:320px;
    }

    .ndec-flow-title{
        font-size:28px;
    }
}

