/* Modal CSS - Theme ke mutabiq */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 9, 15, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.custom-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.custom-modal.show .modal-content {
    transform: translateY(0) scale(1);
}

.modal-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.4));
}

.modal-content h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--text);
}

.modal-content p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Footer (Modal Specific/Override) */
footer {
    background: var(--bg3);
    padding: 60px 5% 30px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Syne', sans-serif;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.2s;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--muted);
    font-size: 0.8rem;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

/* ─── MAIN VARIABLES & THEME ─── */
:root {
    --bg: #07090f;
    --bg2: #0d1120;
    --bg3: #111827;
    --surface: #161d2e;
    --accent: #3b82f6;
    --accent2: #06b6d4;
    --gold: #f59e0b;
    --green: #10b981;
    --pink: #ec4899;
    --purple: #9333ea;
    --text: #f0f4ff;
    --muted: #8b96b0;
    --border: rgba(59, 130, 246, 0.15);
    --glow: rgba(59, 130, 246, 0.3);
    --nav-bg: rgba(7, 9, 15, 0.85);
    --shadow: rgba(0, 0, 0, 0.4);
    --transition: background 0.3s, color 0.3s, border-color 0.3s;
}

/* ─── LIGHT MODE ─── */
html.light {
    --bg: #f4f6fb;
    --bg2: #eaecf4;
    --bg3: #dde1ef;
    --surface: #ffffff;
    --text: #0f1629;
    --muted: #5a6585;
    --border: rgba(59, 130, 246, 0.18);
    --glow: rgba(59, 130, 246, 0.2);
    --nav-bg: rgba(244, 246, 251, 0.92);
    --shadow: rgba(0, 0, 0, 0.1);
}

html.light body::before {
    opacity: 0.15;
}

html.light .hero-bg-glow {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
}

html.light .trust-bar {
    background: #e2e6f2;
}

html.light .services {
    background: #eaecf4;
}

html.light .process {
    background: #f4f6fb;
}

html.light .why {
    background: #eaecf4;
}

html.light .bestseller {
    background: #f4f6fb;
}

html.light .pricing {
    background: #eaecf4;
}

html.light .portfolio {
    background: #f4f6fb;
}

html.light .testimonials {
    background: #eaecf4;
}

html.light .cta-section {
    background: #f4f6fb;
}

html.light .contact {
    background: #eaecf4;
}

html.light footer {
    background: #f4f6fb;
}

html.light input,
html.light select,
html.light textarea {
    background: #fff;
    color: #0f1629;
}

html.light .svc-card {
    background: #fff;
}

html.light .service-card {
    background: #fff;
}

html.light .service-card:hover {
    background: #f0f4ff;
}

html.light .review-card {
    background: #fff;
    border-color: rgba(59, 130, 246, 0.12);
}

html.light .pricing-card {
    background: #fff;
}

html.light .why-visual {
    background: #fff;
}

html.light .guarantee-block {
    background: #fff;
}

html.light .why-icon {
    background: rgba(59, 130, 246, 0.07);
}

html.light .g-item {
    background: rgba(16, 185, 129, 0.05);
}

html.light .contact-item-icon {
    background: rgba(59, 130, 246, 0.07);
}

html.light .float-btn {
    box-shadow: 0 6px 24px rgba(59, 130, 246, 0.25);
}

/* ─── THEME TOGGLE BUTTON ─── */
.theme-toggle {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.25s;
    flex-shrink: 0;
}

.theme-toggle:hover {
    border-color: var(--accent);
    background: rgba(59, 130, 246, 0.08);
}

/* Smooth theme transition on all elements */
*,
*::before,
*::after {
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ─── NOISE OVERLAY ─── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

/* ─── STICKY NAV & ENTRANCE ANIMATION ─── */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

nav {
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: height 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
    animation: slideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* SCROLLED STATE */
nav.nav-scrolled {
    height: 65px;
    background: rgba(7, 9, 15, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid transparent;
}

html.light nav.nav-scrolled {
    background: rgba(244, 246, 251, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ─── LOGO STYLING & ANIMATION ─── */
.logo {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

.custom-logo {
    height: 60px;
    /* Header ke hisaab se perfect size */
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Hover karne par logo halka sa aagay aayega (Scale effect) */
.logo:hover .custom-logo {
    transform: scale(1.05);
}

/* ─── MENU LINKS (Fix Applied Here) ─── */
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0;
    /* Default margin reset */
    padding: 0;
    /* Default padding reset */
}

/* Yahan aapka DOT (.) miss tha */
.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--text);
    transform: translateY(-2px);
}

/* ─── CTA BUTTON SHINE EFFECT ─── */
.nav-cta {
    background: var(--accent);
    color: #fff;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--glow);
}

/* ─── HERO SECTION (2 COLUMN LAYOUT) ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* Dono cheezon ko vertically center rakhega */
    padding: 100px 3% 70px;
    position: relative;
    overflow: hidden;
}

/* Ye naya container banaya hai jo text aur image ko barabar layega */
.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* Left text thora bara, right image thori choti */
    gap: 60px;
    /* Text aur image ke darmiyan fasla */
    align-items: start;
    /* Dono ko oopar se ek line mein milayega (Your Brand Deserves ki line se) */
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 10;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 6s ease-in-out infinite;
}

.hero-bg-glow2 {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.7;
        transform: scale(1.05)
    }
}

#heroBadgeText {
    display: inline-block;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--green);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both;
}

.hero-badge::before {
    content: '●';
    color: var(--green);
    animation: blink 1.5s ease infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 5vw, 5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    max-width: 820px;
    margin-bottom: 28px;
    animation: fadeUp 0.6s 0.1s ease both;
}

h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeUp 0.6s 0.2s ease both;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border: 1px solid var(--border);
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 64px;
    animation: fadeUp 0.6s 0.4s ease both;
}

.stat-num {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
}

.stat-num span {
    color: var(--accent);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 400;
    margin-top: 2px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ─── FLOATING ANIMATION ─── */
@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }

    /* Image 25px oopar jayegi aur wapas aayegi */
}

/* ─── HERO IMAGE SLIDER (NO BOX, BIGGER SIZE & FLOATING) ─── */
.hero-visual {
    position: relative;
    width: 100%;
    height: 750px;
    /* Size thora aur barha diya (pehle 600px tha) */
    margin-top: 20px;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;

    /* Pehle wali animation ke sath Floating animation bhi jor di (6 second ki loop) */
    animation: fadeUp 0.8s 0.3s ease both, floatImage 6s ease-in-out infinite;
}

/* Light mode shadow adjust (khatam kiya) */
html.light .hero-visual {
    box-shadow: none !important;
    background: transparent !important;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
    background: transparent !important;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1.2s ease-in-out, transform 5s ease-out;
    z-index: 1;
}

.hero-slider .slide.active {
    opacity: 1;
    transform: scale(1.15);
    /* Image zoom ho kar thori aur badi dikhegi (pehle 1.05 tha) */
    z-index: 2;
}

/* Mobile Devices ke liye wapas oopar neechay */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        height: 450px;
        margin-top: 10px;
    }
}

/* ─── TRUST BAR (CONTINUOUS SLIDER) ─── */
.trust-bar {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    position: relative;
}

/* Fade effect on left and right corners */
.trust-bar::before,
.trust-bar::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.trust-bar::before {
    left: 0;
    background: linear-gradient(to right, var(--surface) 0%, transparent 100%);
}

.trust-bar::after {
    right: 0;
    background: linear-gradient(to left, var(--surface) 0%, transparent 100%);
}

.trust-track {
    display: flex;
    align-items: center;
    gap: 48px;
    padding-right: 48px;
    animation: scrollTrust 25s linear infinite;
}

.trust-bar:hover .trust-track {
    animation-play-state: paused;
}

@keyframes scrollTrust {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 500;
    white-space: nowrap;
}

.trust-badge svg {
    color: var(--gold);
    flex-shrink: 0;
}

/* ─── SECTIONS ─── */
section {
    padding: 100px 5%;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    margin-bottom: 16px;
}

h2 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.7;
    font-weight: 300;
}

/* ─── SERVICES ─── */
.services {
    background: var(--bg2);
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2px;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}

.service-card {
    background: var(--surface);
    padding: 36px 32px;
    cursor: pointer;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    background: #1a2336;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover .service-icon {
    background: rgba(59, 130, 246, 0.2);
    color: var(--accent);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 20px;
    transition: all 0.25s;
}

.service-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.service-desc {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 300;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.25s;
}

.service-card:hover .service-cta {
    opacity: 1;
    transform: translateX(0);
}

/* ─── PROCESS ─── */
.process {
    background: var(--bg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 60px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 16.66%;
    right: 16.66%;
    height: 1px;
    /* background: linear-gradient(90deg, var(--accent), var(--accent2)); */
    opacity: 0.3;
}

.process-step {
    padding: 40px 32px;
    text-align: center;
    position: relative;
}

.step-num {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 0 30px var(--glow);
    position: relative;
    z-index: 1;
}

.step-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 300;
}

/* ─── WHY US ─── */
.why {
    background: var(--bg2);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.why-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.why-text h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.why-text p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 300;
}

.why-visual {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.why-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
}

.guarantee-badge {
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    margin-bottom: 24px;
}

.guarantee-badge .big-text {
    font-family: 'Syne', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    display: block;
}

.guarantee-badge p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
}

.guarantee-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.g-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 500;
}

.g-item::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
    font-size: 1rem;
}

/* ─── PRICING ─── */
.pricing {
    background: var(--bg);
}

.pricing-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 48px 0 0;
}

.tab-btn {
    padding: 10px 22px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.tab-btn:hover {
    border-color: var(--accent);
    color: var(--text);
}

.tab-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.pricing-scroll-wrap {
    position: relative;
    margin-top: 32px;
}

.scroll-fade-left,
.scroll-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    pointer-events: none;
    z-index: 10;
}

.scroll-fade-left {
    left: 0;
    background: linear-gradient(to right, var(--bg) 0%, transparent 100%);
}

.scroll-fade-right {
    right: 0;
    background: linear-gradient(to left, var(--bg) 0%, transparent 100%);
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 40px;
    height: 40px;
    background: var(--surface);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.scroll-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
}

.scroll-btn.left {
    left: -20px;
}

.scroll-btn.right {
    right: -20px;
}

.pricing-scroller {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 4px 32px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(59, 130, 246, 0.3) transparent;
}

.pricing-scroller::-webkit-scrollbar {
    height: 4px;
}

.pricing-scroller::-webkit-scrollbar-track {
    background: transparent;
}

.pricing-scroller::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.3);
    border-radius: 2px;
}

.pricing-card {
    flex: 0 0 340px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    scroll-snap-align: start;
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pricing-card:hover {
    border-color: rgba(59, 130, 246, 0.45);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border);
}

.pricing-card.tier-starter::before {
    background: linear-gradient(90deg, #475569, #64748b);
}

.pricing-card.tier-pro::before {
    background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.pricing-card.tier-enterprise::before {
    background: linear-gradient(90deg, var(--gold), #f97316);
}

.pricing-card.popular {
    border-color: var(--accent);
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.18);
}

.popular-badge {
    position: absolute;
    top: -1px;
    right: 24px;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color: #fff;
    padding: 6px 14px 8px;
    border-radius: 0 0 10px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.card-header {
    padding: 28px 28px 0;
}

.card-tier-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.tier-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.tier-starter .tier-dot {
    background: #64748b;
}

.tier-pro .tier-dot {
    background: var(--accent);
    box-shadow: 0 0 6px var(--accent);
}

.tier-enterprise .tier-dot {
    background: var(--gold);
    box-shadow: 0 0 6px var(--gold);
}

.card-tier {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.tier-starter .card-tier {
    color: #64748b;
}

.tier-pro .card-tier {
    color: var(--accent);
}

.tier-enterprise .card-tier {
    color: var(--gold);
}

.card-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}

.card-desc {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 20px;
}

.card-price-block {
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.025);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 4px;
}

.price-orig {
    font-size: 0.95rem;
    color: var(--muted);
    text-decoration: line-through;
}

.price-now {
    font-family: 'Syne', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.price-period {
    font-size: 0.8rem;
    color: var(--muted);
    align-self: flex-end;
    padding-bottom: 4px;
}

.price-save {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--green);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-top: 6px;
}

.card-body {
    padding: 20px 28px;
    flex: 1;
}

.features-group {
    margin-bottom: 18px;
}

.features-group-label {
    font-size: 0.65rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.features-group-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.45;
}

.feat-check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.tier-starter .feat-check {
    background: rgba(100, 116, 139, 0.15);
    color: #64748b;
}

.tier-pro .feat-check {
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent);
}

.tier-enterprise .feat-check {
    background: rgba(245, 158, 11, 0.15);
    color: var(--gold);
}

.feat-highlight {
    color: var(--text) !important;
    font-weight: 500 !important;
}

.feat-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.12);
    color: var(--accent);
    padding: 1px 7px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 4px;
}

.feat-badge.gold {
    background: rgba(245, 158, 11, 0.12);
    color: var(--gold);
}

.card-footer {
    padding: 0 28px 28px;
    margin-top: auto;
}

.card-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 20px;
}

.btn-card {
    display: block;
    width: 100%;
    background: var(--accent);
    color: #fff;
    padding: 13px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    font-size: 0.875rem;
    cursor: pointer;
    border: none;
    font-family: 'DM Sans', sans-serif;
}

.btn-card:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.btn-card.starter-btn {
    background: transparent;
    border: 1px solid rgba(100, 116, 139, 0.4);
    color: var(--muted);
}

.btn-card.starter-btn:hover {
    border-color: var(--accent);
    color: var(--text);
    background: rgba(59, 130, 246, 0.08);
}

.btn-card.enterprise-btn {
    background: linear-gradient(135deg, var(--gold), #f97316);
    color: #07090f;
}

.btn-card.enterprise-btn:hover {
    opacity: 0.9;
}

.card-footnote {
    text-align: center;
    font-size: 0.72rem;
    color: var(--muted);
    margin-top: 10px;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
    background: var(--bg2);
}

.stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 6px;
    letter-spacing: 2px;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 20px;
}

.review-score {
    font-family: 'Syne', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text);
}

.review-count {
    font-size: 0.85rem;
    color: var(--muted);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    transition: all 0.25s;
}

.review-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}

.reviewer-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.reviewer-service {
    font-size: 0.775rem;
    color: var(--muted);
}

.review-text {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
}

/* ─── CONTACT / CTA ─── */
.cta-section {
    background: var(--bg);
    text-align: center;
    padding: 40px 5%;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.urgency-note {
    margin-top: 24px;
    font-size: 0.8rem;
    color: var(--muted);
}

.urgency-note span {
    color: var(--gold);
    font-weight: 600;
}

/* ─── CONTACT FORM ─── */
.contact {
    background: var(--bg2);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

input,
select,
textarea {
    width: 100%;
    padding: 13px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    transition: border-color 0.2s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

select {
    appearance: none;
    cursor: pointer;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-info p {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 32px;
    font-weight: 300;
    line-height: 1.7;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: center;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item-text small {
    font-size: 0.75rem;
    color: var(--muted);
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-item-text span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* ─── MODERN FOOTER STYLING ─── */
.modern-footer {
    background: var(--bg2);
    /* Thora alag background taake section alag lagay */
    padding: 80px 5% 30px;
    border-top: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

/* Footer Top Glow Effect */
.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    box-shadow: 0 0 20px var(--accent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    /* Pehla aur aakhri column thora bara */
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text);
    position: relative;
    display: inline-block;
}

/* Heading ke neechay choti line */
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

/* ─── FOOTER LINKS HOVER ANIMATION ─── */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links li a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

/* Arrow appear on hover */
.footer-links li a::before {
    content: '→';
    color: var(--accent);
    font-size: 1rem;
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: var(--accent2);
    transform: translateX(5px);
}

.footer-links li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* ─── SOCIAL MEDIA BUTTONS ─── */
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--glow);
}

/* ─── CONTACT INFO ─── */
.footer-cta {
    width: 100%;
    justify-content: center;
    margin-bottom: 24px;
}

.footer-contact-info p {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ─── FOOTER BOTTOM & PAYMENT IMAGE ─── */
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    /* 3 items hain (Text, Image, Links), tou space-between unhe barabar set karega */
    align-items: center;
    color: var(--muted);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent);
}

/* ─── PAYMENT IMAGE STYLING ─── */
.footer-payments {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pay-icons-img {
    height: 45px;
    /* Ye height us image ke hisab se set ki hai taake saaf nazar aaye */
    width: auto;
    display: block;
    opacity: 0.9;
    /* Halka sa blend karega theme ke sath */
    transition: opacity 0.3s ease;
}

.pay-icons-img:hover {
    opacity: 1;
    /* Hover karne pe full bright ho jayega */
}


/* ─── MOBILE RESPONSIVENESS ─── */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-payments {
        /* Mobile pe image center mein rahegi */
        order: 2;
        /* Agar aap chahein tou iski position change kar sakte hain */
    }
}

/* ─── BEST SELLER ─── */
.bestseller {
    background: var(--bg2);
    position: relative;
    overflow: hidden;
}

.bestseller::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(147, 51, 234, 0.08) 0%, transparent 60%), radial-gradient(ellipse at 30% 80%, rgba(6, 182, 212, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.bs-inner {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: start;
}

.bs-header {
    margin-bottom: 36px;
}

.bs-combo-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ec4899;
    margin-bottom: 10px;
}

.bs-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
    line-height: 1.1;
}

.bs-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.bs-col-title {
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    background: linear-gradient(90deg, #a855f7, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 14px;
}

.bs-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.bs-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.4;
}

.bs-list li::before {
    content: '✓';
    display: inline-flex;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.15);
    color: #06b6d4;
    font-size: 0.65rem;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.bs-sidebar {
    position: sticky;
    top: 100px;
}

.bs-price-card {
    background: var(--surface);
    border: 1px solid rgba(147, 51, 234, 0.3);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 0 60px rgba(147, 51, 234, 0.12);
    position: relative;
    overflow: hidden;
}

.bs-price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #9333ea, #06b6d4);
}

.bs-sale-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #ec4899, #9333ea);
    color: #fff;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.bs-orig-price {
    font-size: 1.2rem;
    color: var(--muted);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.bs-new-price {
    font-family: 'Syne', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #a855f7, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}

.bs-save-tag {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--green);
    padding: 4px 14px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.bs-guarantees {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    text-align: left;
}

.bs-guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--muted);
}

.bs-guarantee-item::before {
    content: '✓';
    color: var(--green);
    font-weight: 700;
}

.bs-cta-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #9333ea, #06b6d4);
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s;
    letter-spacing: 0.02em;
}

.bs-cta-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(147, 51, 234, 0.4);
}

.bs-note {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 10px;
}

/* ─── PORTFOLIO CLEAN ─── */
.portfolio {
    background: var(--bg);
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.portfolio-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 18px;
    border-radius: 8px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    align-items: center;
    /* JADOO YAHAN HAI: Yeh boxes ko fuzool lamba hone se rokega */
    border-radius: 16px;
    overflow: hidden;
}

.portfolio-item {
    background: var(--surface);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
    /* Box apni image ke hisaab se lamba hoga */
    display: block;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Exactly fit image */
.portfolio-item img {
    width: 100%;
    height: auto;
    /* Image poori dikhegi aur crop nahi hogi */
    display: block;
    transition: transform 0.4s ease-in-out;
    transform-origin: center;
}



.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 9, 15, 0.95) 0%, rgba(7, 9, 15, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    border-radius: 12px;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent2);
    margin-bottom: 6px;
}

.portfolio-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.portfolio-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    padding: 6px 14px;
    border-radius: 6px;
    text-decoration: none;
    width: fit-content;
}

/* ─── LIGHTBOX MODAL CSS ─── */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 9, 15, 0.95);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 85%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s;
}

.lightbox-close:hover {
    color: var(--accent);
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    nav {
        padding: 14px 5%;
    }

    .nav-links {
        display: none;
    }

    h1 {
        font-size: 2.4rem;
    }

    .hero-stats {
        gap: 28px;
        flex-wrap: wrap;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-steps::before {
        display: none;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 16px;
    }

    .float-btn {
        bottom: 20px;
        right: 16px;
        padding: 12px 18px;
    }

    .bs-inner {
        grid-template-columns: 1fr;
    }

    .bs-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bs-sidebar {
        position: static;
    }

    /* Mobile me equal 2 columns grid */
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* contact.php */
/* ==========================================================================
   CONTACT PAGE: GLOBAL LOCATIONS GRID
   ========================================================================== */
.global-locations {
    padding: 120px 5% 60px;
    background: var(--bg);
}

.loc-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.loc-header h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--text);
}

.loc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* ─── Card Styling ─── */
.loc-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 35px 40px;
    position: relative;
    /* overflow: hidden;  <-- YAHAN CHANGE KIYA HAI! Ab hum overflow hidden NAHI karenge */
    transition: all 0.3s ease;
    z-index: 1;
    /* Card ko oopar rakhein background elements se */
}

/* Ensure information stays on TOP of the flag */
.loc-title,
.loc-details {
    position: relative;
    z-index: 5;
}

.loc-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px var(--glow);
}


/* ─── WAVING FLAG ANIMATION (For Contact & Locations) ─── */
.flag-wrapper {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-end;
}

.waving-flag-emoji {
    font-size: 3.5rem;
    /* Default size for location boxes */
    line-height: 1;
    display: inline-block;
    transform-origin: bottom left;
    animation: waveFlagContact 2.5s ease-in-out infinite alternate;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.15));
}

/* Fix size specifically for the contact info block */
.contact-item-icon .waving-flag-emoji {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Hover par speed taiz hogi dono jagah */
.loc-card:hover .waving-flag-emoji,
.contact-item:hover .waving-flag-emoji {
    animation: waveFlagContact 0.5s ease-in-out infinite alternate;
}

@keyframes waveFlagContact {
    0% {
        transform: rotate(-5deg) skewX(2deg);
    }

    50% {
        transform: rotate(5deg) skewX(-2deg) translateY(-1px);
    }

    100% {
        transform: rotate(-3deg) skewX(1deg);
    }
}


.loc-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 25px;
}

.loc-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* 6. Text Elements alignment (Text must be relative to stay on top of flag) */
.loc-title,
.loc-details {
    position: relative;
    z-index: 2;
    /* Text stays above flag */
}

.loc-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.loc-item .loc-icon {
    font-size: 1.1rem;
    margin-top: 1px;
}

.loc-item p {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

.loc-item a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.loc-card:hover .loc-item a {
    color: var(--accent);
}

/* The Flag Image as Watermark */
.waving-bg-flag {
    position: absolute;
    /* Aapne kaha Top Right se baahir nikle, isliye hum inhein position karenge */
    top: -10px;
    /* Card ke oopar se halka sa baahir */
    right: -30px;
    /* Card ke right side se zyada baahir */
    /* Bada size, jese aapne manga */
    font-size: 12rem;
    /* Phele 5rem tha, ab 8rem karda hai */
    line-height: 1;
    opacity: 0.92;
    /* Kam opacity taake watermark jaisa lage */
    /* Soft Edges - Border Radius applied directly to emoji font block */
    border-radius: 8px;
    /* Jhande ke edges soft honge */
    z-index: 0;
    /* Flag ko card ke text ke peechay rakhein */
    pointer-events: none;
    /* Mouse flag par click nahi karega */
    /* Waving Properties */
    transform-origin: bottom left;
    /* Jhande ka base fixed rakhne ke liye */
    animation: aggressiveWave 2.5s ease-in-out infinite alternate;
    /* Normal hawa */
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    /* Jhande ke peechay halka shadow */
}

@keyframes aggressiveWave {
    0% {
        transform: rotate(-8deg) skewX(3deg);
    }

    50% {
        transform: rotate(8deg) skewX(-3deg) translateY(-2px);
    }

    100% {
        transform: rotate(-5deg) skewX(1deg);
    }
}

/* 4. Hover par speed taiz karein (Fast air effect) */
.loc-card:hover .waving-bg-flag {
    animation: aggressiveWave 0.5s ease-in-out infinite alternate;
}

/* 5. Hover Effect for Card (preserving native glow) */
.loc-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px var(--glow);
}

/* 3D Real Wave Animation */
@keyframes realWave {
    0% {
        transform: perspective(400px) rotateY(0deg) skewY(0deg);
    }

    50% {
        transform: perspective(400px) rotateY(15deg) skewY(2deg) translateY(-2px);
    }

    100% {
        transform: perspective(400px) rotateY(-10deg) skewY(-2deg);
    }
}

/* Baqi loc-card styling (Theme values) */
.loc-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    color: var(--text);
}

.loc-item p {
    color: var(--muted);
    font-size: 0.95rem;
}

.loc-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}

/* ─── Mobile Responsiveness ─── */
@media screen and (max-width: 768px) {
    .loc-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .loc-card {
        padding: 30px 25px;
    }
}


/* ==========================================================================
   CONTACT PAGE EXCLUSIVE FORM (Centered & Large)
   ========================================================================== */

/* Wrapper ko center karna aur size set karna */
.contact-centered-layout {
    display: block;
    /* Grid khatam kar diya taake single line bane */
    width: 100%;
    max-width: 850px;
    /* Form ki chaudai yahan se bari hogi */
    margin: 0 auto;
    /* Yeh form ko screen ke bilkul center mein layega */
    background: var(--surface);
    /* Premium background box */
    padding: 40px 50px;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* In fields ko bara (Large) karna */
.contact-centered-layout input,
.contact-centered-layout select,
.contact-centered-layout textarea {
    padding: 18px 20px;
    /* Default se zyada padding */
    font-size: 1.05rem;
    /* Text size thora bara */
    border-radius: 12px;
}

.contact-centered-layout textarea {
    min-height: 160px;
    /* Textarea ki height zyada kardi */
}

/* Labels ko thora bold aur clear karna */
.contact-centered-layout label {
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .contact-centered-layout {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   MODERN ANIMATED GRADIENT TEXT
   ========================================================================== */

.modern-gradient-text {
    background: linear-gradient(to right, #3b82f6, #8b5cf6, #ec4899, #3b82f6);
    background-size: 300% 100%;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    /* Yahan maine 12s kar diya hai aur ease-in-out lagaya hai */
    animation: gradientShine 12s ease-in-out infinite;
}

@keyframes gradientShine {
    0% {
        background-position: 0% 50%;
        /* Start position */
    }

    50% {
        background-position: 100% 50%;
        /* End tak jayega aur charon colors dikhayega */
    }

    100% {
        background-position: 0% 50%;
        /* Wapas smoothly start par aayega */
    }
}

/* =========================================
   ROCKET ICON ANIMATIONS (CLEANED UP)
   ========================================= */

.rocket-icon {
    display: inline-block;
    transform-origin: center;
    transition: transform 0.3s ease;
}

/* 1. Hover Animation: Slow diagonal (cross) float */
.btn-primary:hover .rocket-icon {
    animation: rocketFloat 1.5s ease-in-out infinite;
}

/* 2. Launch Animation: JS ke zariye class add hone par chalegi */
.btn-primary.launching .rocket-icon {
    animation: rocketLaunch 1.5s ease-in forwards;
}

/* Button click hone ke baad double-click block karna */
.btn-primary.launching {
    pointer-events: none;
}

/* --- Keyframes --- */

/* Hover wala cross (diagonal) effect */
@keyframes rocketFloat {

    0%,
    100% {
        transform: translate(0px, 0px) rotate(0deg);
    }

    50% {
        transform: translate(4px, -4px) rotate(8deg);
    }
}

/* Click karne par screen se bahar diagonal urr jana (Straight Cross) */
@keyframes rocketLaunch {
    0% {
        opacity: 1;
        transform: translate(0px, 0px) scale(1) rotate(0deg);
    }

    100% {
        /* opacity: 0.2 ka matlab hai rocket 20% dikhta rahega, poora gayab nahi hoga.
       translate(200px, -200px) rocket ko seedha diagonal (cross) uper right mein le jayega. */
        /* opacity: 0.2;  */
        transform: translate(200px, -200px) scale(1.5) rotate(5deg);
    }
}
/* =========================================
   CLEAN MAGIC PURPLE BUTTON
   ========================================= */
.magic-btn {
  --white: #ffffff;
  --purple-100: #f4b1fd;
  --purple-200: #d190ff;
  --purple-300: #c389f2;
  --purple-400: #8e26e2;
  --purple-500: #5e2b83;
  --radius: 16px;

  border-radius: var(--radius);
  cursor: pointer;
  font-family: 'Syne', sans-serif;
  background: transparent;
  border: 0;
  position: relative;
  width: 280px; /* Thoda wide kiya taake arrow door rahe */
  height: 65px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Background Shadow/Glow Layer */
.magic-btn .bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--purple-500);
  /* 3D Drop Shadow Effect */
  box-shadow: 
    -4px 4px 0px 0px var(--purple-500),
    -8px 8px 15px rgba(0, 0, 0, 0.3); 
  transition: all 0.3s ease;
}

.magic-btn .wrap {
  border-radius: inherit;
  overflow: hidden;
  height: 100%;
  padding: 2px;
  /* Outer border gradient */
  background: linear-gradient(to bottom, var(--purple-100) 0%, var(--purple-400) 100%);
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.magic-btn .content {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Text aur Arrow ke beech space */
  padding: 0 25px;
  height: 100%;
  border-radius: calc(var(--radius) * 0.9);
  /* Inner Glossy Gradient */
  background: linear-gradient(to bottom, var(--purple-300) 0%, var(--purple-400) 100%);
  /* Top Inner Highlight (Gloss effect) */
  box-shadow: inset 0px 4px 8px rgba(255, 255, 255, 0.4), inset 0px -4px 8px rgba(0, 0, 0, 0.3);
}

.magic-btn .btn-text {
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* Custom Arrow Design */
.magic-btn .icon-box {
  display: flex;
  align-items: center;
  position: relative;
}

.magic-btn .icon-line {
  width: 25px;
  height: 3px;
  background: var(--white);
  position: relative;
  border-radius: 2px;
}

.magic-btn .icon-line::before,
.magic-btn .icon-line::after {
  content: "";
  position: absolute;
  right: 0;
  width: 12px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
}

.magic-btn .icon-line::before { transform: rotate(45deg); top: -4px; }
.magic-btn .icon-line::after { transform: rotate(-45deg); bottom: -4px; }

/* HOVER ANIMATIONS */
.magic-btn:hover .bg {
  transform: translate(-2px, 2px);
  box-shadow: -2px 2px 0px 0px var(--purple-500), -4px 4px 20px rgba(142, 38, 226, 0.5);
}

.magic-btn:hover .wrap {
  transform: translate(4px, -4px);
}

.magic-btn:active .wrap {
  transform: translate(1px, -1px);
}

.magic-btn:active .bg {
  transform: translate(0, 0);
  box-shadow: 0 0 0 var(--purple-500);
}







/* new */

/* =====================================================
   RESPONSIVE HEADER / MOBILE DRAWER
===================================================== */

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-btn {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--surface);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.menu-btn span {
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s ease;
}

.menu-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--accent);
}

.menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.menu-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--accent);
}

.mobile-drawer {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    padding: 30px 5%;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    display: none;
    overflow-y: auto;
}

.mobile-drawer.open {
    transform: translateX(0);
}

.drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.drawer-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

.drawer-links a span {
    color: var(--accent);
}

.drawer-cta {
    margin-top: 30px;
    display: block;
    text-align: center;
    background: var(--accent);
    color: #fff;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
}

.drawer-stats {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.drawer-stats div {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 8px;
    text-align: center;
}

.drawer-stats strong {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    color: var(--text);
}

.drawer-stats span {
    display: block;
    font-size: 0.7rem;
    color: var(--muted);
    margin-top: 4px;
}

body.drawer-open {
    overflow: hidden;
}

.desktop-copy {
    display: block;
}

.mobile-copy {
    display: none;
}

/* Mobile responsive header */
@media screen and (max-width: 900px) {
    nav,
    .site-nav {
        height: 70px;
        padding: 0 5%;
    }

    .custom-logo {
        height: 42px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .menu-btn {
        display: flex;
    }

    .mobile-drawer {
        display: block;
    }

    .theme-toggle {
        width: 42px;
        height: 42px;
    }

    .desktop-copy {
        display: none !important;
    }

    .mobile-copy {
        display: block !important;
    }
}

@media screen and (min-width: 901px) {
    .mobile-drawer {
        display: none !important;
    }

    .menu-btn {
        display: none !important;
    }
}

/* =====================================================
   SERVICE WEBDESIGN PAGE FIX V2
   Paste this at the VERY END of style.css
===================================================== */

.web-hero {
    padding: 155px 5% 90px !important;
    background:
        radial-gradient(circle at 12% 10%, rgba(59, 130, 246, 0.16), transparent 32%),
        radial-gradient(circle at 88% 20%, rgba(236, 72, 153, 0.12), transparent 34%),
        var(--bg) !important;
    border-bottom: 1px solid var(--border) !important;
    text-align: left !important;
}

.service-hero-inner {
    max-width: 1280px !important;
    margin: 0 auto !important;
}

.web-hero h1 {
    max-width: 760px !important;
    margin: 18px 0 24px !important;
    font-family: 'Syne', sans-serif !important;
    font-size: clamp(3.2rem, 7vw, 6.2rem) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.06em !important;
}

.web-hero .section-desc {
    max-width: 870px !important;
    margin: 0 0 28px !important;
    color: var(--muted) !important;
    font-size: 1.04rem !important;
    line-height: 1.8 !important;
}

.service-hero-actions {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
}

.service-main-btn,
.web-hero .service-main-btn {
    width: auto !important;
    min-width: 220px !important;
    justify-content: center !important;
    padding: 16px 30px !important;
    border-radius: 12px !important;
    box-shadow: 0 14px 35px rgba(59, 130, 246, 0.24) !important;
}

.web-section {
    padding: 95px 5% !important;
    background: var(--bg) !important;
}

.web-details-grid {
    max-width: 1220px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr) !important;
    gap: 56px !important;
    align-items: center !important;
}

.service-copy-card {
    background: linear-gradient(145deg, rgba(22, 29, 46, 0.82), rgba(13, 17, 32, 0.55)) !important;
    border: 1px solid var(--border) !important;
    border-radius: 24px !important;
    padding: 40px !important;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22) !important;
}

.service-copy-card h2,
.included-header h2,
.process-mini-header h2,
.service-section-center h2 {
    font-family: 'Syne', sans-serif !important;
    font-size: clamp(2.25rem, 4vw, 3.25rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.045em !important;
    margin-bottom: 22px !important;
}

.service-copy-card p {
    color: var(--muted) !important;
    font-size: 1rem !important;
    line-height: 1.8 !important;
    margin-bottom: 24px !important;
}

.clean-check-list {
    list-style: none !important;
    margin: 28px 0 0 !important;
    padding: 0 !important;
    display: grid !important;
    gap: 14px !important;
}

.clean-check-list li {
    position: relative !important;
    padding: 15px 16px 15px 46px !important;
    color: var(--text) !important;
    background: rgba(255, 255, 255, 0.035) !important;
    border: 1px solid var(--border) !important;
    border-radius: 14px !important;
    line-height: 1.45 !important;
    font-weight: 600 !important;
    list-style: none !important;
}

.clean-check-list li::before {
    content: '✓' !important;
    position: absolute !important;
    left: 16px !important;
    top: 14px !important;
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    background: rgba(59, 130, 246, 0.18) !important;
    color: var(--accent) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.72rem !important;
    font-weight: 800 !important;
}

.service-image-wrap {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.service-image-wrap img {
    width: 100% !important;
    max-width: 560px !important;
    height: auto !important;
    display: block !important;
    border-radius: 18px !important;
    filter: drop-shadow(0 26px 45px rgba(0, 0, 0, 0.32)) !important;
    transition: opacity 0.5s ease-in-out !important;
}

.included-section {
    background: var(--bg2) !important;
    border-top: 1px solid var(--border) !important;
}

.included-header,
.process-mini-header,
.service-section-center {
    max-width: 900px !important;
    margin: 0 auto 52px !important;
    text-align: center !important;
}

.included-header .section-desc,
.service-section-center .section-desc {
    margin-left: auto !important;
    margin-right: auto !important;
}

.included-grid {
    max-width: 1220px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 20px !important;
}

.included-card,
.process-mini-card {
    background: linear-gradient(145deg, rgba(22, 29, 46, 0.96), rgba(13, 17, 32, 0.72)) !important;
    border: 1px solid var(--border) !important;
    border-radius: 20px !important;
    padding: 28px !important;
    min-height: 205px !important;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.16) !important;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease !important;
}

.included-card:hover,
.process-mini-card:hover {
    transform: translateY(-5px) !important;
    border-color: rgba(59, 130, 246, 0.55) !important;
    box-shadow: 0 18px 60px rgba(59, 130, 246, 0.12) !important;
}

.included-icon {
    width: 48px !important;
    height: 48px !important;
    border-radius: 14px !important;
    background: rgba(59, 130, 246, 0.12) !important;
    border: 1px solid rgba(59, 130, 246, 0.22) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.45rem !important;
    margin-bottom: 18px !important;
}

.included-card h3,
.process-mini-card h3 {
    font-family: 'Syne', sans-serif !important;
    font-size: 1.18rem !important;
    margin: 0 0 10px !important;
    color: var(--text) !important;
}

.included-card p,
.process-mini-card p {
    color: var(--muted) !important;
    font-size: 0.93rem !important;
    line-height: 1.65 !important;
    margin: 0 !important;
}

.process-mini-section {
    background: var(--bg) !important;
    border-top: 1px solid var(--border) !important;
}

.process-mini-grid {
    max-width: 1220px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
}

.process-mini-card {
    min-height: 230px !important;
}

.process-mini-card span {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, var(--accent), var(--accent2)) !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: 'Syne', sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 800 !important;
    margin-bottom: 18px !important;
}

.service-portfolio {
    background: var(--bg2) !important;
    border-top: 1px solid var(--border) !important;
}

.service-portfolio-grid,
.service-portfolio .portfolio-grid {
    max-width: 1220px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
}

.service-portfolio .portfolio-item {
    border-radius: 16px !important;
    overflow: hidden !important;
    border: 1px solid var(--border) !important;
    background: var(--surface) !important;
    aspect-ratio: 16 / 10 !important;
}

.service-portfolio .portfolio-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.service-portfolio .portfolio-view-btn {
    border: none !important;
    cursor: pointer !important;
    font-family: inherit !important;
}

.service-portfolio-btn {
    display: flex !important;
    justify-content: center !important;
    margin-top: 48px !important;
}

.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    inset: 0;
    background: rgba(7, 9, 15, 0.94);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.lightbox-content {
    max-width: 92%;
    max-height: 82vh;
    object-fit: contain;
    border-radius: 12px;
}

.lightbox-close {
    position: absolute;
    top: 18px;
    right: 30px;
    color: #fff;
    font-size: 42px;
    font-weight: 300;
    cursor: pointer;
}

@media (max-width: 1100px) {
    .included-grid,
    .process-mini-grid,
    .service-portfolio-grid,
    .service-portfolio .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .web-details-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .web-hero {
        padding: 112px 18px 58px !important;
        text-align: left !important;
    }

    .web-hero h1 {
        max-width: 100% !important;
        font-size: clamp(2.2rem, 12vw, 3.05rem) !important;
        line-height: 1 !important;
    }

    .web-hero .section-desc {
        font-size: 0.94rem !important;
        line-height: 1.7 !important;
    }

    .service-main-btn,
    .web-hero .service-main-btn {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 360px !important;
    }

    .web-section {
        padding: 58px 18px !important;
    }

    .service-copy-card {
        padding: 24px !important;
        border-radius: 18px !important;
    }

    .web-details-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    .service-image-wrap {
        order: -1 !important;
    }

    .service-copy-card h2,
    .included-header h2,
    .process-mini-header h2,
    .service-section-center h2 {
        font-size: clamp(1.85rem, 8vw, 2.35rem) !important;
    }

    .included-header,
    .process-mini-header,
    .service-section-center {
        text-align: left !important;
        margin-bottom: 30px !important;
    }

    .included-grid,
    .process-mini-grid,
    .service-portfolio-grid,
    .service-portfolio .portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .included-card,
    .process-mini-card {
        min-height: auto !important;
        padding: 22px !important;
    }

    .service-portfolio .portfolio-item {
        aspect-ratio: auto !important;
    }

    .service-portfolio .portfolio-item img {
        height: auto !important;
        object-fit: contain !important;
    }

    .service-portfolio-btn {
        margin-top: 34px !important;
    }
}





/* =====================================================
   UNIVERSAL SERVICE HERO HEADING CROP FIX
   Works for webdesign, logo, ecommerce pages
===================================================== */

/* Parent containers crop na karein */
.wv-service-hero,
.lb-service-hero,
.ec-service-hero {
  overflow: hidden !important;
}

.wv-container,
.lb-container,
.ec-container {
  width: min(1280px, 94%) !important;
  overflow: visible !important;
}

.wv-hero-copy,
.lb-hero-copy,
.ec-hero-copy {
  overflow: visible !important;
  min-width: 0 !important;
  max-width: 100% !important;
  padding-right: 30px !important;
}

/* Main hero grid mein left heading ko proper space do */
.wv-hero-grid,
.lb-hero-grid,
.ec-hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 0.88fr) !important;
  gap: 70px !important;
}

/* Hero heading crop fix */
.wv-hero-copy h1,
.lb-hero-copy h1,
.ec-hero-copy h1 {
  width: 100% !important;
  max-width: 100% !important;
  overflow: visible !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  line-height: 1.08 !important;
  letter-spacing: -0.045em !important;
  padding-right: 36px !important;
  padding-bottom: 18px !important;
  margin-right: 0 !important;
}

/* Gradient text crop fix */
.wv-pink-gradient-text,
.wv-gradient-text,
.lb-brand-gradient-text,
.lb-gradient-text,
.ec-brand-gradient-text,
.ec-gradient-text {
  display: block !important;
  overflow: visible !important;
  padding-right: 28px !important;
  padding-bottom: 14px !important;
  -webkit-box-decoration-break: clone !important;
  box-decoration-break: clone !important;
}

/* Ecommerce heading thora wide hota hai, isliye slightly smaller */
.ec-hero-copy h1 {
  font-size: clamp(3rem, 4.7vw, 4.55rem) !important;
}

/* Webdesign heading */
.wv-hero-copy h1 {
  font-size: clamp(3rem, 5vw, 5rem) !important;
}

/* Logo heading */
.lb-hero-copy h1 {
  font-size: clamp(3rem, 5vw, 5rem) !important;
}

/* Mockup side controlled rakho */
.wv-mockup-shell,
.lb-brand-shell,
.ec-store-shell {
  max-width: 530px !important;
  margin-left: auto !important;
}

/* Laptop screens */
@media (max-width: 1450px) {
  .wv-hero-grid,
  .lb-hero-grid,
  .ec-hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(390px, 0.85fr) !important;
    gap: 58px !important;
  }

  .wv-hero-copy h1,
  .lb-hero-copy h1 {
    font-size: clamp(2.8rem, 4.75vw, 4.65rem) !important;
  }

  .ec-hero-copy h1 {
    font-size: clamp(2.7rem, 4.35vw, 4.25rem) !important;
  }

  .wv-mockup-shell,
  .lb-brand-shell,
  .ec-store-shell {
    max-width: 510px !important;
  }
}

/* Tablet */
@media (max-width: 1100px) {
  .wv-hero-grid,
  .lb-hero-grid,
  .ec-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 42px !important;
  }

  .wv-hero-copy,
  .lb-hero-copy,
  .ec-hero-copy {
    padding-right: 0 !important;
  }

  .wv-hero-copy h1,
  .lb-hero-copy h1,
  .ec-hero-copy h1 {
    max-width: 760px !important;
    padding-right: 0 !important;
  }
}

/* Mobile heading final fix */
@media (max-width: 768px) {
  .wv-container,
  .lb-container,
  .ec-container {
    width: calc(100% - 36px) !important;
  }

  .wv-hero-copy h1,
  .lb-hero-copy h1,
  .ec-hero-copy h1 {
    font-size: clamp(2rem, 8.7vw, 2.65rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.025em !important;
    padding-right: 0 !important;
    padding-bottom: 12px !important;
  }

  /* Ecommerce word specifically mobile par wide hota hai */
  .ec-hero-copy h1 {
    font-size: clamp(1.9rem, 8.2vw, 2.45rem) !important;
  }

  .wv-pink-gradient-text,
  .wv-gradient-text,
  .lb-brand-gradient-text,
  .lb-gradient-text,
  .ec-brand-gradient-text,
  .ec-gradient-text {
    padding-right: 0 !important;
    padding-bottom: 12px !important;
  }
}


.nav-contact-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
}

.nav-contact-links a {
  color: var(--text);
  text-decoration: none;
  opacity: 0.8;
  white-space: nowrap;
}

.nav-contact-links a:hover {
  opacity: 1;
  color: var(--accent);
}

@media (max-width: 1150px) {
  .nav-contact-links {
    display: none;
  }
}




/* =====================================================
   WEBSITES VALLEY - GLOBAL MODERN CTA BUTTON
   For: View Full Portfolio + Show More Reviews
===================================================== */

.wv-more-wrap {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 42px !important;
    position: relative !important;
    z-index: 5 !important;
}

.wv-more-btn {
    position: relative !important;
    isolation: isolate !important;
    min-height: 58px !important;
    padding: 16px 30px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    overflow: hidden !important;

    font-family: 'Syne', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.01em !important;
    line-height: 1 !important;
    text-decoration: none !important;
    color: #fff !important;

    background: linear-gradient(135deg, var(--accent), var(--accent2), var(--purple)) !important;
    background-size: 220% 220% !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;

    box-shadow:
        0 14px 36px rgba(0, 0, 0, 0.32),
        0 0 30px rgba(59, 130, 246, 0.28) !important;

    animation: wvBtnGradient 5s ease infinite, wvBtnFloat 4s ease-in-out infinite !important;
    transition:
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        filter 0.35s ease !important;
}

.wv-more-btn::before {
    content: '' !important;
    position: absolute !important;
    inset: -2px !important;
    border-radius: inherit !important;
    background: linear-gradient(135deg, var(--accent), var(--accent2), var(--purple)) !important;
    filter: blur(16px) !important;
    opacity: 0.42 !important;
    z-index: -2 !important;
}

.wv-more-btn::after {
    content: '' !important;
    position: absolute !important;
    top: -45% !important;
    left: -90% !important;
    width: 55% !important;
    height: 190% !important;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.42),
        transparent
    ) !important;
    transform: skewX(-18deg) !important;
    transition: left 0.75s ease !important;
    z-index: -1 !important;
}

.wv-more-btn__text {
    position: relative !important;
    z-index: 2 !important;
    white-space: nowrap !important;
    color: #fff !important;
    text-decoration: none !important;
}

.wv-more-btn__icon {
    position: relative !important;
    z-index: 2 !important;
    width: 31px !important;
    height: 31px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: rgba(255, 255, 255, 0.16) !important;
    border: 1px solid rgba(255, 255, 255, 0.24) !important;
    color: #fff !important;
    font-size: 1rem !important;
    font-weight: 900 !important;

    transition:
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.35s ease,
        border-color 0.35s ease !important;
}

.wv-more-btn:hover {
    transform: translateY(-5px) scale(1.025) !important;
    border-color: rgba(255, 255, 255, 0.36) !important;
    filter: saturate(1.14) !important;
    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.42),
        0 0 45px rgba(59, 130, 246, 0.45),
        0 0 70px rgba(6, 182, 212, 0.22) !important;
}

.wv-more-btn:hover::after {
    left: 135% !important;
}

.wv-more-btn:hover .wv-more-btn__icon {
    transform: translateX(5px) rotate(-8deg) !important;
    background: rgba(255, 255, 255, 0.24) !important;
    border-color: rgba(255, 255, 255, 0.42) !important;
}

.wv-more-btn:active {
    transform: translateY(-1px) scale(0.98) !important;
}

@keyframes wvBtnGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes wvBtnFloat {
    0%, 100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -4px;
    }
}

/* Mobile */
@media screen and (max-width: 900px) {
    .wv-more-wrap {
        margin-top: 30px !important;
        padding: 0 4px !important;
    }

    .wv-more-btn {
        width: 100% !important;
        max-width: 360px !important;
        min-height: 54px !important;
        padding: 15px 22px !important;
        font-size: 0.9rem !important;
    }

    .wv-more-btn__icon {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.95rem !important;
    }
}

@media screen and (max-width: 420px) {
    .wv-more-wrap {
        margin-top: 26px !important;
    }

    .wv-more-btn {
        max-width: 100% !important;
        border-radius: 16px !important;
        padding: 15px 18px !important;
        gap: 10px !important;
    }

    .wv-more-btn__text {
        white-space: normal !important;
        text-align: center !important;
    }
}

/* =====================================================
   FIX NAVBAR ALWAYS DARK - EVEN IN LIGHT MODE
===================================================== */

nav.site-nav,
.site-nav,
html.light nav.site-nav,
html.light .site-nav {
    background: rgba(7, 9, 15, 0.92) !important;
    border-bottom: 1px solid rgba(59, 130, 246, 0.15) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: none !important;
}

/* Scrolled navbar bhi dark rahe */
nav.site-nav.nav-scrolled,
.site-nav.nav-scrolled,
html.light nav.site-nav.nav-scrolled,
html.light .site-nav.nav-scrolled {
    background: rgba(7, 9, 15, 0.96) !important;
    border-bottom: 1px solid rgba(59, 130, 246, 0.12) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45) !important;
}

/* Navbar links always dark theme colors */
.site-nav .nav-links a,
html.light .site-nav .nav-links a,
.site-nav .nav-contact-links a,
html.light .site-nav .nav-contact-links a {
    color: #8b96b0 !important;
}

.site-nav .nav-links a:hover,
html.light .site-nav .nav-links a:hover,
.site-nav .nav-contact-links a:hover,
html.light .site-nav .nav-contact-links a:hover {
    color: #f0f4ff !important;
}

.site-nav .nav-links a::after,
html.light .site-nav .nav-links a::after {
    background: #3b82f6 !important;
}

/* Theme toggle button dark navbar ke hisaab se */
.site-nav .theme-toggle,
html.light .site-nav .theme-toggle {
    background: #161d2e !important;
    color: #f0f4ff !important;
    border: 1px solid rgba(59, 130, 246, 0.22) !important;
}

.site-nav .theme-toggle:hover,
html.light .site-nav .theme-toggle:hover {
    background: rgba(59, 130, 246, 0.14) !important;
    border-color: #3b82f6 !important;
}

/* Mobile menu button bhi dark rahe */
.site-nav .menu-btn,
html.light .site-nav .menu-btn {
    background: #161d2e !important;
    border: 1px solid rgba(59, 130, 246, 0.22) !important;
}

.site-nav .menu-btn span,
html.light .site-nav .menu-btn span {
    background: #f0f4ff !important;
}

.site-nav .menu-btn.open span:nth-child(1),
.site-nav .menu-btn.open span:nth-child(3),
html.light .site-nav .menu-btn.open span:nth-child(1),
html.light .site-nav .menu-btn.open span:nth-child(3) {
    background: #3b82f6 !important;
}

/* Mobile drawer bhi navbar ki tarah dark fixed rahe */
.mobile-drawer,
html.light .mobile-drawer {
    background: rgba(7, 9, 15, 0.96) !important;
    border-top: 1px solid rgba(59, 130, 246, 0.15) !important;
}

.mobile-drawer .drawer-links a,
html.light .mobile-drawer .drawer-links a {
    color: #f0f4ff !important;
    border-bottom: 1px solid rgba(59, 130, 246, 0.15) !important;
}

.mobile-drawer .drawer-links a span,
html.light .mobile-drawer .drawer-links a span {
    color: #3b82f6 !important;
}

.mobile-drawer .drawer-stats div,
html.light .mobile-drawer .drawer-stats div {
    background: #161d2e !important;
    border: 1px solid rgba(59, 130, 246, 0.15) !important;
}

.mobile-drawer .drawer-stats strong,
html.light .mobile-drawer .drawer-stats strong {
    color: #f0f4ff !important;
}

.mobile-drawer .drawer-stats span,
html.light .mobile-drawer .drawer-stats span {
    color: #8b96b0 !important;
}


/* =====================================================
   FOOTER LOGO DARK OVAL BACKGROUND - SIZE CONTROL
===================================================== */

:root {
    --footer-logo-size-desktop: 72px;   /* Desktop logo size yahan se change karo */
    --footer-logo-size-tablet: 64px;    /* Tablet/mobile logo size */
    --footer-logo-size-mobile: 58px;    /* Small mobile logo size */

    --footer-logo-pad-y: 12px;
    --footer-logo-pad-x: 24px;
}

.modern-footer .footer-logo-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    /* padding: var(--footer-logo-pad-y) var(--footer-logo-pad-x) !important; */
    /* margin-bottom: 22px !important; */
    border-radius: 999px !important;

    background: linear-gradient(135deg, #07090f, #111827) !important;
    border: 1px solid rgba(59, 130, 246, 0.24) !important;

    box-shadow:
        0 16px 38px rgba(0, 0, 0, 0.18),
        0 0 28px rgba(59, 130, 246, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;

    text-decoration: none !important;
    line-height: 1 !important;
    width: fit-content !important;
    max-width: none !important;
    transition: all 0.3s ease !important;
}

.modern-footer .footer-logo-link:hover {
    transform: translateY(-2px) scale(1.02) !important;
    border-color: rgba(59, 130, 246, 0.42) !important;
    box-shadow:
        0 20px 46px rgba(0, 0, 0, 0.24),
        0 0 38px rgba(59, 130, 246, 0.26) !important;
}

.modern-footer .footer-logo-link img.custom-logo,
.modern-footer .footer-logo-link .custom-logo {
    height: var(--footer-logo-size-desktop) !important;
    width: auto !important;
    max-width: none !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 !important;
}

/* Light theme mein bhi dark oval same rahe */
html.light .modern-footer .footer-logo-link {
    background: linear-gradient(135deg, #07090f, #111827) !important;
    border-color: rgba(59, 130, 246, 0.26) !important;
}

/* Tablet / Mobile */
@media screen and (max-width: 900px) {
    .modern-footer .footer-logo-link {
        padding: 10px 20px !important;
        margin-bottom: 20px !important;
    }

    .modern-footer .footer-logo-link img.custom-logo,
    .modern-footer .footer-logo-link .custom-logo {
        height: var(--footer-logo-size-tablet) !important;
    }
}

/* Small Mobile */
@media screen and (max-width: 420px) {
    .modern-footer .footer-logo-link {
        padding: 9px 18px !important;
    }

    .modern-footer .footer-logo-link img.custom-logo,
    .modern-footer .footer-logo-link .custom-logo {
        height: var(--footer-logo-size-mobile) !important;
    }
}

/* ─── Reduce space between CTA note and Contact section ─── */

.cta-section {
    padding-bottom: 35px !important;
}

.cta-section .urgency-note {
    margin-bottom: 0 !important;
}

.contact,
.contact-section,
#contact {
    padding-top: 45px !important;
    margin-top: 0 !important;
}

/* Mobile spacing fix */
@media (max-width: 768px) {
    .cta-section {
        padding-bottom: 25px !important;
    }

    .contact,
    .contact-section,
    #contact {
        padding-top: 35px !important;
    }
}

/* ─── CTA bottom full spacing fix ─── */

.cta-section {
    padding-top: 85px !important;
    padding-bottom: 160px !important;
}

.cta-section .urgency-note {
    margin-bottom: 0 !important;
}

/* Contact section ko normal start rakho */
#contact,
.contact,
.contact-section {
    padding-top: 80px !important;
}

@media (max-width: 768px) {
    .cta-section {
        padding-top: 35px !important;
        padding-bottom: 150px !important;
    }

    #contact,
    .contact,
    .contact-section {
        padding-top: 70px !important;
    }
}

/* ─── Reduce space between Reviews and Portfolio ─── */

#reviews,
.testimonials {
    padding-bottom: 25px !important;
    margin-bottom: 0 !important;
}

#reviews .reviews-more-wrap {
    margin-top: 54px !important;
    margin-bottom: 0 !important;
}

/* #portfolio,
.portfolio {
    padding-top: 25px !important;
    margin-top: 70px !important;
} */

#portfolio .portfolio-header {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Mobile spacing fix */
@media (max-width: 768px) {
    #reviews,
    .testimonials {
        padding-bottom: 25px !important;
    }

    #reviews .reviews-more-wrap {
        margin-top: 20px !important;
        margin-bottom: 0 !important;
    }

    /* #portfolio,
    .portfolio {
        padding-top: 15px !important;
    } */
}

/* =====================================================
   READY FINAL FIX: TRUST BAR + PROCESS HEADING
   Paste-safe: desktop stays original, mobile becomes clean.
===================================================== */

/* Desktop trust bar keeps original scrolling star look */
.trust-mobile-icon {
    display: none !important;
}

.trust-desktop-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    color: inherit !important;
}

.trust-text {
    display: inline-block !important;
}

.trust-badge svg {
    color: var(--gold) !important;
    flex-shrink: 0 !important;
}

/* Mobile trust bar: fixed 2-column layout, green ticks only */
@media screen and (max-width: 768px) {
    .trust-bar {
        width: 100% !important;
        display: block !important;
        padding: 16px 18px !important;
        overflow: hidden !important;
        white-space: normal !important;
        background: var(--surface) !important;
    }

    html.light .trust-bar {
        background: #e2e6f2 !important;
    }

    .trust-bar::before,
    .trust-bar::after {
        content: none !important;
        display: none !important;
    }

    .trust-bar .trust-track {
        width: 100% !important;
        /* display: grid !important; */
        grid-template-columns: 1fr 1fr !important;
        align-items: start !important;
        gap: 12px 14px !important;
        padding: 0 !important;
        margin: 0 !important;
        animation: none !important;
        transform: none !important;
    }

    .trust-bar .trust-track[aria-hidden="true"] {
        display: none !important;
    }

    .trust-badge {
        display: flex !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 7px !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        color: var(--muted) !important;
        font-size: 10.5px !important;
        font-weight: 600 !important;
        line-height: 1.18 !important;
        white-space: normal !important;
        visibility: visible !important;
    }

    .trust-badge::before,
    .trust-badge::after {
        content: none !important;
        display: none !important;
        visibility: hidden !important;
    }

    .trust-desktop-icon {
        display: none !important;
    }

    .trust-mobile-icon {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 13px !important;
        min-width: 13px !important;
        height: 13px !important;
        margin-top: 0px !important;
        color: #10b981 !important;
        font-size: 13px !important;
        font-weight: 900 !important;
        line-height: 1 !important;
    }

    .trust-text {
        display: block !important;
        min-width: 0 !important;
        max-width: 100% !important;
        color: var(--muted) !important;
        font-size: 10.5px !important;
        font-weight: 600 !important;
        line-height: 1.18 !important;
        text-align: left !important;
        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
    }
}

/* Process heading: centered on desktop and mobile */
.process {
    text-align: center !important;
}

.process-head {
    width: 100% !important;
    max-width: 960px !important;
    margin: 0 auto !important;
    padding: 0 16px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.process-head .section-label {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.process-main-heading {
    width: 100% !important;
    max-width: 920px !important;
    margin: 0 auto 22px auto !important;
    text-align: center !important;
    line-height: 0.98 !important;
    letter-spacing: -0.045em !important;
}

.process-main-heading .process-word {
    display: inline !important;
}

.process-main-heading .process-last-word {
    display: block !important;
}

.process-head .section-desc {
    max-width: 620px !important;
    margin: 0 auto !important;
    text-align: center !important;
}

@media screen and (max-width: 768px) {
    section.process,
    .process {
        padding-top: 30px !important;
        padding-bottom: 70px !important;
        overflow: hidden !important;
        text-align: center !important;
    }

    .process-head {
        max-width: 100% !important;
        padding: 0 18px !important;
        margin: 0 auto !important;
        text-align: center !important;
        align-items: center !important;
    }

    .process-main-heading {
        width: 100% !important;
        max-width: 330px !important;
        margin: 0 auto 22px auto !important;
        font-size: clamp(2rem, 8.2vw, 2.35rem) !important;
        line-height: 0.98 !important;
        letter-spacing: -0.04em !important;
        text-align: center !important;
        overflow: visible !important;
        word-break: normal !important;
    }

    .process-main-heading .process-word,
    .process-main-heading .process-last-word {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        white-space: normal !important;
    }

    .process-head .section-desc {
        max-width: 330px !important;
        margin: 0 auto !important;
        text-align: center !important;
        line-height: 1.7 !important;
    }

    .process-steps {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        margin-top: 58px !important;
        width: 100% !important;
    }

    .process-steps::before {
        content: none !important;
        display: none !important;
    }

    .process-step {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 24px 18px !important;
        margin: 0 auto !important;
        width: 100% !important;
        max-width: 360px !important;
        border-bottom: 1px solid rgba(59, 130, 246, 0.22) !important;
    }

    .process-step:last-child {
        border-bottom: none !important;
    }

    .step-num {
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        min-height: 48px !important;
        margin: 0 auto 22px auto !important;
        position: static !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        align-self: center !important;
        border-radius: 50% !important;
        font-size: 1rem !important;
        line-height: 1 !important;
        text-align: center !important;
    }

    .step-title {
        display: block !important;
        text-align: center !important;
        margin: 0 auto 14px auto !important;
        font-size: 1.2rem !important;
        line-height: 1.25 !important;
        width: 100% !important;
    }

    .step-desc {
        display: block !important;
        text-align: center !important;
        margin: 0 auto !important;
        max-width: 320px !important;
        font-size: 0.88rem !important;
        line-height: 1.65 !important;
    }
}




/* Remove extra spacing above Contact section */
.cta-section {
  padding-bottom: 75px !important;
  margin-bottom: 0 !important;
}

#contact,
.contact,
.contact-section {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.contact-header {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.contact-header .section-label {
  margin-top: 0 !important;
}


/* Mobile spacing fix */
@media (max-width: 768px) {
  .cta-section {
    padding-top: 35px !important;
    padding-bottom: 18px !important;
    margin-bottom: 0 !important;
  }

  #contact,
  .contact,
  .contact-section {
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .contact-header {
    padding-top: 10px !important;
    margin-top: 30px !important;
  }
}


/* Extra small mobile fix */
@media (max-width: 420px) {
  .cta-section {
    padding-top: 30px !important;
    padding-bottom: 12px !important;
  }

  #contact,
  .contact,
  .contact-section {
    padding-top: 0 !important;
  }
}



/* =====================================================
   ANNOUNCEMENT BAR + HEADER PROPER STACK FIX
   Quote line first, then full header below
===================================================== */

.wv-top-announcement {
  position: sticky !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 34px !important;
  min-height: 34px !important;
  z-index: 100000 !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  background: linear-gradient(90deg, #0f172a, #111827, #0f172a) !important;
  border-bottom: 1px solid rgba(59, 130, 246, 0.35) !important;
}

/* Header ko announcement ke neeche rakho */
.site-nav,
nav.site-nav,
#siteNav {
  position: sticky !important;
  top: 34px !important;
  z-index: 99999 !important;
  width: 100% !important;
  margin-top: 0 !important;
}

/* Announcement text smooth scrolling */
.wv-announcement-track {
  display: flex !important;
  align-items: center !important;
  gap: 60px !important;
  width: max-content !important;
  white-space: nowrap !important;
  animation: wvAnnouncementMove 28s linear infinite !important;
}

.wv-announcement-track span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: #ffffff !important;
  font-size: 0.86rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
}

.wv-announcement-track span::before {
  content: "✨" !important;
}

@keyframes wvAnnouncementMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Mobile fix */
@media screen and (max-width: 768px) {
  .wv-top-announcement {
    height: 32px !important;
    min-height: 32px !important;
  }

  .site-nav,
  nav.site-nav,
  #siteNav {
    top: 32px !important;
  }

  .wv-announcement-track {
    gap: 42px !important;
    animation-duration: 20s !important;
  }

  .wv-announcement-track span {
    font-size: 0.72rem !important;
  }
}


