@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    scroll-behavior: smooth;
}

:root {
    --primary-green: #638c27;
    --primary-hover: #4e6f1f;
    --accent-emerald: #10b981;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --grid-line: #e2e8f0;
    --grid-size: 55px;
    --card-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 10px -6px rgba(15, 23, 42, 0.02);
}

/* Scroll Background Color Transition Animation */
@keyframes scrollBgAnimation {
    0% {
        background-color: #FDFBD4 !important;
    }

    35% {
        background-color: #f1f5f9 !important;
    }

    70% {
        background-color: #ffffff !important;
    }

    100% {
        background-color: #0f172a !important;
    }
}

body {
    background-color: #ffffff !important;
    color: #1e293b;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    /* Agar aap automatic scroll color change chahte hain toh animation enable karein */
    /* animation: scrollBgAnimation linear; */
    /* animation-timeline: scroll(); */
    transition: background-color 0.5s ease;
}

/* Base Components */
.green-square {
    width: 8px;
    height: 8px;
    background-color: var(--primary-green);
    display: inline-block;
    border-radius: 2px;
}

.section-tag, .section-tag-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    border: 1px solid var(--grid-line);
    padding: 6px 16px;
    border-radius: 30px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-green);
    margin-bottom: 20px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

/* ==========================================
   Header Main Wrapper
   ========================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--grid-line, #eaeaea);
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Styling */
.logo {
    text-decoration: none;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark, #111);
}

    .logo-text .dot {
        color: var(--primary-green, #10b981);
    }

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-green), #3f5918);
    color: #ffffff;
    font-weight: 900;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(99, 140, 39, 0.25);
}

/* Navigation Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark, #333);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
    position: relative;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0%;
        height: 2px;
        background-color: var(--primary-green);
        transition: width 0.25s ease;
    }

    .nav-link:hover {
        color: var(--primary-green, #10b981);
    }

        .nav-link:hover::after {
            width: 100%;
        }

/* Mega Menu Container */
.nav-item-dropdown {
    position: relative;
}

.mega-menu-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: #ffffff;
    border: 1px solid var(--grid-line, #eaeaea);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    padding: 24px;
    width: 550px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
}

.nav-item-dropdown:hover .mega-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(8px);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.mega-menu-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s ease;
}

    .mega-menu-item:hover {
        background: #f8f9fa;
    }

    .mega-menu-item h4 {
        font-size: 15px;
        font-weight: 700;
        color: var(--text-dark, #111);
        margin: 0 0 4px 0;
    }

    .mega-menu-item p {
        font-size: 13px;
        color: var(--text-muted, #666);
        margin: 0;
        line-height: 1.4;
    }

.mega-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(16, 185, 129, 0.1);
    flex-shrink: 0;
}

/* Right Actions (Badge & Schedule Button) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f3f4f6;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    border: 1px solid #e5e7eb;
}

    .availability-badge .green-dot {
        width: 8px;
        height: 8px;
        background-color: var(--primary-green, #10b981);
        border-radius: 50%;
    }

.btn-schedule {
    background: var(--text-dark, #111);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s ease;
}

    .btn-schedule:hover {
        background: var(--primary-green, #10b981);
    }

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--grid-line);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-emerald);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.status-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    color: #334155;
}

.btn-header-cta {
    background-color: var(--text-dark);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

    .btn-header-cta:hover {
        background-color: var(--primary-green);
        transform: translateY(-1px);
    }

/* ==========================================
   Buttons & Grid Structural Layouts
   ========================================== */
.btn-primary {
    background-color: var(--primary-green);
    color: #ffffff;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(99, 140, 39, 0.25);
}

    .btn-primary:hover {
        background-color: var(--primary-hover);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(99, 140, 39, 0.35);
    }

.btn-outline {
    background-color: #ffffff;
    color: var(--text-dark);
    border: 1px solid var(--grid-line);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

    .btn-outline:hover {
        border-color: var(--primary-green);
        color: var(--primary-green);
        background-color: #f8fafc;
    }

/* Background Grids */
.hero-section, .about-us, .services-section, .ai-process-section {
    background-image: linear-gradient(to right, var(--grid-line) 1px, transparent 1px), linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
    background-size: var(--grid-size) var(--grid-size);
    background-position: 0 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-color: var(--bg-light);
    padding-top: 140px !important;
    text-align: center;
    border-bottom: 1px solid var(--grid-line);
    overflow: hidden;
}

#hero-dots-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.hero-section > *:not(#hero-dots-canvas) {
    position: relative;
    z-index: 1;
}

.top-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    border: 1px solid var(--grid-line);
    padding: 8px 20px;
    border-radius: 30px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-dark);
    margin-bottom: 35px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-emerald);
    border-radius: 50%;
}

.hero-headline h1 {
    font-size: clamp(38px, 6.5vw, 80px);
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -2px;
    line-height: 1.05;
    text-transform: uppercase;
}

.hero-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 18px 0;
}

.icon-3d {
    display: inline-block;
    width: 100px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), #3f5918);
    border-radius: 50px 0px 50px 0px;
    box-shadow: 0 10px 25px rgba(99, 140, 39, 0.3);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

    .icon-3d:hover {
        transform: scale(1.08) rotate(4deg);
    }

.hero-content-bottom {
    max-width: 680px;
    margin: 30px auto 0;
}

    .hero-content-bottom p {
        font-size: 18px;
        color: var(--text-muted);
        line-height: 1.6;
        margin-bottom: 32px;
    }

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Marquee Section */
.client-logo-section {
    width: 100%;
    background-color: #ffffff;
    padding: 24px 0;
    overflow: hidden;
    border-bottom: 1px solid var(--grid-line);
}

.client-logo-container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.trusted-by-badge {
    flex-shrink: 0;
    padding-right: 40px;
    border-right: 1px solid var(--grid-line);
    background: #ffffff;
    z-index: 5;
}

    .trusted-by-badge h2, .trusted-by-badge span {
        font-family: 'JetBrains Mono', monospace;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.5px;
        color: var(--text-dark);
        opacity: 0.6;
        white-space: nowrap;
    }

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-left 22s linear infinite;
}

.marquee-group {
    display: flex;
    align-items: center;
    gap: 80px;
    padding-left: 80px;
}

.logo-item .client-img {
    height: 40px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.55;
    transition: all 0.3s ease;
}

.logo-item:hover .client-img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* About Us Section */
.about-us {
    position: relative;
    padding: 100px 5%;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--grid-line);
}

    .about-us .container {
        max-width: 1300px;
        margin: 0 auto;
    }

.text-wrapper h2 {
    font-size: clamp(30px, 3.8vw, 48px);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -1px;
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-top: 40px;
}

.left-side-wrapper {
    flex: 1;
    max-width: 600px;
}

.divider {
    border: none;
    border-top: 1px solid var(--grid-line);
    margin-bottom: 30px;
}

.stats-intro {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.stat-list {
    display: flex;
    flex-direction: column;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: transform 0.3s ease;
}

    .stat-row:hover {
        transform: translateX(8px);
    }

.stat-icon {
    width: 60px;
    height: 60px;
    background-color: #0f172a;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

    .stat-icon svg {
        width: 28px;
        height: 28px;
        stroke: var(--primary-green, #638c27);
    }

.stat-text h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    letter-spacing: -1px;
}

.stat-text p {
    font-size: 15px;
    color: var(--text-muted);
}

.about-image {
    flex: 1;
    position: relative;
    width: 100%;
    min-height: 480px;
    display: flex;
    justify-content: flex-end;
}

.rectangle {
    border-radius: 16px;
    position: absolute;
}

.rect-primary {
    width: 85%;
    height: 90%;
    top: 0;
    right: 0;
    z-index: 2;
    overflow: hidden;
    border: 1px solid var(--grid-line);
    box-shadow: var(--card-shadow);
}

    .rect-primary img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.rect-secondary {
    width: 75%;
    height: 90%;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-hover));
    bottom: 0;
    left: 20px;
    z-index: 1;
}

/* Services Section */
.services-section {
    padding: 100px 5%;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--grid-line);
}

    .services-section .container {
        max-width: 1300px;
        margin: 0 auto;
    }

    .services-section .text-wrapper.text-center {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        margin: 0 auto 70px auto !important;
        max-width: 900px !important;
        width: 100% !important;
    }

.services-flex-container {
    display: flex;
    gap: 16px;
    width: 100%;
    height: 520px;
}

.service-col {
    position: relative;
    flex: 1;
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    border: 1px solid var(--grid-line);
    box-shadow: var(--card-shadow);
}

.col-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-img);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.service-col::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.4) 50%, rgba(15, 23, 42, 0.95) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.col-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.col-tag {
    background-color: #0f172a;
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.service-col .big-number {
    font-size: 80px;
    font-weight: 900;
    color: #cbd5e1;
    transition: color 0.4s ease;
    line-height: 1;
}

.service-col .hover-desc,
.service-col .bottom-area {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transition: all 0.4s ease;
}

.services-flex-container:hover .service-col:hover {
    flex: 2.5;
}

.services-flex-container .service-col:hover .col-bg-overlay,
.services-flex-container .service-col:hover::after {
    opacity: 1;
}

.services-flex-container .service-col:hover .big-number {
    color: #ffffff;
}

.services-flex-container .service-col:hover .hover-desc,
.services-flex-container .service-col:hover .bottom-area {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
}

.hover-desc {
    font-size: 15px;
    color: #e2e8f0;
    line-height: 1.6;
    margin-top: 16px;
}

.bottom-area {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.feature-list {
    list-style: none;
    border-left: 2px solid var(--accent-emerald);
    padding-left: 15px;
}

    .feature-list li {
        font-size: 13px;
        color: #f8fafc;
        line-height: 1.7;
        font-weight: 500;
    }

.hover-btn {
    background-color: #ffffff;
    color: var(--text-dark);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.25s ease;
}

    .hover-btn svg {
        width: 20px;
        height: 20px;
    }

    .hover-btn:hover {
        transform: scale(1.08);
    }

/* Production Stack Matrix Section */
.tech-stack-section {
    padding: 100px 5%;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--grid-line);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 8px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1300px;
    margin: 50px auto 0;
}

.tech-card {
    background: #ffffff;
    border: 1px solid var(--grid-line);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

    .tech-card:hover, .case-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 35px -10px rgba(99, 140, 39, 0.15);
        border-color: var(--primary-green);
    }

.tech-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.tech-icon-badge {
    background: #0f172a;
    color: #ffffff;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
}

.tech-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
}

.tech-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

    .tech-tags span {
        font-family: 'JetBrains Mono', monospace;
        font-size: 11px;
        font-weight: 700;
        background-color: #f1f5f9;
        color: #334155;
        padding: 4px 10px;
        border-radius: 4px;
        border: 1px solid var(--grid-line);
    }

/* Specialized Implementations (Case Grid) */
.case-grid-section {
    padding: 100px 5%;
    background-color: #ffffff;
    border-bottom: 1px solid var(--grid-line);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 40px auto 0;
}

.case-card {
    background: var(--bg-light);
    border: 1px solid var(--grid-line);
    border-radius: 16px;
    padding: 35px;
    position: relative;
    transition: all 0.3s ease;
}

    .case-card:hover {
        background: #ffffff;
    }

.case-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
    margin-bottom: 15px;
}

.case-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.case-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Vision Section */
.our-vision-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--grid-line);
    text-align: center;
}

    .our-vision-section .container {
        max-width: 1000px;
        margin: 0 auto;
    }

.heading-wrapper h2 {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.vision-desc {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto;
}

/* Featured Projects Section */
.projects-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--grid-line);
}

.projects-container {
    max-width: 1300px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--grid-line);
    background-color: #0f172a;
    box-shadow: var(--card-shadow);
}

.project-slide-wrapper {
    position: relative;
    width: 100%;
    min-height: 580px;
    display: flex;
    align-items: flex-end;
}

.project-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

    .project-image-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.8;
    }

.project-details-card {
  /*  position: absolute;*/
    left: 0;
    bottom: 0;
    z-index: 3;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-top-right-radius: 20px;
    width: 100%;
    max-width: 520px;
    padding: 40px;
    color: #ffffff;
}

.project-info h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.project-info p {
    font-size: 15px;
    color: #94a3b8;
    line-height: 1.6;
}

.project-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 25px;
    padding-top: 25px;
}

.p-stat-item h4 {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
}

.p-stat-item span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
}

.slider-nav-buttons {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 4;
    display: flex;
}

.slider-btn {
    background-color: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    width: 65px;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .slider-btn:hover {
        background-color: var(--primary-green);
    }

    .slider-btn svg {
        width: 22px;
        height: 22px;
    }

.cursor-project-badge {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(15px, 15px);
    background: #0f172a;
    color: #ffffff;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 12px;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

    .cursor-project-badge svg {
        stroke: var(--accent-emerald);
    }

/* Process Section */
.ai-process-section {
    position: relative;
    padding: 120px 0;
    background-color: #ffffff;
    border-bottom: 1px solid var(--grid-line);
}

.ai-process-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

.ai-process-left {
    position: sticky;
    top: 140px;
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .ai-process-left h2 {
        font-size: 48px;
        font-weight: 900;
        color: var(--text-dark);
        line-height: 1.1;
        letter-spacing: -1.5px;
    }

    .ai-process-left p {
        color: var(--text-muted);
        font-size: 16px;
        line-height: 1.6;
    }

.btn-start-project {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #638c27;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.1);
    transition: all 0.25s ease;
    margin-top: 10px;
}

    .btn-start-project:hover {
        background-color: var(--primary-green);
        transform: translateY(-2px);
    }

    .btn-start-project .green-dot {
        width: 8px;
        height: 8px;
        background-color: #ffff;
        border-radius: 50%;
    }

.ai-process-right {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 100px;
}

.process-stack-card {
    position: sticky;
    background: #f8fafc;
    border: 1px solid var(--grid-line);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .process-stack-card.card-1 {
        top: 120px;
        z-index: 1;
    }

    .process-stack-card.card-2 {
        top: 150px;
        z-index: 2;
    }

    .process-stack-card.card-3 {
        top: 180px;
        z-index: 3;
    }

    .process-stack-card.card-4 {
        top: 210px;
        z-index: 4;
    }

.card-img-wrap {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    background: #e2e8f0;
}

    .card-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.card-text-wrap .step-count {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-green);
}

.card-text-wrap h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 6px 0 10px;
}

.card-text-wrap p {
    color: var(--text-muted);
    font-size: 15px;
}

/* FAQ Section */
.faq-section {
    padding: 100px 5%;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--grid-line);
}

.faq-accordion {
    max-width: 850px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--grid-line);
    border-radius: 12px;
    padding: 20px 28px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    transition: border-color 0.25s ease;
}

    .faq-item[open] {
        border-color: var(--primary-green);
    }

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

    .faq-question::-webkit-details-marker {
        display: none;
    }

.faq-icon {
    font-family: 'JetBrains Mono', monospace;
    font-size: 20px;
    color: var(--primary-green);
    transition: transform 0.25s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--grid-line);
}

    .faq-answer p {
        font-size: 15px;
        color: var(--text-muted);
        line-height: 1.6;
    }

/* Contact CTA Section */
.contact-cta-section {
    padding: 120px 5%;
    background-color: #0f172a;
    color: #ffffff;
    text-align: center;
}

    .contact-cta-section h2 {
        font-size: clamp(32px, 4.5vw, 52px);
        font-weight: 900;
        letter-spacing: -1.5px;
        margin-bottom: 16px;
    }

    .contact-cta-section p {
        font-size: 18px;
        color: #94a3b8;
        max-width: 600px;
        margin: 0 auto 36px;
    }

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
    border-radius: 10px;
}

/* Footer Section */
.site-footer {
    background-color: #0b0f19;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    text-align: center;
}

.footer-container p {
    color: #64748b;
    font-size: 14px;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

    .animate-on-scroll.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.project-img-transition {
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.slide-out-left {
    transform: translateX(-40px);
    opacity: 0;
}

.slide-in-right {
    transform: translateX(40px);
    opacity: 0;
}

/* Mobile Menu Toggle Styling */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 24px;
    z-index: 1001;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.mobile-menu-toggle.open .hamburger-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.open .hamburger-bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.open .hamburger-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================
   The Difference / Why Should You Choose Us
   ========================================== */
.difference-section {
    position: relative !important;
    padding: 120px 0 !important;
    background-color: var(--bg-light, #ffffff) !important;
    border-bottom: 1px solid var(--grid-line, #eaeaea) !important;
    background-image: linear-gradient(to right, var(--grid-line, #eaeaea) 1px, transparent 1px), linear-gradient(to bottom, var(--grid-line, #eaeaea) 1px, transparent 1px) !important;
    background-size: var(--grid-size, 40px) var(--grid-size, 40px) !important;
}

.difference-container {
    max-width: 1100px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 60px !important;
}

.difference-header {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
}

    .difference-header h2 {
        font-size: clamp(34px, 4vw, 48px) !important;
        font-weight: 800 !important;
        color: var(--text-dark, #111) !important;
        letter-spacing: -1.5px !important;
    }

.comparison-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
    width: 100% !important;
}

.comparison-card {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 28px !important;
    padding: 40px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 35px !important;
    border-left: 1px solid #e5e7eb !important;
}

.card-top-header h3 {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: var(--text-dark, #111) !important;
}

.card-top-header .logo-text {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: var(--text-dark, #111) !important;
}

.card-top-header .dot {
    color: var(--primary-green, #10b981) !important;
}

.comparison-card .feature-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 22px !important;
    border-left: none !important;
}

    .comparison-card .feature-list li {
        display: flex !important;
        align-items: center !important;
        gap: 14px !important;
        font-size: 15px !important;
        color: #4b5563 !important;
        font-weight: 500 !important;
        border-left: none !important;
        position: relative !important;
    }

        .comparison-card .feature-list li::before,
        .comparison-card .feature-list li::after {
            display: none !important;
        }

.cross-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 22px !important;
    height: 22px !important;
    background: #f3f4f6 !important;
    color: #9ca3af !important;
    border-radius: 50% !important;
    font-size: 12px !important;
    font-weight: bold !important;
    flex-shrink: 0 !important;
}

.black-check {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 22px !important;
    height: 22px !important;
    background: #111827 !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    font-size: 12px !important;
    font-weight: bold !important;
    flex-shrink: 0 !important;
}

.difference-footer-btn {
    margin-top: 10px !important;
}

.btn-get-started-gradient {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(180deg, #374151 0%, #111827 100%) !important;
    color: #ffffff !important;
    padding: 16px 42px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    text-decoration: none !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

    .btn-get-started-gradient:hover {
        transform: translateY(-2px) !important;
        background: #638c27 !important;
        box-shadow: 0 15px 30px rgba(99, 140, 39, 0.4) !important;
    }

/* ==========================================
   Responsive Media Queries
   ========================================== */
@media (max-width: 1024px) {
    .pixel-block {
        display: none;
    }

    .header-container {
        padding: 14px 20px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .status-indicator, .nav-menu {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 65px;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-bottom: 1px solid var(--grid-line);
        padding: 24px 30px;
        gap: 20px;
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        z-index: 999;
    }

        .nav-menu.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

    .nav-link {
        font-size: 16px;
        font-weight: 700;
        width: fit-content;
    }

    .services-flex-container {
        flex-direction: column;
        height: auto;
    }

    .service-col {
        min-height: 280px;
    }

    .services-flex-container:hover .service-col:hover {
        flex: 1;
    }

    .ai-process-container {
        flex-direction: column;
    }

    .ai-process-left {
        position: relative;
        top: 0;
        width: 100%;
    }

    .ai-process-right {
        width: 100%;
    }

    .process-stack-card {
        position: relative;
        top: 0 !important;
    }

    .horizontal {
        flex-direction: column;
    }

    .about-image {
        min-height: 380px;
    }
}

@media (max-width: 992px) {
    .comparison-grid {
        grid-template-columns: 1fr !important;
    }
}

.site-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}
/* ==========================================
   Full-Width Edge-to-Edge Footer
   ========================================== */
.liquid-glass-footer-wrapper {
    position: relative;
    width: 100%;
    margin-top: 80px;
    padding: 0;
    z-index: 100;
}

.liquid-glass-card {
    position: relative;
    border-radius: 0px;
    padding: 60px 80px 40px 80px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.9), rgba(10, 15, 25, 0.98));
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: none;
    border-left: none;
    border-right: none;
    box-shadow: none;
    overflow: hidden;
}

    .liquid-glass-card::before {
        content: '';
        position: absolute;
        top: -40px;
        right: 10%;
        width: 300px;
        height: 300px;
        background: rgba(99, 140, 39, 0.2);
        border-radius: 50%;
        filter: blur(90px);
        pointer-events: none;
        z-index: 1;
    }

    .liquid-glass-card::after {
        content: '';
        position: absolute;
        bottom: -40px;
        left: 10%;
        width: 300px;
        height: 300px;
        background: rgba(16, 185, 129, 0.15);
        border-radius: 50%;
        filter: blur(90px);
        pointer-events: none;
        z-index: 1;
    }

.glass-footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-side {
    max-width: 350px;
    position: relative;
    z-index: 2;
}

    .footer-brand-side .logo-text {
        font-size: 28px;
        font-weight: 800;
        color: #ffffff;
        letter-spacing: -0.5px;
    }

    .footer-brand-side .dot {
        color: var(--primary-green, #638c27);
    }

    .footer-brand-side p {
        font-size: 15px;
        color: #94a3b8;
        margin-top: 12px;
        line-height: 1.6;
    }

.footer-links-grid {
    display: flex;
    gap: 70px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.link-column {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    .link-column h4 {
        font-size: 12px;
        font-family: 'JetBrains Mono', monospace;
        font-weight: 700;
        color: #ffffff;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        opacity: 0.9;
        margin-bottom: 4px;
    }

    .link-column a {
        font-size: 14px;
        color: #94a3b8;
        text-decoration: none;
        transition: all 0.25s ease;
    }

        .link-column a:hover {
            color: #ffffff;
            transform: translateX(4px);
        }

.glass-footer-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 30px;
    font-size: 14px;
    color: #64748b;
    flex-wrap: wrap;
    gap: 15px;
}

.social-badges a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

    .social-badges a:hover {
        background: var(--primary-green, #638c27);
        border-color: var(--primary-green, #638c27);
        transform: translateY(-2px);
    }

@media (max-width: 768px) {
    .liquid-glass-card {
        padding: 40px 20px 25px 20px;
    }

    .glass-footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links-grid {
        gap: 30px;
        justify-content: space-between;
        width: 100%;
    }
}

section:not(.hero-section) {
    background-image: none !important;
}

/* ==========================================
   Complete Framer Liquid Navbar CSS
   ========================================== */
.framer-liquid-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    border-radius: 0px !important;
    padding: 18px 40px !important;
    z-index: 1000 !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: none !important;
}

    .framer-liquid-nav .nav-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 1300px;
        margin: 0 auto;
    }

    .framer-liquid-nav .nav-logo {
        font-size: 20px;
        font-weight: 800;
        color: #0f172a;
        text-decoration: none;
        letter-spacing: -0.5px;
    }

        .framer-liquid-nav .nav-logo .dot {
            color: #638c27;
        }

    .framer-liquid-nav .nav-links {
        display: flex;
        gap: 32px;
        align-items: center;
    }

        .framer-liquid-nav .nav-links a {
            font-size: 14px;
            color: #334155;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s ease;
        }

            .framer-liquid-nav .nav-links a:hover {
                color: #0f172a;
            }

    .framer-liquid-nav .nav-actions {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .framer-liquid-nav .status-badge {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        color: #334155;
        background: rgba(0, 0, 0, 0.04);
        padding: 6px 14px;
        border-radius: 50px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        font-weight: 500;
    }

    .framer-liquid-nav .green-dot {
        width: 8px;
        height: 8px;
        background-color: #638C27;
        border-radius: 50%;
        box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
    }

    .framer-liquid-nav .nav-cta {
        background: #0f172a;
        color: #ffffff;
        padding: 9px 20px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.25s ease;
    }

        .framer-liquid-nav .nav-cta:hover {
            background: #638c27;
            transform: translateY(-1px);
        }

    .framer-liquid-nav.scrolled {
        top: 20px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: 85% !important;
        max-width: 1100px !important;
        border-radius: 100px !important;
        padding: 10px 25px !important;
        background: rgba(243, 243, 243, 0.85) !important;
        backdrop-filter: blur(24px) !important;
        -webkit-backdrop-filter: blur(24px) !important;
        border: 1px solid rgba(255, 255, 255, 0.75) !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    }
body {
    transition: background-color 0.6s ease, color 0.6s ease !important;
}
/* ==========================================
   Professional CTA Section Styling
   ========================================== */
.cta-section {
    padding: 60px 20px 0px 20px !important;
    margin-bottom: 0 !important;
}

.cta-glass-box {
    position: relative;
    max-width: 1150px;
    margin: 0 auto;
    border-radius: 36px;
    padding: 70px 40px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.92));
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-align: center;
    overflow: hidden;
}

.cta-glow-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: rgba(99, 140, 39, 0.25);
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 1;
}.cta-content .section-tag

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

    .cta-content .section-tag {
        font-family: 'JetBrains Mono', monospace;
        font-size: 12px;
        font-weight: 700;
        color: #638c27 !important;
        letter-spacing: 2px;
        background: rgba(255, 255, 255, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        padding: 6px 16px;
        border-radius: 30px;
    }

    .cta-content h2 {
        font-size: clamp(28px, 4vw, 44px);
        font-weight: 800;
        color: #ffffff;
        letter-spacing: -1px;
        margin: 0;
    }

    .cta-content p {
        font-size: 16px;
        color: #94a3b8;
        max-width: 600px;
        line-height: 1.6;
        margin-bottom: 10px;
    }

.primary-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #638c27;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 10px 25px rgba(99, 140, 39, 0.35);
}

    .primary-cta-btn:hover {
        background: #557821;
        transform: translateY(-2px);
        box-shadow: 0 15px 30px rgba(99, 140, 39, 0.5);
        color: #ffffff;
    }

    .primary-cta-btn svg {
        width: 18px;
        height: 18px;
        transition: transform 0.2s ease;
    }

    .primary-cta-btn:hover svg {
        transform: translateX(4px);
    }
/* ==========================================
   Makro Style Tabbed FAQ Section CSS
   ========================================== */
.makro-faq-section {
    padding: 120px 20px;
    background-color: transparent;
    position: relative;
    z-index: 5;
}

    .makro-faq-section .container {
        max-width: 1100px;
        margin: 0 auto;
    }

.faq-header-wrapper {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

    .faq-header-wrapper h2 {
        font-size: clamp(32px, 4.5vw, 48px);
        font-weight: 800;
        color: var(--text-dark, #0f172a);
        letter-spacing: -1.5px;
        margin: 0;
    }

    .faq-header-wrapper p {
        font-size: 16px;
        color: var(--text-muted, #64748b);
        max-width: 550px;
    }

.makro-faq-layout {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* Sidebar Tabs */
.faq-sidebar-tabs {
    width: 260px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: sticky;
    top: 120px;
}

.faq-tab-btn {
    background: transparent;
    border: none;
    text-align: left;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 600;
    color: #64748b;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .faq-tab-btn:hover {
        color: #0f172a;
        background: rgba(0, 0, 0, 0.03);
    }

    .faq-tab-btn.active {
        color: #0f172a;
        background: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

/* Content Area */
.faq-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-tab-pane {
    display: none;
    flex-direction: column;
    gap: 16px;
}

    .faq-tab-pane.active {
        display: flex;
    }

.makro-faq-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 22px 26px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

    .makro-faq-item[open] {
        border-color: #0f172a;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    }

.makro-faq-question {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark, #0f172a);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    user-select: none;
}

    .makro-faq-question::-webkit-details-marker {
        display: none;
    }

.makro-faq-icon {
    font-family: 'JetBrains Mono', monospace;
    font-size: 20px;
    font-weight: 600;
    color: #64748b;
    transition: transform 0.3s ease;
}

.makro-faq-item[open] .makro-faq-icon {
    transform: rotate(45deg);
    color: var(--primary-green, #638c27);
}

.makro-faq-answer {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

    .makro-faq-answer p {
        font-size: 15px;
        color: var(--text-muted, #64748b);
        line-height: 1.6;
        margin: 0;
    }

/* Support Box */
.faq-support-box {
    margin-top: 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.support-text h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark, #0f172a);
    margin-bottom: 8px;
}

.support-text p {
    font-size: 14px;
    color: var(--text-muted, #64748b);
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 420px;
}

.support-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0f172a;
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

    .support-contact-btn:hover {
        background: var(--primary-green, #638c27);
    }

.support-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

    .support-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

@media (max-width: 768px) {
    .makro-faq-layout {
        flex-direction: column;
    }

    .faq-sidebar-tabs {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        position: relative;
        top: 0;
    }

    .faq-support-box {
        flex-direction: column;
        text-align: center;
    }

    .support-text p {
        max-width: 100%;
    }
}
/* Hide scrollbar for cleaner look */
#servicesScrollContainer::-webkit-scrollbar {
    display: none;
}

#servicesScrollContainer {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    #servicesScrollContainer .service-col {
        min-width: 280px !important;
        max-width: 320px !important;
        flex: 0 0 300px !important;
        height: 450px !important;
    }
/* --- Mobile Menu & Responsive Navigation Styles --- */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

    .mobile-menu-toggle .bar {
        width: 100%;
        height: 2px;
        background-color: var(--text-dark, #0f172a);
        transition: all 0.3s ease;
        border-radius: 2px;
    }

.mobile-actions-wrapper {
    display: none;
}

@media (max-width: 992px) {
    .desktop-actions {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: center;
        padding: 30px 20px;
        gap: 20px;
        border-bottom: 1px solid var(--grid-line, #e2e8f0);
        box-shadow: 0 15px 30px rgba(0,0,0,0.05);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-in-out;
        pointer-events: none;
    }

        .nav-links.active {
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            pointer-events: auto;
        }

    .mobile-actions-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 10px;
        width: 100%;
        border-top: 1px solid var(--grid-line, #e2e8f0);
        padding-top: 20px;
    }

    /* Hamburger Animation to 'X' */
    .mobile-menu-toggle.open .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.open .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}
@media (max-width: 768px) {
    .project-stats-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .project-slide-wrapper {
        padding: 20px !important;
    }
}
@media (max-width: 768px) {
    /* Services Section Grid Fix for Mobile */
    .services-grid,
    div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Service Column / Cards Mobile Styling */
    .service-col {
        min-height: 380px !important;
        height: auto !important;
        padding: 25px 20px !important;
    }

        /* Adjust Font Sizes for Mobile Readability */
        .service-col .big-number {
            font-size: 60px !important;
        }

        .service-col .hover-desc {
            font-size: 14px !important;
        }
        
}
@media (max-width: 768px) {
    #prevServiceBtn,
    #nextServiceBtn {
        display: none !important;
    }
}
/* Hero section aur client logo section ke beech gap add karne ke liye */
.hero-section {
    padding-bottom: 80px !important;
}

.client-logo-section {
    margin-top: 20px !important;
}
@media (max-width: 768px) {
    /* Client Logo Section Mobile Fix */
    .client-logo-container,
    .client-logo-section .client-logo-container {
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        text-align: center !important;
        padding: 20px 15px !important;
    }

    .trusted-by-badge {
        width: 100% !important;
        text-align: center !important;
    }

        .trusted-by-badge h2 {
            font-size: 14px !important;
            letter-spacing: 1px !important;
        }

    .marquee-wrapper {
        width: 100% !important;
    }
}
@media (max-width: 768px) {
    /* Mobile screen par project image background ko hide kar dein */
    .project-image-bg {
        display: none !important;
    }

    /* Project slide wrapper ko clean stack layout bana dein */
    .project-slide-wrapper {
        display: flex !important;
        flex-direction: column !important;
        padding: 25px 20px !important;
    }

    /* Details card ko poori tarah clickable link ya wrapper bana dein */
    .project-details-card {
        width: 100% !important;
    }
}
/* Fixed navbar ke niche content chupne se bachane ke liye */
section {
    scroll-margin-top: 100px;
}

body {
    padding-top: 80px; /* Navbar ki height ke mutabiq adjust kar lein */
}
@media (max-width: 768px) {
    /* 1. Methodology section images aspect ratio aur distortion fix */
    .process-stack-card .card-img-wrap {
        width: 100% !important;
        height: 200px !important; /* Fixed height for consistency */
        overflow: hidden !important;
        border-radius: 12px !important;
    }

        .process-stack-card .card-img-wrap img {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover !important; /* Image ko stretch hone se bachata hai */
            object-position: center !important;
        }

    /* 2. Methodology section padding & spacing fix */
    .ai-process-section {
        padding: 40px 15px !important;
    }

    .ai-process-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }
}