:root {
    /* Colors */
    --bg-dark: #0a0e17;
    /* Deep Navy/Black */
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-card-hover: rgba(255, 255, 255, 0.1);
    --primary: #00d4ff;
    /* Electric Blue */
    --primary-hover: #00a8cc;
    --accent: #7000ff;
    /* Purple accent for gradients */
    --text-main: #ffffff;
    --text-muted: #b0b8c6;
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Spacing */
    --container-width: 1200px;
    --section-spacing: 100px;

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

    /* Effects */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.3);
    --glass-blur: blur(10px);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

.process {
    padding: 80px 0;
}

.process-steps {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

/* Mobile: vertical stepper */
.process-step {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    align-items: stretch;
}

.process-rail {
    position: relative;
    display: flex;
    justify-content: center;
}

.process .step-number {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 14px;
    color: #57d2ff;
    background: rgba(10, 18, 30, 0.85);
    border: 1px solid rgba(87, 210, 255, 0.35);
    box-shadow: 0 0 0 3px rgba(87, 210, 255, 0.08);
}

.step-line {
    position: absolute;
    top: 46px;
    bottom: 12px;
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(to bottom,
            rgba(87, 210, 255, 0.45),
            rgba(87, 210, 255, 0));
}

.process-step--last .step-line {
    display: none;
}

/* Ensure your existing .step-card looks good in this layout */
.process .step-card {
    padding: 18px;
    border-radius: 16px;
}

.process .step-card h3 {
    margin-top: 2px;
}

.logo img {
    max-height: 45px;
    width: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-xl {
    padding: 18px 40px;
    font-size: 1.2rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 14, 23, 0.85);
    /* Dark transparent bg */
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    font-size: 0.95rem;
    color: var(--text-muted);
}

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

.nav-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 3px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    /* Offset for fixed nav */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 14, 23, 0.7), rgba(10, 14, 23, 0.95));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeIn Up 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero h1 .break {
    display: block;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 10px;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Services */
.services {
    padding: var(--section-spacing) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 16px;
    transition: 0.3s;
    text-align: left;
}

.service-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

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

/* Audience */
.audience {
    padding: var(--section-spacing) 0;
    background: radial-gradient(circle at top right, rgba(0, 212, 255, 0.05), transparent 60%);
}

.audience-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
}

.audience-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.audience-list li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
}

.audience-list i {
    color: var(--primary);
}

.audience-summary {
    font-size: 1.2rem;
    color: var(--text-main);
    font-weight: 500;
}

/* Why Us */
.why-us {
    padding: var(--section-spacing) 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-card);
    padding: 20px;
    border-radius: 10px;
    border-left: 3px solid var(--primary);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.why-us-footer {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Process Timeline */

/* Process Timeline */
.process {
    padding: var(--section-spacing) 0;
    position: relative;
    overflow: hidden;
}

.timeline-wrapper {
    position: relative;
    margin-top: 60px;
}

.timeline-step {
    position: relative;
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: relative;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--bg-dark);
    border: 2px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 2;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
    margin-top: 25px;
    /* Alignment with card title */
}

/* Vertical Connecting Line (Per step) */
.timeline-step::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 65px;
    bottom: -35px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), rgba(255, 255, 255, 0.1));
    z-index: 0;
}

.timeline-step:last-child::before {
    display: none;
}

.timeline-content {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 25px;
    border-radius: 16px;
    transition: 0.3s;
}

.timeline-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
    margin-top: 0;
    line-height: 1.2;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.timeline-step:hover .timeline-content {
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateX(5px);
    background: var(--bg-card-hover);
}

.process-note {
    text-align: center;
    color: var(--text-muted);
    opacity: 0.8;
    margin-top: 50px;
    font-size: 1.1rem;
}

/* Desktop Timeline (> 900px) */
@media (min-width: 900px) {
    .timeline-wrapper {
        display: flex;
        justify-content: space-between;
        padding-top: 20px;
    }

    .timeline-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1;
        margin-bottom: 0;
        padding: 0 15px;
        gap: 0;
    }

    .timeline-marker {
        margin-top: 0;
        /* Reset mobile alignment */
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 25px;
    }

    /* Disable mobile vertical line */
    .timeline-step::before {
        display: none;
    }

    /* Horizontal Connecting Line */
    .timeline-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 25px;
        left: 50%;

        width: 100%;
        height: 2px;
        background: rgba(255, 255, 255, 0.1);
        z-index: 0;
    }

    .timeline-content {
        width: 100%;
        min-height: 200px;
        /* Uniform height */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .timeline-step:hover .timeline-content {
        transform: translateY(-10px);
    }
}

/* Mobile Adjustments */
@media (max-width: 900px) {
    /* No additional styles needed as mobile is default, but ensuring overrides clean up here */
}

/* About */
.about {
    padding: var(--section-spacing) 0;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.location {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

/* Contact */
.contact {
    padding: var(--section-spacing) 0;
    text-align: center;
}

.contact-card {
    background: linear-gradient(145deg, rgba(20, 30, 48, 0.9), rgba(10, 14, 23, 0.95));
    border: 1px solid var(--glass-border);
    padding: 80px 40px;
    border-radius: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.contact-item i {
    color: var(--primary);
}

/* Testimonials */
/* Core Values */
.values {
    padding: var(--section-spacing) 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 212, 255, 0.02));
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    background: var(--bg-card-hover);
    border-color: rgba(0, 212, 255, 0.3);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.value-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Section (Direct Connect) */
.contact {
    padding: var(--section-spacing) 0;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 50px auto;
}

.contact-action-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Hover Effect: Lift & Glow */
.contact-action-card:hover {
    transform: translateY(-8px);
    background: rgba(16, 20, 35, 0.95);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
}

.action-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
    transition: 0.3s;
}

.contact-action-card:hover .action-icon {
    transform: scale(1.1);
    color: #4df;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
}

.contact-action-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.contact-action-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.action-link {
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.contact-action-card:hover .action-link {
    gap: 12px;
    /* Arrow moves slightly */
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.contact-footer-info {
    margin-top: 50px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-footer-info i {
    color: var(--primary);
    margin-right: 8px;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mobile Responsive */
/* Mobile Responsive */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 3rem;
    }

    .process-timeline {
        flex-direction: column;
        gap: 40px;
        margin-top: 30px;
    }

    .connector {
        transform: rotate(90deg);
        margin: -10px 0;
        /* Tighten up spacing */
        height: 40px;
    }

    .step-number {
        margin: 0 auto 20px;
        /* Reset pull up */
        top: -30px;
        /* Slight pull up relative to card */
        margin-bottom: -10px;
    }

    .step-card {
        padding: 40px 30px 30px;
        min-height: auto;
        margin-top: 20px;
        /* Space for the number */
    }
}

@media (max-width: 768px) {

    .services-grid,
    .testimonials-grid,
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        /* Narrower for mobile */
    }

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

    .hero h1 .break {
        font-size: 1.8rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 14, 23, 0.98);
        /* More opaque */
        width: 100%;
        padding: 30px 0;
        transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid var(--glass-border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .audience-content {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-card {
        padding: 40px 20px;
    }
}

/* Desktop: 4 cards across */
@media (min-width: 900px) {
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .process-rail {
        justify-content: center;
    }

    .step-line {
        display: none;
    }

    .process .step-card {
        min-height: 190px;
    }
}


/* --- Desktop badge positioning fix --- */
@media (min-width: 900px) {
    .process-steps {
        margin-top: 40px;
    }

    .process-step {
        padding-top: 18px;
    }

    .process .step-number {
        margin: 0 auto 12px;
        transform: translateY(10px);
    }
}