:root {
            --bg-color: #f8fafc;
            --panel-bg: rgba(255, 255, 255, 0.85);
            --panel-border: rgba(0, 137, 117, 0.12);
            --accent-primary: #008975;
            --accent-secondary: #00a890;
            --accent-glow: rgba(0, 137, 117, 0.08);
            --text-main: #0f172a;
            --text-muted: #475569;
            --success: #059669;
            --success-glow: rgba(5, 150, 105, 0.08);
            --card-hover-border: rgba(0, 137, 117, 0.35);
            --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }

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

        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            font-family: var(--font-family);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
            position: relative;
        }

        /* Ambient Glow Wrapper to clip vertical overflow completely */
        .ambient-glow-wrapper {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            min-height: 100%;
            pointer-events: none;
            overflow: hidden;
            z-index: 1;
        }

        /* Abstract glowing blobs for premium light mode feel */
        .bg-blob-1 {
            position: absolute;
            top: -200px;
            right: -200px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 137, 117, 0.06) 0%, rgba(0,0,0,0) 70%);
            pointer-events: none;
        }

        .bg-blob-2 {
            position: absolute;
            bottom: -200px;
            left: -200px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 137, 117, 0.05) 0%, rgba(0,0,0,0) 70%);
            pointer-events: none;
        }

        /* Navigation Header */
        header.site-header {
            width: 100%;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--panel-border);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 137, 117, 0.03);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1.25rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .logo-box {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            color: #ffffff;
            font-size: 1.15rem;
            box-shadow: 0 4px 10px var(--accent-glow);
        }

        .logo-text {
            font-size: 1.25rem;
            font-weight: 800;
            letter-spacing: -0.5px;
            background: linear-gradient(135deg, var(--accent-primary) 40%, var(--accent-secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        nav.nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        nav.nav-links a {
            text-decoration: none;
            color: var(--text-muted);
            font-size: 0.95rem;
            font-weight: 600;
            transition: all 0.2s ease;
            position: relative;
        }

        nav.nav-links a:hover, nav.nav-links a.active {
            color: var(--accent-primary);
        }

        nav.nav-links a::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
            transition: width 0.2s ease;
        }

        nav.nav-links a:hover::after, nav.nav-links a.active::after {
            width: 100%;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 1.25rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 9px 20px;
            border-radius: 10px;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.25s ease;
        }

        .btn-outline {
            background: transparent;
            border: 1px solid var(--accent-primary);
            color: var(--accent-primary);
        }

        .btn-outline:hover {
            background: rgba(0, 137, 117, 0.05);
            border-color: var(--accent-secondary);
            color: var(--accent-secondary);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
            border: none;
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(0, 137, 117, 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(0, 137, 117, 0.35);
        }

        /* Mobile Hamburger */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 2px;
            background-color: var(--text-main);
            transition: all 0.3s ease;
        }

        .mobile-only-link {
            display: none !important;
        }

        @media (max-width: 768px) {
            nav.nav-links {
                display: none;
            }
            .header-actions {
                display: none;
            }
            .menu-toggle {
                display: flex;
            }
            nav.nav-links a.mobile-only-link {
                display: block !important;
                padding: 0.75rem 0;
                border-top: 1px solid var(--panel-border);
                margin-top: 0.5rem;
            }
        }

        /* Main Site Content Wrapper */
        main.site-content {
            flex: 1;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 2rem;
            z-index: 2;
        }

        /* Modern Glass Footer */
        footer.site-footer {
            background: rgba(255, 255, 255, 0.9);
            border-top: 1px solid var(--panel-border);
            padding: 3rem 2rem 2rem;
            margin-top: auto;
            z-index: 2;
            box-shadow: 0 -4px 20px rgba(0, 137, 117, 0.02);
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        .footer-about h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--accent-primary);
            margin-bottom: 1rem;
        }

        .footer-about p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
            max-width: 400px;
        }

        .footer-links h4 {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-main);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 0.75rem;
        }

        .footer-links ul li a {
            text-decoration: none;
            color: var(--text-muted);
            font-size: 0.9rem;
            transition: color 0.2s ease;
        }

        .footer-links ul li a:hover {
            color: var(--accent-primary);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            border-top: 1px solid rgba(0, 137, 117, 0.08);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .footer-bottom-links {
            display: flex;
            gap: 1.5rem;
        }

        .footer-bottom-links a {
            text-decoration: none;
            color: var(--text-muted);
            font-size: 0.85rem;
            transition: color 0.2s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--accent-primary);
        }
        .love{
            color:red;
        }
        .footer-bottom a{
            text-decoration:none;
            color: inherit;
        }
/* Global Components */
.hero-section {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        padding: 4rem 0 6rem;
        margin-bottom: 5rem;
    }

    @media (max-width: 900px) {
        .hero-section {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 2rem;
            padding: 2rem 0 4rem;
        }
    }

    .hero-text h1 {
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.1;
        letter-spacing: -1.5px;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, #0f172a 40%, var(--accent-primary) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero-text p {
        font-size: 1.15rem;
        color: var(--text-muted);
        line-height: 1.6;
        margin-bottom: 2.5rem;
        max-width: 540px;
    }

    @media (max-width: 900px) {
        .hero-text p {
            margin-left: auto;
            margin-right: auto;
        }
    }

    .hero-cta-group {
        display: flex;
        gap: 1.25rem;
    }

    @media (max-width: 900px) {
        .hero-cta-group {
            justify-content: center;
        }
    }

    /* Glowing Mockup Card - Light Mode Overhaul */
    .mockup-container {
        position: relative;
        background: radial-gradient(circle, rgba(0, 137, 117, 0.05) 0%, rgba(0, 0, 0, 0) 70%);
        padding: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .mockup-card {
        background: #ffffff;
        border: 1px solid var(--panel-border);
        border-radius: 20px;
        width: 100%;
        max-width: 480px;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 137, 117, 0.06);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        position: relative;
    }

    .mockup-card::after {
        content: '';
        position: absolute;
        inset: -1px;
        border-radius: 20px;
        background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
        z-index: -1;
        opacity: 0.08;
        transition: opacity 0.3s ease;
    }

    .mockup-card:hover {
        transform: translateY(-4px);
        border-color: var(--card-hover-border);
        box-shadow: 0 15px 35px rgba(0, 137, 117, 0.12);
    }

    .mockup-card:hover::after {
        opacity: 0.15;
    }

    .mockup-header {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 1.5rem;
    }

    .mockup-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #ef4444;
    }

    .mockup-dot:nth-child(2) {
        background-color: #eab308;
    }

    .mockup-dot:nth-child(3) {
        background-color: #22c55e;
    }

    .mockup-line {
        height: 8px;
        background: rgba(0, 137, 117, 0.05);
        border-radius: 4px;
        margin-bottom: 12px;
    }

    .mockup-line.short {
        width: 60%;
    }

    .mockup-line.medium {
        width: 80%;
    }

    .mockup-line.long {
        width: 100%;
    }

    /* ── Shared Section & Card System (matches About page) ── */
    .home-section {
        text-align: center;
        padding: 4rem 0;
    }

    .home-section + .home-section {
        border-top: 1px solid rgba(0, 137, 117, 0.06);
    }

    .home-section-title {
        font-size: 2.25rem;
        font-weight: 800;
        color: var(--text-main);
        margin-bottom: 0.75rem;
    }

    .home-section-subtitle {
        color: var(--text-muted);
        font-size: 1.05rem;
        max-width: 600px;
        margin: 0 auto 2.5rem;
        line-height: 1.6;
    }
/* Global Card Components */
.card-grid {
        display: grid;
        gap: 2rem;
    }

    .card-grid.cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    @media (max-width: 768px) {
        .card-grid.cols-3 {
            grid-template-columns: 1fr;
        }
    }

    .u-card {
        background: #ffffff;
        border: 1px solid var(--panel-border);
        border-radius: 20px;
        padding: 2.25rem 2rem;
        text-align: center;
        box-shadow: 0 4px 20px rgba(0, 137, 117, 0.02);
        transition: all 0.3s ease;
    }

    .u-card:hover {
        border-color: var(--card-hover-border);
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(0, 137, 117, 0.07);
    }

    .u-card-icon { color: var(--accent-primary);
        font-size: 2.5rem;
        line-height: 1;
        margin-bottom: 1rem;
        display: block;
    }

    .u-card h3 {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--accent-primary);
        margin-bottom: 0.75rem;
    }

    .u-card p {
        color: var(--text-muted);
        font-size: 0.92rem;
        line-height: 1.65;
        margin-bottom: 0;
    }

    /* Bullet list variant */
    .u-card ul {
        list-style: none;
        padding: 0;
        margin: 1rem 0 0;
        text-align: left;
    }

    .u-card ul li {
        color: var(--text-muted);
        font-size: 0.88rem;
        line-height: 1.5;
        padding: 0.35rem 0 0.35rem 1.4rem;
        position: relative;
    }

    .u-card ul li::before {
        content: '✦';
        position: absolute;
        left: 0;
        color: var(--accent-primary);
        font-size: 0.7rem;
        top: 0.5rem;
    }
/* Global Page Header (Contact, Pricing, FAQ, Features, About) */
.page-container {
    padding: 2rem 0;
}

.page-header {
    text-align: center;
    margin-bottom: 5rem;
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0f172a 40%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

