/* ============================================================
   WORDPRESS DEVELOPER IN SHAHDARA – SEPARATED PRESENTATION STYLES
   ============================================================ */

/* Typography & Scroll behavior defaults */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: #F8FAFC;
    color: #0F172A;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
}

/* Custom visual lines */
.teal-line {
    width: 48px;
    height: 2px;
    background: #1BBC9B;
}

/* Subtle Hero Grid Lines overlay */
.hero-grid {
    background-image:
        linear-gradient(rgba(255, 255, 255, .015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .015) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Gradient helpers for buttons & text highlighting */
.teal-gradient {
    background: linear-gradient(
        135deg,
        #1BBC9B 0%,
        #14b8a6 50%,
        #0d9488 100%
    );
}

.text-teal-gradient {
    background: linear-gradient(
        90deg,
        #1BBC9B,
        #14b8a6
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Visual Card Zoom & Symmetrical Hover states */
.project-card img {
    transition: transform .7s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover img {
    transform: scale(1.045);
}

.project-card {
    transition: transform .35s ease, box-shadow .35s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(9, 13, 22, .12);
}

.service-card {
    transition: all .35s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(27, 188, 155, .55);
}

/* Portrait asymmetrical borders */
.portrait-wrap {
    position: relative;
}

.portrait-wrap:before {
    content: "";
    position: absolute;
    width: 80%;
    height: 80%;
    right: -30px;
    bottom: -30px;
    border: 1px solid rgba(27, 188, 155, .35);
    z-index: 0;
}

.portrait-wrap:after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    left: -45px;
    top: 45px;
    border: 1px solid rgba(27, 188, 155, .25);
    border-radius: 50%;
}

/* Accordion max-height transitions */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-icon {
    transition: transform .3s ease;
}

/* Classic noise overlay */
.noise {
    position: relative;
}

.noise:after {
    content: "";
    pointer-events: none;
    position: absolute;
    inset: 0;
    opacity: .035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

/* Infinite looping marquee rules */
@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

/* Process background overlay with fixed parallax behavior */
.wp-process-bg {
    background-image: linear-gradient(to bottom, rgba(9, 13, 22, 0.96), rgba(9, 13, 22, 0.94)), url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Global Mobile adjustments */
@media(max-width: 767px) {
    .portrait-wrap:before,
    .portrait-wrap:after {
        display: none;
    }
}






/* Google Handwritten Font Import for Scribbles */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&display=swap');

.hero-delhi-section {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Primary Mint Green Button */
.btn-hero-mint {
    background-color: #00d293;
    color: #070a0f;
    font-weight: 800;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0, 210, 147, 0.3);
    transition: all 0.3s ease;
}

.btn-hero-mint:hover {
    background-color: #00b880;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 210, 147, 0.45);
}

/* Secondary White Outline Button */
.btn-hero-outline {
    background-color: #ffffff;
    color: #0b132b;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    border: 1.5px solid #cbd5e1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background-color: #f8fafc;
    border-color: #0b132b;
}

/* Handwritten Scribble Styling */
.scribble-text {
    font-family: 'Caveat', cursive, sans-serif;
    font-size: 22px;
    line-height: 1.1;
    color: #0b132b;
    position: absolute;
    z-index: 25;
    pointer-events: none;
}

.scribble-left {
    top: -20px;
    left: -40px;
    transform: rotate(-8deg);
}

.scribble-underline {
    width: 60px;
    height: 3px;
    background-color: #00d293;
    margin-top: 4px;
    border-radius: 2px;
}

.scribble-right {
    top: -25px;
    right: 20px;
    transform: rotate(6deg);
    color: #0b132b;
}

.scribble-plant {
    bottom: -10px;
    right: -20px;
    font-size: 18px;
    color: #334155;
    transform: rotate(4deg);
}

/* Floating Page Speed 98 Score Card */
.floating-speed-card {
    position: absolute;
    left: -35px;
    bottom: 30px;
    z-index: 30;
    width: 170px;
    text-align: center;
}

.speed-title {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    display: block;
    margin-bottom: 8px;
}

.speed-circle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 5px solid #00d293;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    box-shadow: 0 0 15px rgba(0, 210, 147, 0.25);
}

.speed-number {
    font-size: 20px;
    font-weight: 900;
    color: #0f172a;
}

.speed-subtitle {
    font-size: 10px;
    font-weight: 700;
    color: #64748b;
    display: block;
    margin-bottom: 10px;
}

.speed-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    color: #334155;
}

.speed-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.speed-list li i {
    color: #00d293;
    font-size: 10px;
}

@media (max-width: 768px) {
    .scribble-text { display: none; }
    .floating-speed-card { left: 10px; bottom: 10px; }
}














  @import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');

    body, p, span, a, li, button, input, select, textarea {
        font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    }
    h1, h2, h3, h4, h5, h6 {
        font-family: 'Manrope', 'Poppins', sans-serif !important;
    }

    @keyframes marqueeScroll {
        0% { transform: translateX(0%); }
        100% { transform: translateX(-50%); }
    }
    .animate-marquee {
        display: flex !important;
        width: max-content !important;
        animation: marqueeScroll 25s linear infinite !important;
    }
    .animate-marquee:hover {
        animation-play-state: paused !important;
    }


    @import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&family=DM+Sans:wght@400;500;700;800&family=Manrope:wght@700;800;900&display=swap');

    .hero-premium-container {
        max-width: 1280px !important;
        margin: 0 auto !important;
        padding: 0 24px !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }

    @media (min-width: 1024px) {
        .hero-premium-container {
            grid-template-columns: 1.05fr 0.95fr !important;
            gap: 60px !important;
        }
    }

    /* SOLID MINT GREEN PRIMARY BUTTON */
    .btn-mint-solid {
        background: #00d293 !important;
        color: #070a0f !important;
        font-family: 'DM Sans', sans-serif !important;
        font-weight: 800 !important;
        font-size: 15px !important;
        padding: 14px 28px !important;
        border-radius: 50px !important;
        text-decoration: none !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 10px !important;
        border: none !important;
        box-shadow: 0 10px 30px rgba(0, 210, 147, 0.4) !important;
        transition: all 0.3s ease !important;
    }

    .btn-mint-solid:hover {
        background: #00b880 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 15px 35px rgba(0, 210, 147, 0.55) !important;
    }

    /* SECONDARY OUTLINE BUTTON */
    .btn-outline-dark {
        background: #ffffff !important;
        color: #0b132b !important;
        font-family: 'DM Sans', sans-serif !important;
        font-weight: 700 !important;
        font-size: 15px !important;
        padding: 14px 28px !important;
        border-radius: 50px !important;
        text-decoration: none !important;
        border: 1.5px solid #cbd5e1 !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 8px !important;
        transition: all 0.3s ease !important;
    }



         @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Caveat:wght@600;700&display=swap');

        .premium-services-section {
            font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
            background-color: #ffffff;
            padding: 70px 20px 80px;
            color: #0f172a;
            position: relative;
            overflow: hidden;
            box-sizing: border-box;
        }

        .premium-services-section * {
            box-sizing: border-box;
        }

        .section-wrapper {
            max-width: 1240px;
            margin: 0 auto;
            position: relative;
        }

        /* Dot Pattern in Top-Right */
        .dot-pattern {
            position: absolute;
            top: 10px;
            right: 0;
            width: 140px;
            height: 140px;
            background-image: radial-gradient(#99f6e4 2px, transparent 2px);
            background-size: 14px 14px;
            opacity: 0.75;
            pointer-events: none;
            z-index: 1;
        }

        /* Header Layout */
        .header-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
            align-items: center;
            margin-bottom: 55px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        @media (min-width: 1024px) {
            .header-grid {
                grid-template-columns: 1.15fr 0.7fr 1.15fr;
                text-align: left;
            }
        }

        /* Badge */
        .badge-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px;
        }
        .badge-tag span {
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2.5px;
            color: #475569;
            text-transform: uppercase;
        }
        .badge-tag .line {
            width: 42px;
            height: 2.5px;
            background-color: #00d2aa;
            border-radius: 99px;
        }

        /* Title */
        .main-heading {
            font-size: clamp(32px, 3.6vw, 48px);
            font-weight: 800;
            line-height: 1.15;
            color: #0b132b;
            margin: 0 0 16px 0;
            letter-spacing: -0.8px;
        }
        .main-heading .teal-text {
            color: #00d2aa;
        }

        .sub-desc {
            color: #475569;
            font-size: 15px;
            line-height: 1.6;
            margin: 0;
        }

        /* Handwritten Center Banner */
        .doodle-col {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .handwritten-banner {
            font-family: 'Caveat', cursive;
            font-size: 26px;
            font-weight: 700;
            color: #0f172a;
            line-height: 1.15;
            text-align: center;
            transform: rotate(-6deg);
            white-space: nowrap;
        }
        .handwritten-banner svg {
            margin-top: 4px;
            color: #00d2aa;
        }

        /* Right CTA Col */
        .right-col {
            display: flex;
            flex-direction: column;
            gap: 18px;
            align-items: center;
        }
        @media (min-width: 1024px) {
            .right-col {
                align-items: flex-start;
            }
        }
        .right-col p {
            color: #475569;
            font-size: 14px;
            line-height: 1.6;
            margin: 0;
        }

        .view-all-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            border: 1.5px solid #0f172a;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 700;
            color: #0f172a;
            background: transparent;
            text-decoration: none;
            transition: all 0.2s ease;
        }
        .view-all-btn:hover {
            background-color: #0f172a;
            color: #ffffff;
        }

        /* 3x2 Grid: 3 cards in row 1, 3 cards in row 2 */
        .services-cards-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            margin-bottom: 55px;
            align-items: stretch;
        }
        @media (min-width: 640px) {
            .services-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 1024px) {
            .services-cards-grid {
                grid-template-columns: repeat(3, 1fr); /* Exactly 3 cards per row */
            }
        }

        /* Individual Card Structure */
        .pro-card {
            background: #ffffff;
            border: 1.5px solid #edf1f5;
            border-radius: 20px;
            padding: 34px 26px 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            justify-content: space-between;
            height: 100%;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .pro-card:hover {
            border-color: #bbf0e7;
            transform: translateY(-5px);
            box-shadow: 0 20px 35px -10px rgba(0, 210, 170, 0.12);
        }

        .pro-card-body {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            flex-grow: 1;
        }

        /* Centered Icon Container */
        .icon-box {
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .icon-box img {
            width: 54px;
            height: 54px;
            object-fit: contain;
            display: block;
        }

        /* Title: Locked height ensures identical baseline across all cards */
        .pro-card h3 {
            font-size: 18px;
            font-weight: 800;
            color: #0b132b;
            margin: 0 0 14px 0;
            line-height: 1.35;
            min-height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            width: 100%;
        }

        /* Description: Top-anchored with comfortable line-height */
        .pro-card p {
            font-size: 13.5px;
            color: #64748b;
            line-height: 1.65;
            margin: 0 0 28px 0;
            flex-grow: 1;
            text-align: center;
            display: flex;
            align-items: flex-start;
        }

        /* Contact Now Pill Button */
        .contact-pill-btn {
            width: 100%;
            background-color: #eaf8f5;
            border-radius: 9999px;
            padding: 8px 10px 8px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            text-decoration: none;
            color: #0b132b;
            font-size: 13.5px;
            font-weight: 700;
            transition: all 0.25s ease;
            margin-top: auto;
        }
        .contact-pill-btn:hover {
            background-color: #d7f4ee;
        }

        .teal-arrow-circle {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background-color: #00d2aa;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            transition: transform 0.25s ease;
            flex-shrink: 0;
        }
        .contact-pill-btn:hover .teal-arrow-circle {
            transform: translateX(3px);
        }

        /* Bottom Stats Bar */
        .stats-banner {
            background-color: #ebf9f6;
            border: 1px solid #d3f3ec;
            border-radius: 20px;
            padding: 30px 40px;
            position: relative;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 28px;
            align-items: center;
        }
        @media (min-width: 640px) {
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (min-width: 1024px) {
            .stats-grid { grid-template-columns: repeat(4, 1fr) auto; }
        }

        .stat-card {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }

        .stat-circle-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #bbf0e7;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #00745e;
            flex-shrink: 0;
        }

        .stat-text {
            text-align: left;
        }

        .stat-val {
            font-size: 24px;
            font-weight: 800;
            color: #0b132b;
            line-height: 1.1;
        }

        .stat-title {
            font-size: 13px;
            font-weight: 500;
            color: #475569;
            margin-top: 3px;
        }

        .footer-doodle {
            font-family: 'Caveat', cursive;
            color: #0f172a;
            font-size: 22px;
            font-weight: 700;
            text-align: center;
            transform: rotate(-3deg);
            white-space: nowrap;
        }
        .footer-doodle svg {
            color: #00d2aa;
            display: block;
            margin: -2px auto 0;
        }











          @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Caveat:wght@700&display=swap');

        /* Dark background wrapper */
        .process-clean-dark {
            font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif !important;
            background-color: #0b1329 !important; /* Forced dark theme */
            padding: 80px 20px 90px !important;
            color: #ffffff !important;
            position: relative;
            box-sizing: border-box;
            width: 100%;
        }

        .process-clean-dark * {
            box-sizing: border-box;
        }

        .pcd-container {
            max-width: 1440px;
            margin: 0 auto;
        }

        /* Header Styles */
        .pcd-header {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 55px;
            position: relative;
        }

        .pcd-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }
        .pcd-tag span {
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 2px;
            color: #00d2aa;
            text-transform: uppercase;
        }
        .pcd-tag-line {
            width: 32px;
            height: 2px;
            background-color: #00d2aa;
        }

        .pcd-title {
            font-size: clamp(32px, 3.8vw, 48px);
            font-weight: 800;
            color: #ffffff !important;
            margin: 0 0 14px 0;
            line-height: 1.15;
            letter-spacing: -0.8px;
        }
        .pcd-title .teal-word {
            color: #00d2aa;
        }

        .pcd-subtitle {
            font-size: 15px;
            color: #94a3b8;
            line-height: 1.6;
            margin: 0;
        }

        /* Top Right Handwritten Note */
        .pcd-stamp {
            font-family: 'Caveat', cursive;
            position: absolute;
            right: -60px;
            top: -15px;
            transform: rotate(8deg);
            color: #f1f5f9;
            font-size: 22px;
            font-weight: 700;
            line-height: 1.1;
            text-align: left;
            display: none;
        }
        @media (min-width: 1200px) {
            .pcd-stamp { display: block; }
        }
        .pcd-brush {
            width: 85px;
            height: 3px;
            background-color: #00d2aa;
            border-radius: 99px;
            margin-top: 4px;
        }

        /* 5-Card Row with Step Connectors (Grid locked) */
        .pcd-steps-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;
            margin-bottom: 35px;
            align-items: center;
        }

        @media (min-width: 640px) {
            .pcd-steps-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .pcd-steps-grid {
                /* 5 cards + 4 connectors in 1 exact row */
                grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
                gap: 10px;
            }
        }

        /* Pure White Card */
        .pcd-card {
            background: #ffffff !important;
            border-radius: 20px;
            padding: 34px 20px 28px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
            min-height: 250px;
        }

        /* Step Number Badge */
        .pcd-step-badge {
            position: absolute;
            top: 18px;
            left: 18px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 800;
            color: #ffffff;
        }

        /* Colored Icon Circles (from original design) */
        .pcd-icon-circle {
            width: 62px;
            height: 62px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            margin-top: 6px;
        }

        .pcd-card h3 {
            font-size: 17px;
            font-weight: 800;
            color: #0b1329 !important;
            margin: 0 0 10px 0;
            line-height: 1.3;
        }

        .pcd-card p {
            font-size: 12.5px;
            color: #64748b !important;
            line-height: 1.55;
            margin: 0;
        }

        /* Connectors (Dotted arrows between steps) */
        .pcd-connector {
            display: none;
            align-items: center;
            justify-content: center;
            gap: 4px;
        }
        @media (min-width: 1024px) {
            .pcd-connector { display: flex; }
        }

        .pcd-dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background-color: #334155;
        }

        .pcd-arrow-circle {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background-color: #1e293b;
            color: #00d2aa;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Bottom Timeline Banner */
        .pcd-bottom-banner {
            background-color: #111c38 !important;
            border: 1px solid #1e2d52;
            border-radius: 18px;
            padding: 20px 32px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            align-items: center;
            justify-content: space-between;
        }

        @media (min-width: 900px) {
            .pcd-bottom-banner {
                flex-direction: row;
                padding: 20px 45px;
            }
        }

        .pcd-timeline-item {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .pcd-timeline-icon {
            width: 46px;
            height: 46px;
            border-radius: 12px;
            background-color: rgba(0, 210, 170, 0.12);
            color: #00d2aa;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .pcd-timeline-text h4 {
            font-size: 18px;
            font-weight: 800;
            color: #ffffff !important;
            margin: 0 0 2px 0;
        }

        .pcd-timeline-text p {
            font-size: 13px;
            color: #94a3b8 !important;
            margin: 0;
        }

        .pcd-ontime-stamp {
            font-family: 'Caveat', cursive;
            color: #f1f5f9;
            font-size: 24px;
            font-weight: 700;
            line-height: 1.1;
            text-align: center;
            transform: rotate(-3deg);
            white-space: nowrap;
        }
        .pcd-ontime-brush {
            width: 80px;
            height: 3px;
            background-color: #00d2aa;
            border-radius: 99px;
            margin: 2px auto 0;
        }









          @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

        .tp-pricing-section {
            font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
            background-color: #ffffff;
            padding: 85px 24px 95px;
            color: #0f172a;
            position: relative;
            overflow: hidden;
            box-sizing: border-box;
            width: 100%;
        }

        .tp-pricing-section * {
            box-sizing: border-box;
        }

        /* 1. ULTRA-MINIMAL, SOFT TOP-LEFT TEAL GLOW ACCENT */
        .texture-geometric-left {
            position: absolute;
            top: -50px;
            left: -50px;
            width: 420px;
            height: 420px;
            pointer-events: none;
            z-index: 1;
            opacity: 0.45;
            filter: blur(20px);
        }

        /* 2. ULTRA-SUBTLE & MINIMAL MINT DOTS (Faded & Clean) */
        .texture-dots-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
            opacity: 0.22; /* Very faint & elegant */
            mask-image: linear-gradient(to bottom, black 30%, transparent 85%);
            -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 85%);
        }

        .tp-main-container {
            max-width: 1440px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Top Header */
        .tp-head-wrap {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 55px;
        }

        .tp-tag {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }
        .tp-tag span {
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 2px;
            color: #00b894;
            text-transform: uppercase;
        }
        .tp-tag .bar {
            width: 32px;
            height: 2px;
            background-color: #00d2aa;
        }

        .tp-title {
            font-size: clamp(34px, 4vw, 50px);
            font-weight: 800;
            color: #0f172a;
            margin: 0 0 14px 0;
            letter-spacing: -0.8px;
            line-height: 1.15;
        }
        .tp-title .teal {
            color: #00d2aa;
            position: relative;
            display: inline-block;
        }
        .tp-title .teal::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #00d2aa;
            border-radius: 99px;
        }

        .tp-sub {
            font-size: 15px;
            color: #64748b;
            line-height: 1.6;
            margin: 0;
        }

        /* 6 Column Layout */
        .tp-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 16px;
            margin-bottom: 35px;
            align-items: stretch;
        }
        @media (min-width: 640px) {
            .tp-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (min-width: 1024px) {
            .tp-grid { grid-template-columns: repeat(3, 1fr); }
        }
        @media (min-width: 1280px) {
            .tp-grid { grid-template-columns: repeat(6, 1fr); }
        }

        /* Card Container */
        .tp-box {
            background: #ffffff;
            border: 1.5px solid #e8ecf1;
            border-radius: 18px;
            padding: 24px 18px 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .tp-box:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
        }

        /* Card 3 (MOST POPULAR) */
        .tp-box.is-popular {
            border: 2px solid #00d2aa !important;
            box-shadow: 0 10px 30px rgba(0, 210, 170, 0.15) !important;
        }

        .tp-pop-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #00d2aa;
            color: #ffffff;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
            padding: 3px 14px;
            border-radius: 9999px;
            white-space: nowrap;
        }

        /* Card Top Header */
        .tp-card-head {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 18px;
        }

        .tp-icon-wrap {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .tp-icon-wrap img {
            width: 30px;
            height: 30px;
            object-fit: contain;
        }

        .tp-card-titles h3 {
            font-size: 15px;
            font-weight: 800;
            color: #0b132b;
            margin: 0 0 4px 0;
            line-height: 1.25;
        }
        .tp-card-titles p {
            font-size: 11px;
            color: #64748b;
            line-height: 1.4;
            margin: 0;
        }

        /* Price Section */
        .tp-price-sec {
            border-top: 1px solid #f1f5f9;
            padding-top: 14px;
            margin-bottom: 16px;
        }
        .tp-price-sec .p-label {
            font-size: 11px;
            font-weight: 500;
            color: #64748b;
            margin-bottom: 2px;
        }
        .tp-price-sec .p-val {
            font-size: 28px;
            font-weight: 500;
            color: #00a884;
            line-height: 1.1;
            letter-spacing: -0.5px;
        }

        /* Checklist */
        .tp-list {
            list-style: none;
            padding: 0;
            margin: 0 0 24px 0;
            display: flex;
            flex-direction: column;
            gap: 9px;
            flex-grow: 1;
        }
        .tp-list li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            color: #334155;
        }
        .tp-list li svg {
            color: #00d2aa;
            width: 14px;
            height: 14px;
            flex-shrink: 0;
        }

        /* Bottom Full-Width Button */
        .tp-button {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 14px;
            border: 1.5px solid #0f172a;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 700;
            color: #0f172a;
            background: #ffffff;
            text-decoration: none;
            transition: all 0.2s ease;
            margin-top: auto;
        }
        .tp-button:hover {
            background-color: #0f172a;
            color: #ffffff;
        }

        /* Popular Green Button (Card 3) */
        .tp-button.tp-popular-btn {
            background-color: #00d2aa !important;
            border-color: #00d2aa !important;
            color: #ffffff !important;
        }
        .tp-button.tp-popular-btn:hover {
            background-color: #00b894 !important;
            border-color: #00b894 !important;
        }

        /* Bottom Option Bar */
        .tp-bottom-bar {
            background-color: #ffffff;
            border: 1.5px solid #cbf0e6;
            border-radius: 20px;
            padding: 18px 28px;
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 4px 20px rgba(0, 210, 170, 0.05);
        }
        @media (min-width: 900px) {
            .tp-bottom-bar {
                flex-direction: row;
                padding: 18px 32px;
            }
        }

        .tp-bottom-left {
            display: flex;
            align-items: center;
            gap: 16px;
            text-align: left;
            flex: 1 1 auto;
        }

        .tp-info-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background-color: #e2f8f3;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #00d2aa;
            flex-shrink: 0;
        }

        .tp-bottom-text h4 {
            font-size: 15px;
            font-weight: 800;
            color: #0b132b;
            margin: 0 0 3px 0;
        }
        .tp-bottom-text p {
            font-size: 12.5px;
            color: #64748b;
            margin: 0;
            line-height: 1.5;
        }

        .tp-wa-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: #00c99e;
            color: #ffffff;
            font-size: 14px;
            font-weight: 700;
            padding: 12px 24px;
            border-radius: 12px;
            text-decoration: none;
            transition: background-color 0.2s ease;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .tp-wa-btn:hover {
            background-color: #00b08a;
        }










            @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Caveat:wght@600;700&display=swap');

        .why-choose-section {
            font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
            background: linear-gradient(135deg, #f8fcfb 0%, #f4fbf9 50%, #ffffff 100%);
            padding: 85px 24px 95px;
            color: #0f172a;
            position: relative;
            overflow: hidden;
            box-sizing: border-box;
            width: 100%;
        }

        .why-choose-section * {
            box-sizing: border-box;
        }

        .wc-container {
            max-width: 1440px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* Top Left Concentric Circle Doodle/Watermark */
        .wc-bg-circles {
            position: absolute;
            top: -60px;
            left: -80px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            border: 45px solid rgba(0, 210, 170, 0.04);
            pointer-events: none;
            z-index: 1;
        }

        /* Main Split Grid (Left Content + Right Image/Stats) */
        .wc-main-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 50px;
            align-items: center;
        }

        @media (min-width: 1100px) {
            .wc-main-grid {
                grid-template-columns: 1.15fr 0.85fr;
                gap: 40px;
            }
        }

        /* Badge Tag */
        .wc-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }
        .wc-badge span {
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 2px;
            color: #00b894;
            text-transform: uppercase;
        }
        .wc-badge-line {
            width: 38px;
            height: 2px;
            background-color: #00d2aa;
        }

        /* Section Title */
        .wc-title {
            font-size: clamp(32px, 3.8vw, 48px);
            font-weight: 800;
            color: #0f172a;
            margin: 0 0 16px 0;
            line-height: 1.18;
            letter-spacing: -0.8px;
        }
        .wc-title .highlight-teal {
            color: #00d2aa;
        }

        /* Your Custom Content */
        .wc-subtext {
            font-size: 14px;
            color: #475569;
            line-height: 1.7;
            margin: 0 0 34px 0;
            max-width: 660px;
        }
        .wc-subtext strong {
            color: #0f172a;
            font-weight: 700;
        }

        /* 6 Features Grid (3 Columns x 2 Rows) */
        .wc-cards-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 16px;
            margin-bottom: 38px;
        }
        @media (min-width: 640px) {
            .wc-cards-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Feature Card */
        .wc-card {
            background: #ffffff;
            border: 1.5px solid #edf2f7;
            border-radius: 18px;
            padding: 20px 18px;
            display: flex;
            align-items: flex-start;
            gap: 14px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .wc-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
            border-color: #d1f2eb;
        }

        .wc-card-icon {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .wc-card-body h4 {
            font-size: 15px;
            font-weight: 800;
            color: #0b132b;
            margin: 0 0 4px 0;
            line-height: 1.25;
        }
        .wc-card-body p {
            font-size: 12px;
            color: #64748b;
            line-height: 1.45;
            margin: 0;
        }

        /* Bottom CTA Row */
        .wc-cta-row {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .wc-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: #00c99e;
            color: #ffffff;
            font-size: 14px;
            font-weight: 800;
            padding: 8px 10px 8px 24px;
            border-radius: 9999px;
            text-decoration: none;
            box-shadow: 0 4px 16px rgba(0, 201, 158, 0.25);
            transition: background-color 0.2s ease, transform 0.2s ease;
        }
        .wc-cta-btn:hover {
            background-color: #00b38c;
            transform: translateY(-1px);
        }

        .wc-cta-arrow {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background-color: #ffffff;
            color: #00c99e;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .wc-cta-tagline {
            display: flex;
            align-items: center;
            gap: 14px;
            color: #64748b;
            font-size: 13.5px;
            font-weight: 500;
        }
        .wc-cta-line {
            width: 34px;
            height: 1.5px;
            background-color: #00d2aa;
        }

        /* Right Hero Column & Floating Badges */
        .wc-visual-wrap {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .wc-main-img {
            width: 100%;
            max-width: 520px;
            height: auto;
            object-fit: contain;
            position: relative;
            z-index: 2;
            border-radius: 20px;
        }

        /* Floating Stat Badge Base */
        .floating-badge {
            position: absolute;
            background: #ffffff;
            border: 1.5px solid #edf2f7;
            border-radius: 16px;
            padding: 12px 18px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
            z-index: 5;
        }

        .fb-icon-box {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .fb-text h5 {
            font-size: 18px;
            font-weight: 800;
            color: #0b132b;
            margin: 0;
            line-height: 1.1;
        }
        .fb-text span {
            font-size: 11px;
            color: #64748b;
            font-weight: 600;
        }

        /* Badge 1: 100+ Projects (Top Left) */
        .badge-projects {
            top: 25px;
            left: -20px;
        }

        /* Badge 2: 50+ Clients (Right Mid) */
        .badge-clients {
            top: 135px;
            right: -25px;
        }

        /* Badge 3: 5+ Years Experience (Updated to 5+) */
        .badge-years {
            top: 245px;
            right: -25px;
        }

        /* Handwritten Doodles */
        .doodle-priority {
            position: absolute;
            top: -30px;
            right: 10px;
            font-family: 'Caveat', cursive;
            font-size: 22px;
            font-weight: 700;
            color: #0f172a;
            line-height: 1.1;
            transform: rotate(8deg);
            z-index: 4;
            text-align: center;
        }
        .doodle-priority .priority-brush {
            width: 70px;
            height: 3px;
            background-color: #00d2aa;
            border-radius: 99px;
            margin: 2px auto 0;
        }

        .doodle-ideas {
            position: absolute;
            left: 10px;
            top: 155px;
            font-family: 'Caveat', cursive;
            font-size: 20px;
            font-weight: 700;
            color: #0f172a;
            line-height: 1.1;
            transform: rotate(-10deg);
            z-index: 4;
        }
        .doodle-ideas svg {
            color: #00d2aa;
            margin-top: 2px;
        }

        @media (max-width: 900px) {
            .floating-badge {
                position: static;
                margin-top: 12px;
            }
            .doodle-priority, .doodle-ideas {
                display: none;
            }
            .wc-visual-wrap {
                flex-direction: column;
            }
        }
        
            
            
    
     .hero-mint-gradient-bg {
            background: linear-gradient(135deg, #f4fbf9 0%, #f0fdfa 50%, #f8fafc 100%) !important;
            width: 100% !important;
            position: relative !important;
            overflow: hidden !important;
        }
    
        /* Giant Soft Mint Circle Behind Left Text */
        .mint-circle-left {
            position: absolute !important;
            top: -120px !important;
            left: -160px !important;
            width: 700px !important;
            height: 700px !important;
            border-radius: 50% !important;
            background: rgba(224, 248, 244, 0.85) !important;
            pointer-events: none !important;
            z-index: 1 !important;
        }
    
        /* Giant Soft Mint Circle Behind Top-Right Image */
        .mint-circle-right {
            position: absolute !important;
            top: -100px !important;
            right: -140px !important;
            width: 600px !important;
            height: 600px !important;
            border-radius: 50% !important;
            background: rgba(224, 248, 244, 0.75) !important;
            pointer-events: none !important;
            z-index: 1 !important;
        }
    
    
        /* Minimal CSS to Center Align Buttons */
    
    /* Center-Align Service Card Buttons */
    
    
    .contact-pill-btn {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px !important;
        margin: 20px auto 0 !important; /* Centers button horizontally */
        width: max-content !important;
        background-color: #e6f9f5 !important;
        border: 1.5px solid rgba(0, 210, 170, 0.3) !important;
        border-radius: 99px !important;
        padding: 10px 24px !important;
        color: #0b132b !important;
        font-weight: 800 !important;
        font-size: 13px !important;
        text-decoration: none !important;
        
    }



