:root {
    /* Color Palette - Futuristic Light */
    --bg-dark: #FFFFFF;
    --bg-subtle: #F8FAFC;
    --bg-card: #FFFFFF;

    --text-primary: #0F172A;
    --text-secondary: #475569;

    --accent-purple: #9333EA;
    /* Slightly lighter purple for better contrast */
    --accent-electric: #7C3AED;
    --accent-glow: rgba(124, 58, 237, 0.15);
    /* Soft shadow glow */

    --border-color: #E2E8F0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

    /* Fonts */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed) ease;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

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

/* Utilities */
.text-center {
    text-align: center;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.hidden {
    display: none;
}

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 1.2rem 0;
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--text-primary);
}

.logo .highlight {
    color: var(--accent-purple);
}

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

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--accent-gradient);
    background-size: 200% 200%;
    animation: gradient-move 5s ease infinite;
    color: white;
    box-shadow: 0 4px 15px var(--accent-glow);
    border: none;
}

@keyframes gradient-move {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 243, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    margin-left: 1rem;
}

.btn-secondary:hover {
    border-color: var(--accent-purple);
    background: rgba(191, 64, 191, 0.1);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 180px 0 80px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: radial-gradient(circle at 50% 10%, rgba(124, 58, 237, 0.05), transparent 60%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #1E293B;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-list {
    margin-bottom: 2.5rem;
}

.hero-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-primary);
}

.hero-list i {
    color: var(--accent-electric);
}

.btn-pulse {
    animation: pulse-purple 2s infinite;
}

@keyframes pulse-purple {
    0% {
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(124, 58, 237, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
    }
}

/* Hero Visual - Dashboard Mockup */
.hero-visual {
    position: relative;
}

.visual-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(10px);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
    box-shadow: var(--shadow-lg);
}

.visual-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.dashboard-mockup {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.dash-header {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.red {
    background: #FF5F56;
}

.yellow {
    background: #FFBD2E;
}

.green {
    background: #27C93F;
}

.dash-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-box {
    background: var(--bg-subtle);
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.stat-box span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.stat-box h4 {
    font-size: 1.5rem;
    margin: 5px 0;
    color: var(--text-primary);
}

.stat-box small.green {
    color: #16A34A;
    font-size: 0.8rem;
}

.chart-placeholder {
    grid-column: span 2;
    height: 100px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 5px;
    margin-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.bar {
    width: 100%;
    background: linear-gradient(to top, var(--accent-purple), var(--accent-electric));
    border-radius: 4px 4px 0 0;
    opacity: 0.8;
}

.floating-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    animation: float 3s ease-in-out infinite;
}

.icon-whatsapp {
    top: -20px;
    right: -20px;
    color: #25D366;
    animation-delay: 0s;
}

.icon-linkedin {
    bottom: 40px;
    left: -20px;
    color: #0077B5;
    animation-delay: 1s;
}

.icon-instagram {
    bottom: -20px;
    right: 20px;
    color: #E1306C;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Trust Strip */
.trust-strip-container {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.trust-strip-container p {
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-subtle);
}

::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94A3B8;
}

/* Shared Section Styles */
.section-padding {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-sub {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Problem Section */
.problem {
    background-color: var(--bg-subtle);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    box-shadow: var(--shadow-sm);
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: #FECACA;
    box-shadow: var(--shadow-md);
    /* Reddish tint for problem */
}

.card-icon {
    font-size: 2rem;
    color: #EF4444;
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.bridge-line p {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.bridge-line .highlight {
    color: var(--accent-electric);
    text-shadow: none;
    font-weight: 700;
}

/* Solution Section */
.solution {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card {
    background: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(124, 58, 237, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    border-color: var(--accent-electric);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #F1F5F9;
    line-height: 1;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    z-index: 1;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    z-index: 1;
    position: relative;
}

.feature-list i {
    color: var(--accent-electric);
    margin-top: 4px;
}

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

/* How It Works (Timeline) */
.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}

.timeline-item {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
    padding: 0 10px;
}

.timeline-content {
    background: #FFFFFF;
    padding-top: 20px;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border: 2px solid var(--accent-electric);
    border-radius: 50%;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--accent-electric);
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .timeline::before {
        width: 2px;
        height: 100%;
        left: 30px;
        top: 0;
    }

    .timeline-item {
        text-align: left;
        display: flex;
        gap: 20px;
    }

    .step-num {
        margin: 0;
        flex-shrink: 0;
    }
}

/* Use Cases */
.use-cases {
    background: #111;
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    /* Ensure uniform height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.use-case-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--accent-purple);
}

.use-case-card h3 {
    color: var(--accent-purple);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    line-height: 1.3;
}

.use-case-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Responsive Grid for Use Cases */
@media (max-width: 1200px) {
    .use-case-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .use-case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .use-case-grid {
        grid-template-columns: 1fr;
    }
}

/* Comparison */
.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.comp-col {
    padding: 3rem;
    border-radius: 20px;
}

.comp-col.others {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed var(--border-color);
    opacity: 0.7;
}

.comp-col.us {
    background: linear-gradient(145deg, rgba(143, 0, 255, 0.1), rgba(10, 10, 10, 0.8));
    border: 1px solid var(--accent-purple);
    box-shadow: 0 0 30px rgba(143, 0, 255, 0.15);
    transform: scale(1.05);
}

.comp-col h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.comp-col.us h3 {
    color: var(--accent-purple);
}

.comp-col ul li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
}

.comp-col.others i {
    color: #ff5f56;
}

.comp-col.us i {
    color: #27c93f;
}

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

    .comp-col.us {
        transform: scale(1);
    }
}

/* CTA / Contact Section */
.cta-section {
    background: radial-gradient(circle at 10% 50%, rgba(143, 0, 255, 0.1), transparent 50%);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

/* Google Form Style */
.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    color: #202124;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.form-header {
    padding: 24px;
    border-bottom: 1px solid #dadce0;
    position: relative;
    background: #fff;
}

.form-strip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--accent-purple);
}

.form-header h3 {
    font-family: 'Google Sans', Roboto, Arial, sans-serif;
    font-size: 20pt;
    font-weight: 400;
    line-height: 135%;
    color: #202124;
    margin-bottom: 12px;
}

.form-header p {
    font-family: Roboto, Arial, sans-serif;
    font-size: 11pt;
    font-weight: 400;
    letter-spacing: .2px;
    line-height: 20px;
    color: #202124;
}

.contact-form {
    padding: 24px;
    background: #fff;
}

.form-group {
    margin-bottom: 24px;
    background: #fff;
    border: 1px solid #dadce0;
    border-radius: 8px;
    padding: 24px;
}

.form-group:focus-within {
    border-left: 5px solid #4285f4;
}

.form-group label {
    display: block;
    font-family: Roboto, Arial, sans-serif;
    font-size: 11pt;
    font-weight: 500;
    letter-spacing: .1px;
    line-height: 24px;
    color: #202124;
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #dadce0;
    /* Google uses underline style often, but inside boxes we can keep it clean or use the classic Material input style. Let's stick to the box inputs for easier styling */
    outline: none;
    font-size: 14px;
    padding: 5px 0;
    transition: border-bottom-color 0.2s;
    background: transparent;
    color: #202124;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom: 2px solid var(--accent-purple);
}

.contact-form button {
    background: var(--accent-purple);
    color: #fff;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: .25px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-form button:hover {
    box-shadow: 0 1px 1px 0 rgba(66, 133, 244, 0.45), 0 1px 3px 1px rgba(66, 133, 244, 0.3);
    background: var(--accent-electric);
}

/* Footer */
.footer {
    background: #050505;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col p {
    color: var(--text-secondary);
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--accent-purple);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: #0A0A0A;
        border-left: 1px solid var(--border-color);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        margin-bottom: 2rem;
    }

    .header-container {
        padding: 0 1rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-list {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .trust-strip-container {
        margin-top: 2rem;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

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

    .section-padding {
        padding: 60px 0;
    }

    .comp-col {
        padding: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

/* Navigation Container Fix */
.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* About Section */
.about-section {
    background: var(--bg-subtle);
    border-top: 1px solid var(--border-color);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.about-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.about-card:hover {
    border-color: var(--accent-electric);
    background: #FFFFFF;
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.about-card .text-xs {
    font-size: 0.9rem;
    color: var(--accent-electric);
    font-weight: 500;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-footer h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.about-footer p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}


/* Services Page Styles */
.services-library {
    background: var(--bg-dark);
    min-height: 100vh;
    padding-top: 140px;
    /* Account for fixed header */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.nav-links a.active {
    color: var(--accent-purple);
    font-weight: 600;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Card Image */
.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin-bottom: 20px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Light Theme Overrides for remaining components */
.use-cases {
    background-color: var(--bg-subtle);
}

.use-case-card {
    background: #FFFFFF;
    border-color: var(--border-color);
    color: var(--text-primary);
}

.use-case-card:hover {
    background: #FFFFFF;
    box-shadow: var(--shadow-md);
    border-color: var(--accent-electric);
}

.use-case-card h3 {
    color: var(--text-primary);
}

.comparison-table .comp-col.others {
    background: var(--bg-subtle);
    border: 1px dashed var(--border-color);
    opacity: 1;
}

.comparison-table .comp-col.us {
    background: white;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--accent-electric);
    transform: scale(1.05);
}

.footer {
    background: #F8FAFC;
    border-top: 1px solid var(--border-color);
}

.form-header,
.contact-form,
.form-group {
    background: #FFFFFF;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    color: var(--text-primary);
}

.social-links a {
    color: var(--text-secondary);
    background: var(--bg-subtle);
}

.social-links a:hover {
    color: white;
    background: var(--accent-electric);
}

.services-library {
    background: var(--bg-subtle);
}

.service-card {
    background: #FFFFFF;
}

.service-card:hover {
    background: #FFFFFF;
    box-shadow: var(--shadow-md);
}

/* Navbar mobile text color fix */
@media (max-width: 768px) {
    .nav {
        background: #FFFFFF;
    }
}

/* Neon Overrides for Cards */
.feature-card:hover,
.service-card:hover,
.about-card:hover,
.use-case-card:hover {
    border-color: transparent;
    border-image: var(--accent-gradient) 1;
    box-shadow: 0 10px 40px rgba(0, 243, 255, 0.15);
    background: linear-gradient(#fff, #fff) padding-box,
        var(--accent-gradient) border-box;
    border-radius: 20px;
    border: 2px solid transparent;
    /* Required for border-image trick */
}

/* Specific Neon Accents */
.hero-list i {
    color: var(--neon-green);
    text-shadow: 0 0 5px rgba(57, 255, 20, 0.4);
}

.card-icon {
    color: var(--neon-orange);
    text-shadow: 0 0 5px rgba(255, 95, 31, 0.4);
}

.feature-list i {
    color: var(--neon-blue);
}

.step-num {
    border-color: var(--neon-pink);
    color: var(--neon-pink);
    box-shadow: 0 0 10px rgba(255, 16, 240, 0.3);
}

/* Trust Strip Neon */
.trust-strip-container {
    border-top: 1px solid var(--border-color);
    position: relative;
}

.trust-strip-container::after {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 30%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
    animation: scanline 4s linear infinite;
}

@keyframes scanline {
    0% {
        left: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Neon Palette Variables - Appended */
:root {
    --neon-pink: #FF10F0;
    --neon-green: #39FF14;
    --neon-yellow: #CCFF00;
    --neon-orange: #FF5F1F;
    --neon-blue: #00F3FF;
    --neon-purple: #B026FF;

    --accent-gradient: linear-gradient(135deg, var(--neon-blue), var(--accent-electric), var(--neon-pink));
}

/* Header Tagline */
.header-tagline {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 1rem;
    letter-spacing: 0.5px;
}

@media (max-width: 991px) {
    .header-tagline {
        display: none;
    }
}

/* Automation CTA Section */
.automation-cta {
    padding: 60px 0;
    background: var(--bg-subtle);
    border-top: 1px solid var(--border-color);
}

.automation-cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.automation-cta .btn-primary {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}



/* Cursor Ripple Effect */
.cursor-ripple {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    background: radial-gradient(circle, rgba(255, 60, 0, 0.6) 0%, rgba(176, 38, 255, 0.5) 40%, rgba(255, 16, 240, 0) 70%);
    /* Neon Red-Orange + Purple */
    /* mix-blend-mode removed for light theme visibility */
    z-index: 9999;
    animation: ripple-expand 0.8s linear forwards;
    filter: blur(1px);
}

@keyframes ripple-expand {
    0% {
        width: 10px;
        height: 10px;
        opacity: 0.8;
    }

    100% {
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}

/* Google Form Container */
.google-form-container {
    background: transparent;
    box-shadow: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
    overflow-y: auto;
    /* allow scrolling if needed */
    -webkit-overflow-scrolling: touch;
    /* smooth scrolling on iOS */
}

.google-form-container iframe {
    width: 100%;
    display: block;
    border-radius: 12px;
    background: #FFFFFF;
    /* Ensure white background for the iframe to match theme */
    box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
    .google-form-container iframe {
        height: 1100px;
        /* Increase height for mobile stacking */
    }
}

/* 3D Neon Gradient Hover Effect */
.card-3d-neon {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    /* Prepare for gradient border */
    background-clip: padding-box;
    /* Important for border gradient */
}

.card-3d-neon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-orange), var(--neon-purple));
    background-size: 300% 300%;
    z-index: -1;
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-3d-neon:hover {
    transform: translateY(-8px) perspective(1000px) rotateX(2deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-3d-neon:hover::before {
    opacity: 1;
    animation: neon-gradient-move 3s ease infinite;
}

@keyframes neon-gradient-move {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Header Tagline Gradient Style */
.header-tagline-gradient {
    font-weight: 800;
    background: linear-gradient(90deg, #7F00FF 0%, #E100FF 100%);
    /* Purple to Pink Gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    filter: drop-shadow(0 0 2px rgba(225, 0, 255, 0.3));
}

/* Updated Separate Neon Card Effects */
.card-3d-neon {
    /* Reset previous background clip if needed or keep base */
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

/* Remove old pseudo-element gradient if it conflicts, or override it */
.card-3d-neon::before {
    display: none;
    /* Disable the moving gradient mix */
}

/* Card 1 & 4 (Pink Cycle) */
.service-list-grid .service-detail-card:nth-child(3n+1):hover {
    border-color: var(--neon-pink);
    box-shadow: 0 10px 25px rgba(255, 16, 240, 0.15);
    /* Lighter shadow */
}

.service-list-grid .service-detail-card:nth-child(3n+1):hover h3,
.service-list-grid .service-detail-card:nth-child(3n+1):hover h3 i {
    color: var(--neon-pink);
    text-shadow: 0 0 1px rgba(255, 16, 240, 0.3);
}

/* Card 2 (Orange Cycle) */
.service-list-grid .service-detail-card:nth-child(3n+2):hover {
    border-color: var(--neon-orange);
    box-shadow: 0 10px 25px rgba(255, 95, 31, 0.15);
}

.service-list-grid .service-detail-card:nth-child(3n+2):hover h3,
.service-list-grid .service-detail-card:nth-child(3n+2):hover h3 i {
    color: var(--neon-orange);
    text-shadow: 0 0 1px rgba(255, 95, 31, 0.3);
}

/* Card 3 (Purple Cycle) */
.service-list-grid .service-detail-card:nth-child(3n+3):hover {
    border-color: var(--neon-purple);
    box-shadow: 0 10px 25px rgba(176, 38, 255, 0.15);
}

.service-list-grid .service-detail-card:nth-child(3n+3):hover h3,
.service-list-grid .service-detail-card:nth-child(3n+3):hover h3 i {
    color: var(--neon-purple);
    text-shadow: 0 0 1px rgba(176, 38, 255, 0.3);
}

/* Hover text color update for list items */
.card-3d-neon:hover ul li {
    color: var(--text-primary);
    /* Darker text on hover for contrast */
}

.card-3d-neon:hover ul li::before {
    /* Match bullet to the card's theme color? */
    /* We can let it inherit or keep generic electric blue. 
       Let's try to match it effectively. */
}

/* Specific bullet colors on hover */
.service-list-grid .service-detail-card:nth-child(3n+1):hover ul li::before {
    color: var(--neon-pink);
}

.service-list-grid .service-detail-card:nth-child(3n+2):hover ul li::before {
    color: var(--neon-orange);
}

.service-list-grid .service-detail-card:nth-child(3n+3):hover ul li::before {
    color: var(--neon-purple);
}


/* Updated Service Card Grid for Services Page */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Force 4 columns */
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Apply 3D Neon logic to .service-card */
.service-card {
    background: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    /* Base border */
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Neon Cycling for Service Cards */
/* Card 1, 4, 7... (Pink Cycle) */
.services-grid .service-card:nth-child(3n+1):hover {
    border-color: var(--neon-pink);
    box-shadow: 0 10px 25px rgba(255, 16, 240, 0.15);
    transform: translateY(-8px);
}

.services-grid .service-card:nth-child(3n+1):hover h3 {
    color: var(--neon-pink);
    text-shadow: 0 0 1px rgba(255, 16, 240, 0.3);
}

/* Card 2, 5, 8... (Orange Cycle) */
.services-grid .service-card:nth-child(3n+2):hover {
    border-color: var(--neon-orange);
    box-shadow: 0 10px 25px rgba(255, 95, 31, 0.15);
    transform: translateY(-8px);
}

.services-grid .service-card:nth-child(3n+2):hover h3 {
    color: var(--neon-orange);
    text-shadow: 0 0 1px rgba(255, 95, 31, 0.3);
}

/* Card 3, 6, 9... (Purple Cycle) */
.services-grid .service-card:nth-child(3n+3):hover {
    border-color: var(--neon-purple);
    box-shadow: 0 10px 25px rgba(176, 38, 255, 0.15);
    transform: translateY(-8px);
}

.services-grid .service-card:nth-child(3n+3):hover h3 {
    color: var(--neon-purple);
    text-shadow: 0 0 1px rgba(176, 38, 255, 0.3);
}