/* ============================================================
   CASCADE CREATIONS — LOGO BLUE / CYAN / ORANGE THEME
   ============================================================ */

:root {
    /* === LOGO PALETTE === */
    --cyan: #00b4d8;
    --cyan-light: #48cae4;
    --cyan-bright: #90e0ef;
    --teal: #0077b6;
    --teal-dark: #023e8a;
    --orange: #ff6b2b;
    --orange-light: #ff8f5e;
    --orange-dark: #e04e10;

    /* === DARK THEME BASES === */
    --bg-deep: #03050a;
    --bg-mid: #060d16;
    --bg-surface: #0a1420;
    --bg-card: rgba(0, 30, 55, 0.65);
    --bg-card-hov: rgba(0, 40, 75, 0.85);

    /* === BORDERS === */
    --border: rgba(0, 180, 216, 0.12);
    --border-bright: rgba(0, 180, 216, 0.38);

    /* === TEXT === */
    --text-primary: #ffffff;
    --text-secondary: rgba(180, 220, 240, 0.78);
    --text-muted: rgba(120, 170, 200, 0.5);

    /* === GLOW === */
    --glow-cyan: 0 0 40px rgba(0, 180, 216, 0.22);
    --glow-orange: 0 0 40px rgba(255, 107, 43, 0.25);

    /* === RADIUS === */
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --radius-full: 9999px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

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

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

section {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}


/* =====================================================
   LOADER — CINEMATIC LOGO REVEAL (Optimized)
   ===================================================== */
.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--bg-deep);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.9s ease, visibility 0.9s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Optimized background animation - use transform instead of background-position */
.loading-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 180, 216, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 180, 216, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: translateZ(0);
    animation: gridSlide 4s linear infinite;
    will-change: transform;
}

@keyframes gridSlide {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(60px, 60px);
    }
}

.loader-wrap {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

/* SVG logo ring animation - optimized */
.loader-logo {
    position: relative;
    width: 120px;
    height: 120px;
}

.loader-logo svg {
    width: 100%;
    height: 100%;
    animation: logoSpin 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(0, 180, 216, 0.6));
    will-change: transform;
}

@keyframes logoSpin {
    0% {
        transform: rotate(0deg) scale(0.9);
        opacity: 0.7;
    }

    50% {
        transform: rotate(180deg) scale(1.05);
        opacity: 1;
    }

    100% {
        transform: rotate(360deg) scale(0.9);
        opacity: 0.7;
    }
}

/* Orbiting dot - optimized */
.loader-orbit {
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 180, 216, 0.3);
    animation: orbitSpin 2s linear infinite;
    will-change: transform;
}

.loader-orbit::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 12px var(--orange);
}

@keyframes orbitSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Brand text */
.loader-brand {
    text-align: center;
}

.loader-name {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--cyan-bright), var(--cyan), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
}

.loader-tagline {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 0.4rem;
}

/* Progress bar */
.loader-bar-wrap {
    width: 240px;
    height: 2px;
    background: rgba(0, 180, 216, 0.12);
    border-radius: 99px;
    overflow: hidden;
}

.loader-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--teal), var(--cyan), var(--orange));
    border-radius: 99px;
    width: 0%;
    /* JS drives width — transition makes each step smooth */
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px var(--cyan);
    will-change: width;
}

.loader-pct {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
    text-align: center;
}


/* =====================================================
   NAVIGATION (Optimized)
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent !important;
    padding: 0.9rem 1.5rem;
    z-index: 1000;
    transition: all 0.4s ease;
    border-bottom: 1px solid transparent;
    will-change: transform, background;
}

.navbar.scrolled {
    background: rgba(3, 5, 10, 0.92) !important;
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    max-width: 1300px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.2rem 0;
}

.navbar-logo {
    height: 36px;
    max-width: 36px;
    border-radius: 50%;
    object-fit: contain;
    border: 1px solid var(--border);
}

.navlogoname {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.02em;
    background: linear-gradient(90deg, var(--cyan-light), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.navbar-nav {
    align-items: center;
    gap: 0;
}

.nav-item {
    margin: 0;
}

.nav-link {
    font-weight: 400;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6) !important;
    padding: 0.45rem 0.9rem !important;
    border-radius: var(--radius-full);
    transition: all 0.25s ease;
}

.nav-link:hover {
    color: white !important;
    background: rgba(0, 180, 216, 0.1);
}

.nav-link.active {
    color: var(--cyan-light) !important;
}

.nav-cta {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark)) !important;
    color: white !important;
    padding: 0.42rem 1.2rem !important;
    border-radius: var(--radius-full);
    font-weight: 600;
    margin-left: 0.5rem;
    border: none !important;
    box-shadow: 0 4px 16px rgba(255, 107, 43, 0.35);
    transition: all 0.25s ease;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(255, 107, 43, 0.5);
    color: white !important;
}

.navbar-toggler {
    border: 1px solid rgba(0, 180, 216, 0.3);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(0, 180, 216, 0.07);
    padding: 0.35rem;
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,180,216,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width:991px) {
    .navbar-collapse {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(3, 5, 10, 0.97);
        backdrop-filter: blur(22px);
        border-bottom: 1px solid var(--border);
        padding: 1.25rem 1rem;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    }

    .navbar-nav {
        gap: 0.25rem;
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
        font-size: 0.95rem;
    }

    .nav-cta {
        margin: 0.5rem 0 0;
        display: flex;
        justify-content: center;
    }
}


/* =====================================================
   HERO SECTION — MODERN WEB DEV LAYOUT
   ===================================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    overflow: hidden;
    background: var(--bg-deep);
    display: flex;
    flex-direction: column;
}

#heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
    will-change: contents;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 80px 52px 80px;
    box-sizing: border-box;
}

/* ── Bouncing chevron at bottom of hero ── */
.hero-chevron {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    animation: heroBounce 2s ease-in-out infinite;
    cursor: pointer;
    text-decoration: none;
    color: var(--cyan-light);
    transition: opacity 0.3s ease;
}

.hero-chevron:hover {
    opacity: 1;
    color: var(--cyan);
}

.hero-chevron i {
    font-size: 1.4rem;
    display: block;
    line-height: 1;
}

.hero-chevron i:nth-child(2) {
    opacity: 0.45;
    margin-top: -0.5rem;
}

@keyframes heroBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(10px); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* LEFT SIDE */
.hero-left {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 180, 216, 0.12);
    border: 1px solid rgba(0, 180, 216, 0.25);
    border-radius: var(--radius-full);
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--cyan-light);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.gradient-text {
    background: linear-gradient(135deg, var(--cyan-bright), var(--cyan), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 550px;
}

/* HERO BUTTONS */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white;
    box-shadow: 0 4px 20px rgba(255, 107, 43, 0.35);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 43, 0.5);
    color: white;
}

.btn-hero-secondary {
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.3);
    color: var(--cyan-light);
}

.btn-hero-secondary:hover {
    background: rgba(0, 180, 216, 0.2);
    border-color: rgba(0, 180, 216, 0.5);
    transform: translateY(-2px);
    color: white;
}

/* HERO STATS */
.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat .stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cyan-bright), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-stat .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* RIGHT SIDE - CARDS */
.hero-right {
    position: relative;
}

.hero-card-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

.hero-info-card {
    background: rgba(0, 30, 55, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 180, 216, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.4s ease;
   
    position: relative;
    overflow: hidden;
}

.hero-info-card:nth-child(1) {
    animation-delay: 0s;
    transform: translateX(0);
}

.hero-info-card:nth-child(2) {
    animation-delay: 1s;
    transform: translateX(20px);
}

.hero-info-card:nth-child(3) {
    animation-delay: 2s;
    transform: translateX(40px);
}


.hero-info-card:hover {
    border-color: rgba(0, 180, 216, 0.5);
    transform: translateY(-5px) translateX(15px) !important;
    box-shadow: var(--glow-cyan);
}

.hero-info-card .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.2), rgba(0, 119, 182, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--cyan);
}

.hero-info-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.hero-info-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-left {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-right {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .hero-info-card:nth-child(1),
    .hero-info-card:nth-child(2),
    .hero-info-card:nth-child(3) {
        transform: translateX(0);
    }
    
    @keyframes float {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }
}

@media (max-width: 768px) {
    .hero-overlay {
        padding: 100px 24px 40px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .hero-stat .stat-number {
        font-size: 1.5rem;
    }

    .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 180, 216, 0.12);
    border: 1px solid rgba(0, 180, 216, 0.25);
    border-radius: var(--radius-full);
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--cyan-light);
}

.badge-logo {
    width: 20px;
    height: 0px;
    border-radius: 50%;
    
    border: 1px solid rgba(0, 180, 216, 0.3);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}
}

/* =====================================================
   SECTION HEADER
   ===================================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cyan);
    background: rgba(0, 180, 216, 0.08);
    border: 1px solid rgba(0, 180, 216, 0.22);
    border-radius: var(--radius-full);
    padding: 0.3rem 1rem;
    margin-bottom: 1.2rem;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    max-width: 680px;
    margin: 0 auto 1rem;
    color: var(--text-primary);
    line-height: 1.15;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
}


/* =====================================================
   SECTION BACKGROUNDS
   ===================================================== */
/* ===== LIGHT SECTIONS: About + Process ===== */
.about-section,
.process-section {
    background: #ffffff;
    color: #0d1117;
}

/* Override text colours for light sections */
.about-section h2,
.about-section h3,
.about-section h4,
.process-section h2,
.process-section h3,
.process-section h4 {
    color: #0d1117;
}

.about-section p,
.process-section p,
.about-section .section-description,
.process-section .section-description {
    color: #4a5568;
}

.about-section .section-subtitle,
.process-section .section-subtitle {
    color: var(--teal);
    background: rgba(0, 119, 182, 0.08);
    border-color: rgba(0, 119, 182, 0.3);
}

.about-section .section-title,
.process-section .section-title {
    color: #0d1117;
}

/* Light stat bar */
.about-section .about-stats {
    background: #f0f7ff;
    border-color: rgba(0, 119, 182, 0.15);
}

.about-section .about-stat {
    background: #ffffff;
}

.about-section .stat-label {
    color: #64748b;
}

/* Light feature cards */
.about-section .feature {
    background: #f8fbff;
    border-color: rgba(0, 180, 216, 0.18);
}

.about-section .feature:hover {
    background: #eef7ff;
    border-color: rgba(0, 180, 216, 0.45);
}

.about-section .feature h4 {
    color: #0d1117;
}

.about-section .feature p {
    color: #4a5568;
}

/* Light tech stack */
.about-section .tech-stack {
    background: #f4f8fc;
    border-color: rgba(0, 119, 182, 0.15);
}

.about-section .tech-item span {
    color: #4a5568;
}

.about-section .tech-item:hover {
    background: rgba(0, 180, 216, 0.06);
    border-color: rgba(0, 180, 216, 0.2);
}

/* Light process steps */
.process-section .process-step {
    background: #f8fbff;
    border-color: rgba(0, 180, 216, 0.18);
}

.process-section .process-step:hover {
    background: #eef7ff;
    border-color: rgba(0, 180, 216, 0.45);
}

.process-section .step-content h3 {
    color: #0d1117;
}

.process-section .step-content p {
    color: #4a5568;
}

.process-section .process-timeline::before {
    opacity: 0.35;
}

/* ===== DARK SECTIONS: Services + Contact ===== */
.services-section {
    background: var(--bg-surface);
}

.contact-section {
    background: #ffffff;
}

/* Thin top rule on dark sections only */
.services-section::after,
.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--cyan) 40%, var(--orange) 60%, transparent 100%);
    opacity: 0.35;
    z-index: 1;
}

.about-section::after,
.process-section::after {
    display: none;
}


/* =====================================================
   REVOLUTION SLIDER — ABOUT SECTION (scroll-reveal panels)
   ===================================================== */
.about-section {
    overflow: visible;
}

/* Animated stat counters bar */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}

.about-stat {
    background: var(--bg-card);
    padding: 1.75rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: background 0.3s ease;
}

.about-stat:hover {
    background: linear-gradient(135deg, var(--cyan-bright), var(--cyan));
    
}

.about-stat:hover .stat-number,
.about-stat:hover .stat-label {
    color: white;
    -webkit-text-fill-color: white; /* THIS is the key fix */
    background: none; /* remove gradient text */
    
}

.stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--cyan-bright), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 0.4rem;
    display: block;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    background: linear-gradient(120deg, var(--cyan-bright), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-features {
    margin-top: 1.5rem;
}

.feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature:hover {
    border-color: var(--border-bright);
    background: var(--bg-card-hov);
    transform: translateX(6px);
    box-shadow: var(--glow-cyan);
}

.feature i {
    font-size: 1.5rem;
    color: var(--cyan);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.feature h4 {
    margin-bottom: 0.2rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.feature p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

.tech-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: var(--bg-card);
    backdrop-filter: blur(12px);
}

.tech-item {
    text-align: center;
    padding: 1rem 0.5rem;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: all 0.3s ease;
    cursor: default;
}

.tech-item:hover {
    background: rgba(0, 180, 216, 0.07);
    border-color: var(--border);
    transform: translateY(-4px);
    box-shadow: var(--glow-cyan);
}

.tech-item i {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.tech-item span {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.tech-item .fa-html5 {
    color: #E34F26;
}

.tech-item .fa-css3-alt {
    color: #1572B6;
}

.tech-item .fa-js {
    color: #F7DF1E;
}

.tech-item .fa-react {
    color: #61DAFB;
}

.tech-item .fa-node-js {
    color: #8CC84B;
}

.tech-item .fa-database {
    color: var(--cyan);
}

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

    .tech-stack {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}


/* =====================================================
   SERVICES — FLIP CARDS (like screenshot)
   ===================================================== */
.services-section {
    position: relative;
}

.services-section .scan-line {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.03), transparent);
    animation: scanPass 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
    will-change: left;
}

@keyframes scanPass {
    0% {
        left: -60%;
    }

    100% {
        left: 120%;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

/* Ambient glow behind the grid */
.services-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.055) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* ── Flip Card Container ── */
.service-flip-card {
    background-color: transparent;
    height: 420px;
    perspective: 1600px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.72s cubic-bezier(0.35, 0.1, 0.15, 1);
    transform-style: preserve-3d;
    border-radius: var(--radius-lg);
}

.service-flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* ── Front & Back shared ── */
.flip-front,
.flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    box-sizing: border-box;
    overflow: hidden;
}

/* ── FRONT: image with bottom-anchored text ── */
.flip-front {
    padding: 0;
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 8px 40px rgba(0,0,0,0.35);
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.service-flip-card:hover .flip-front {
    box-shadow: 0 16px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(0, 180, 216, 0.25);
    border-color: rgba(0, 180, 216, 0.28);
}

/* Content floats at bottom of the front card */
.flip-front-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem 2rem 1.75rem;
    background: linear-gradient(to top,
        rgba(2, 8, 18, 0.96) 0%,
        rgba(2, 8, 18, 0.75) 60%,
        transparent 100%);
}


/* Icon — refined circular treatment */
.flip-front .service-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: rgba(0, 180, 216, 0.12);
    border: 1px solid rgba(0, 180, 216, 0.4);
    backdrop-filter: blur(8px);
    transition: all 0.35s ease;
    box-shadow: 0 0 0 0 rgba(0, 180, 216, 0);
}

.flip-front .service-icon i {
    font-size: 1.4rem;
    color: var(--cyan-light);
}

.service-flip-card:hover .flip-front .service-icon {
    background: rgba(0, 180, 216, 0.22);
    border-color: rgba(0, 180, 216, 0.7);
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.3);
    transform: translateY(-2px);
}

.flip-front h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.4rem;
    color: #ffffff;
    text-align: left;
}

.flip-front p {
    font-size: 0.855rem;
    color: rgba(180, 220, 240, 0.75);
    margin-bottom: 0.75rem;
    line-height: 1.55;
    text-align: left;
}

/* Refined hint — minimal pill with chevron */
.flip-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--cyan-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.25);
    border-radius: var(--radius-full);
    padding: 0.25rem 0.75rem 0.25rem 0.6rem;
}

.flip-hint::after {
    content: '→';
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}

.service-flip-card:hover .flip-hint {
    opacity: 1;
    transform: translateY(0);
}

.service-flip-card:hover .flip-hint::after {
    transform: translateX(3px);
}

/* ── BACK SIDE ── */
.flip-back {
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    transform: rotateY(180deg);
    border: 1px solid rgba(0, 180, 216, 0.18);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

/* Blur overlay (already in HTML) ensures bg is frosted */
.flip-back-blur-overlay {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: rgba(2, 10, 22, 0.82);
    z-index: 0;
}

.flip-back-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    width: 100%;
    padding: 2.25rem 2rem;
    box-sizing: border-box;
}

/* Back: service name */
.flip-back-content h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 1.4rem;
    color: #ffffff;
    text-align: left;
    width: 100%;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 180, 216, 0.15);
}

/* Feature list */
.flip-back-content .back-features {
    list-style: none;
    width: 100%;
    margin: 0 0 1.5rem;
    padding: 0;
}

.flip-back-content .back-features li {
    font-size: 0.855rem;
    font-weight: 400;
    color: rgba(200, 230, 245, 0.85);
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.flip-back-content .back-features li:last-child {
    border-bottom: none;
}

/* Replace icon with a slim accent dash */
.flip-back-content .back-features li i {
    color: var(--cyan);
    font-size: 0.6rem;
    width: 14px;
    flex-shrink: 0;
    opacity: 0.9;
}

/* CTA button — wider, more premium */
.flip-back-content .flip-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.7rem 1.75rem;
    border-radius: var(--radius-full);
    margin-top: 0.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 107, 43, 0.3);
    text-decoration: none;
    width: 100%;
    justify-content: center;
}

.flip-back-content .flip-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 107, 43, 0.5);
    color: white;
}

/* Responsive flip cards */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .service-flip-card {
        height: 400px;
    }

    .flip-front-content {
        padding: 1.5rem 1.5rem 1.5rem;
    }

    .flip-back-content {
        padding: 1.75rem 1.5rem;
    }
}

/* =====================================================
   CTA SECTION — PARALLAX IMAGE (replaces canvas waves)
   ===================================================== */
.cta-section.cta-parallax {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    text-align: center;
}

/* The parallax image layer — moves slower than scroll via JS */
.cta-parallax-img {
    position: absolute;
    inset: -60px 0;           /* extra height top+bottom so parallax has room to shift */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* CSS-only parallax for supporting browsers */
    will-change: transform;
    transition: transform 0.05s linear;
    z-index: 0;
}

/* Rich dark overlay: deep navy-black gradient so text is always legible */
.cta-parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(209, 207, 207, 0.626) 0%,
        rgba(9, 9, 9, 0.715) 50%,
        rgba(2, 5, 16, 0.85) 100%
    );
    z-index: 1;
}

/* Subtle cyan vignette for brand continuity */
.cta-parallax-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(0, 180, 216, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 107, 43, 0.08) 0%, transparent 55%);
}

/* Content sits above both layers */
.cta-section.cta-parallax .container {
    position: relative;
    z-index: 2;
}

/* CTA text colours */
.cta-section.cta-parallax h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #ffffff !important;
    margin-bottom: 1.25rem;
}

.cta-section.cta-parallax p {
    font-size: 1.05rem;
    color: rgba(180, 220, 240, 0.85) !important;
    margin-bottom: 2.5rem;
}

.cta-section.cta-parallax .cta-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Mobile: background-attachment: fixed breaks on iOS — fall back to cover */
@media (max-width: 768px) {
    .cta-parallax-img {
        background-attachment: scroll;
        inset: 0;
    }
}

/* Keep parallax-bg/overlay hidden (legacy, unused) */
.parallax-bg,
.parallax-overlay {
    display: none;
}

.bounce-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--text-primary);
    color: var(--text-primary);
    font-size: 1.1rem;
    animation: bounceDown 1.8s ease-in-out infinite;
    transition: all 0.3s ease;
    will-change: transform;
}

.bounce-chevron:hover {
    background: rgba(0, 180, 216, 0.15);
    color: var(--cyan);
    border: 1px solid rgba(0, 180, 216, 0.15);
    box-shadow: 0 0 8px rgba(0, 180, 216, 0.3);
}

@keyframes bounceDown {

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

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


/* =====================================================
   PROCESS — TIMELINE WITH ANIMATED CONNECTOR
   ===================================================== */
.process-timeline {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding-left: 20px;
}

/* Vertical glowing line */
.process-timeline::before {
    content: '';
    position: absolute;
    left: 44px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--cyan) 15%, var(--teal) 50%, var(--orange) 85%, transparent);
    opacity: 0.5;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    padding: 1.75rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    will-change: transform, border-color;
}

/* Step dot on timeline */
.process-step::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 12px var(--cyan);
    border: 2px solid var(--bg-mid);
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--border-bright);
    background: var(--bg-card-hov);
    transform: translateX(8px);
    box-shadow: var(--glow-cyan);
}

.process-step:hover::before {
    background: var(--orange);
    box-shadow: 0 0 12px var(--orange);
    transform: translateY(-50%) scale(1.4);
}

.step-number {
    font-family: 'Syne', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--cyan-bright), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
    min-width: 52px;
}

.step-content h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.step-content p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width:768px) {
    .process-step {
        flex-direction: column;
        gap: 0.75rem;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step::before {
        display: none;
    }
}


/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    padding: 0.85rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn-large {
    padding: 1rem 2.2rem;
    font-size: 1rem;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.12) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan), var(--teal));
    color: white;
    box-shadow: 0 4px 20px rgba(0, 180, 216, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 180, 216, 0.6);
    color: white;
}

.btn-outline {
    background: rgba(0, 180, 216, 0.07);
    color: var(--cyan-light);
    border: 1px solid var(--border-bright);
}

.btn-outline:hover {
    background: rgba(0, 180, 216, 0.15);
    border-color: var(--cyan);
    color: white;
    transform: translateY(-2px);
}

/* Orange CTA variant */
.btn-orange {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white;
    box-shadow: 0 4px 20px rgba(255, 107, 43, 0.4);
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 107, 43, 0.6);
    color: white;
}


/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.contact-form {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

/* Corner glow on form */
.contact-form::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(0, 180, 216, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan);
    background: rgba(0, 180, 216, 0.07);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.12);
}

.form-group textarea {
    resize: vertical;
    border-radius: var(--radius-md);
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    margin-bottom: 0.75rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--cyan), var(--orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover {
    border-color: var(--border-bright);
    background: var(--bg-card-hov);
    box-shadow: var(--glow-cyan);
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-item i {
    font-size: 1.4rem;
    color: var(--cyan);
    flex-shrink: 0;
    margin-top: 0.1rem;
    width: 24px;
    text-align: center;
}

.contact-item h4 {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.contact-item a {
    color: var(--cyan);
}

.contact-item a:hover {
    color: var(--cyan-bright);
}

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

    .contact-form {
        padding: 1.75rem;
    }
}


/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: #030810;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

/* Cyan-to-orange gradient top rule */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--cyan), var(--orange));
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    width: 44px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
}

.footer-brand p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 260px;
}

.footer h4 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

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

.footer-links li,
.footer-services li {
    margin-bottom: 0.6rem;
}

.footer-links a,
.footer-services a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--cyan);
    padding-left: 4px;
}

.footer-newsletter p {
    font-size: 0.84rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.footer-newsletter input {
    flex: 1;
    padding: 0.7rem 1rem;
    background: rgba(0, 180, 216, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-family: 'DM Sans', sans-serif;
    transition: border-color 0.3s;
}

.footer-newsletter input:focus {
    outline: none;
    border-color: var(--cyan);
}

.footer-newsletter input::placeholder {
    color: var(--text-muted);
}

.footer-newsletter button {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white;
    border: none;
    border-radius: var(--radius-full);
    padding: 0.7rem 1.25rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-newsletter button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 107, 43, 0.4);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-social a {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-left: 1rem;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-social a:hover {
    color: var(--cyan);
    transform: translateY(-2px);
}

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

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

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


/* =====================================================
   ALERT
   ===================================================== */
.alert {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    width: calc(100% - 40px);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    background: rgba(3, 8, 18, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-bright);
    color: var(--text-primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateX(120%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.alert.show {
    transform: translateX(0);
}

.alert-success {
    border-color: rgba(0, 180, 216, 0.6);
}

.alert-success .alert-content i {
    color: var(--cyan);
}

.alert-error {
    border-color: rgba(255, 107, 43, 0.6);
}

.alert-error .alert-content i {
    color: var(--orange);
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.alert-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0.25rem;
    transition: color 0.2s;
}

.alert-close:hover {
    color: white;
}


/* =====================================================
   AOD SECTION — WHITE BACKGROUND
   ===================================================== */
.aod-section {
    background: #ffffff;
    color: #0d1117;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle top/bottom rule */
.aod-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00b4d8 40%, #ff6b2b 60%, transparent);
    opacity: 0.4;
}

.aod-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.aod-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #0077b6;
    background: rgba(0, 119, 182, 0.08);
    border: 1px solid rgba(0, 119, 182, 0.3);
    border-radius: 9999px;
    padding: 0.35rem 1rem;
    margin-bottom: 1.4rem;
}

.aod-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0077b6;
    animation: aodBlink 1.4s ease-in-out infinite;
}

@keyframes aodBlink {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(0.7);
    }
}

.aod-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #0d1117;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.aod-title span {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aod-desc {
    max-width: 600px;
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

/* Cards */
.aod-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
    max-width: 900px;
    margin-bottom: 2.5rem;
}

.aod-card {
    background: #f8fbff;
    border: 1px solid rgba(0, 180, 216, 0.18);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: left;
    transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
    will-change: transform, border-color;
}

.aod-card::before {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.aod-card:hover {
    background: #eef7ff;
    border-color: rgba(0, 180, 216, 0.45);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 119, 182, 0.1);
}

.aod-card-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.12), rgba(0, 119, 182, 0.08));
    border: 1px solid rgba(0, 180, 216, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #0077b6;
}

.aod-card h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0d1117;
    margin-bottom: 0.4rem;
}

.aod-card p {
    font-size: 0.86rem;
    color: #4a5568;
    margin: 0;
    line-height: 1.55;
}

/* Pulse row */
.aod-pulse-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.aod-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    animation: aodPulseRing 1.8s ease-out infinite;
}

@keyframes aodPulseRing {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.aod-pulse-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #22c55e;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

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


/* =====================================================
   ANIMATE ON DISPLAY — FIXED VERSION
   All elements tagged data-aod start hidden.
   JS adds .aod-in when element enters viewport.
   data-aod-dir="left"  → slides in from left
   data-aod-dir="right" → slides in from right
   default              → slides up from below
   ===================================================== */

/* Base hidden state */
[data-aod] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

[data-aod][data-aod-dir="left"] {
    transform: translateX(-36px);
}

[data-aod][data-aod-dir="right"] {
    transform: translateX(36px);
}

/* Visible state — JS adds this class */
[data-aod].aod-in {
    opacity: 1;
    transform: translate(0, 0);
}

/* Exit state — JS adds this class when element leaves */
[data-aod].aod-out {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

[data-aod][data-aod-dir="left"].aod-out {
    transform: translateX(-24px);
}

[data-aod][data-aod-dir="right"].aod-out {
    transform: translateX(24px);
}


/* =====================================================
   WHY CHOOSE US SECTION
   ===================================================== */
.why-section {
    background: var(--bg-mid);
    position: relative;
}

.why-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--cyan) 40%, var(--orange) 60%, transparent 100%);
    opacity: 0.35;
    z-index: 1;
}

/* Override section-subtitle for dark background */
.why-section .section-subtitle {
    color: var(--cyan);
    background: rgba(0, 180, 216, 0.1);
    border-color: rgba(0, 180, 216, 0.3);
}

.why-section .section-title {
    color: var(--text-primary);
}

.why-section .section-description {
    color: var(--text-secondary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    backdrop-filter: blur(12px);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    will-change: transform, border-color;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--cyan), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover {
    
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), var(--glow-cyan);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card--large {
    grid-column: span 2;
}

.why-card--accent {
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.12), rgba(0, 119, 182, 0.08));
    border-color: rgba(0, 180, 216, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.why-card--dark {
    background: rgba(2, 5, 12, 0.85);
    border-color: rgba(0, 180, 216, 0.2);
}

.why-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.25);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--cyan);
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.why-card:hover .why-card-icon {
    background: rgba(0, 180, 216, 0.2);
    box-shadow: 0 0 20px rgba(0, 180, 216, 0.35);
    color: var(--cyan-bright);
}

.why-number {
    font-family: 'Syne', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--cyan-bright), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.why-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.65rem;
    color: var(--text-primary);
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.why-tag {
    display: inline-flex;
    align-items: center;
    margin-top: 1.25rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cyan);
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.25);
    border-radius: var(--radius-full);
    padding: 0.25rem 0.75rem;
}





/* =====================================================
   SCROLLBAR
   ===================================================== */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--cyan), var(--teal));
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cyan-bright);
}


/* =====================================================
   ACCESSIBILITY & UTILS
   ===================================================== */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--cyan);
    outline-offset: 2px;
}

@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width:768px) {
    section {
        padding: 80px 0;
    }
}

@media (max-width:480px) {
    section {
        padding: 60px 0;
    }
}

.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-5 {
    margin-bottom: 3rem;
}


/* Responsive adjustments for why grid */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-card--large {
        grid-column: span 2;
    }
}

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

    .why-card--large {
        grid-column: span 1;
    }
}

/* ============================================================
   SECTION PULSE CANVAS — wave/ripple overlay per section
   ============================================================ */
.section-pulse-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
}

/* Ensure all section content sits above the canvas */
.about-section>.container,
.process-section>.container,
.services-section>.container,
.aod-section>.aod-inner,
.why-section>.container,
.contact-section>.container {
    position: relative;
    z-index: 1;
}

/* ── Contact section: text overrides for white background ── */
.contact-section .section-subtitle {
    color: var(--teal);
    background: rgba(0, 119, 182, 0.08);
    border-color: rgba(0, 119, 182, 0.3);
}

.contact-section .section-title {
    color: #0d1117;
}

.contact-section .section-description {
    color: #4a5568;
}

/* Contact form — light card */
.contact-section .contact-form {
    background: #f8fbff;
    border-color: rgba(0, 180, 216, 0.18);
    backdrop-filter: none;
}

.contact-section .contact-form::after {
    background: radial-gradient(circle, rgba(0, 119, 182, 0.06) 0%, transparent 70%);
}

.contact-section .form-group input,
.contact-section .form-group textarea {
    background: #ffffff;
    border-color: rgba(0, 180, 216, 0.25);
    color: #0d1117;
}

.contact-section .form-group input::placeholder,
.contact-section .form-group textarea::placeholder {
    color: #94a3b8;
}

.contact-section .form-group input:focus,
.contact-section .form-group textarea:focus {
    background: #ffffff;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.12);
}

/* Contact info cards — light cards */
.contact-section .contact-item {
    background: #f8fbff;
    border-color: rgba(0, 180, 216, 0.18);
    backdrop-filter: none;
}

.contact-section .contact-item:hover {
    background: #eef7ff;
    border-color: rgba(0, 180, 216, 0.45);
    box-shadow: 0 4px 20px rgba(0, 180, 216, 0.12);
}

.contact-section .contact-item h4 {
    color: #64748b;
}

.contact-section .contact-item p {
    color: #374151;
}

/* =====================================================
   PROJECT TIMELINES / ETA SECTION
   ===================================================== */
.eta-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.eta-section .light-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.eta-section .container {
    position: relative;
    z-index: 1;
}

.eta-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4.5rem;
}

.eta-header .section-subtitle {
    color: var(--teal);
    background: rgba(0, 119, 182, 0.08);
    border-color: rgba(0, 119, 182, 0.2);
}

.eta-header .section-title {
    color: #0a1420;
}

.eta-header .section-title em {
    font-style: normal;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.eta-header .section-description {
    color: #4a6070;
}

.eta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.eta-card {
    background: #ffffff;
    border: 1px solid rgba(0, 119, 182, 0.12);
    border-radius: var(--radius-md);
    padding: 1.8rem 1.6rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.055);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.eta-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(0, 119, 182, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 119, 182, 0.28);
}

.eta-card--featured {
    border-color: rgba(255, 107, 43, 0.18);
    background: linear-gradient(160deg, #fff 70%, rgba(255, 107, 43, 0.03) 100%);
}

.eta-card--featured:hover {
    border-color: rgba(255, 107, 43, 0.38);
    box-shadow: 0 18px 48px rgba(255, 107, 43, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
}

.eta-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.eta-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(0, 119, 182, 0.1);
    border: 1px solid rgba(0, 119, 182, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--teal);
    transition: transform var(--transition), background var(--transition);
}

.eta-card:hover .eta-icon-wrap {
    transform: scale(1.1);
    background: rgba(0, 119, 182, 0.16);
}

.eta-icon-wrap--orange {
    background: rgba(255, 107, 43, 0.1);
    border-color: rgba(255, 107, 43, 0.18);
    color: var(--orange);
}

.eta-card:hover .eta-icon-wrap--orange {
    background: rgba(255, 107, 43, 0.16);
}

.eta-type-badge {
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    background: rgba(0, 119, 182, 0.08);
    border: 1px solid rgba(0, 119, 182, 0.16);
    color: var(--teal);
}

.eta-type-badge--orange {
    background: rgba(255, 107, 43, 0.08);
    border-color: rgba(255, 107, 43, 0.18);
    color: var(--orange);
}

.eta-card-title {
    font-size: 1rem;
    font-weight: 800;
    color: #0a1420;
    line-height: 1.3;
}

.eta-card-desc {
    font-size: 0.82rem;
    color: #4a6070;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.eta-duration {
    margin-top: auto;
}

.eta-dur-bar-wrap {
    height: 6px;
    border-radius: var(--radius-full);
    background: rgba(0, 119, 182, 0.08);
    overflow: visible;
    margin-bottom: 0.5rem;
    position: relative;
}

.eta-dur-bar {
    height: 100%;
    width: 0%;
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, var(--teal), var(--cyan));
    box-shadow: 0 0 8px rgba(0, 180, 216, 0.3);
    transition: width 1.1s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.eta-dur-bar::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cyan);
    transform: translateY(-50%);
    box-shadow: 0 0 10px rgba(0, 180, 216, 0.5);
}

.eta-dur-bar--orange {
    background: linear-gradient(90deg, var(--orange-dark), var(--orange));
    box-shadow: 0 0 8px rgba(255, 107, 43, 0.3);
}

.eta-dur-bar--orange::after {
    background: var(--orange);
    box-shadow: 0 0 10px rgba(255, 107, 43, 0.5);
}

.eta-dur-bar--teal {
    background: linear-gradient(90deg, var(--teal-dark), var(--teal));
    box-shadow: 0 0 8px rgba(0, 119, 182, 0.3);
}

.eta-dur-bar--teal::after {
    background: var(--teal);
    box-shadow: 0 0 10px rgba(0, 119, 182, 0.5);
}

.eta-dur-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.68rem;
    color: #8aacbe;
}

.eta-dur-range {
    font-weight: 700;
    color: var(--teal);
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
}

.eta-card--featured .eta-dur-range {
    color: var(--orange);
}

.eta-milestones {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.eta-ms {
    font-size: 0.78rem;
    color: #5a7a8e;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 1.4;
}

.eta-ms i {
    color: var(--teal);
    font-size: 0.5rem;
    flex-shrink: 0;
}

.eta-card--featured .eta-ms i {
    color: var(--orange);
}

.eta-complexity-note {
    font-size: 0.72rem;
    color: #8aacbe;
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    background: rgba(0, 119, 182, 0.05);
    border: 1px solid rgba(0, 119, 182, 0.1);
    border-radius: var(--radius-sm);
    padding: 0.55rem 0.75rem;
    line-height: 1.5;
    margin-top: 0.25rem;
}

.eta-complexity-note i {
    color: var(--teal);
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.eta-complexity-note--teal {
    background: rgba(0, 119, 182, 0.05);
    border-color: rgba(0, 119, 182, 0.12);
    color: #5a7a8e;
}

/* Fast-track banner */
.eta-fasttrack {
    position: relative;
    background: linear-gradient(135deg, #fff8f5 0%, #fff3ee 100%);
    border: 1px solid rgba(255, 107, 43, 0.22);
    border-radius: var(--radius-lg);
    padding: 2.25rem 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.75rem;
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(255, 107, 43, 0.07);
    transition: box-shadow var(--transition), border-color var(--transition);
}

.eta-fasttrack:hover {
    box-shadow: 0 8px 40px rgba(255, 107, 43, 0.13);
    border-color: rgba(255, 107, 43, 0.35);
}

.eta-ft-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 43, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.eta-ft-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: white;
    box-shadow: 0 8px 24px rgba(255, 107, 43, 0.4);
    animation: ftPulse 2.5s ease-in-out infinite;
}

@keyframes ftPulse {

    0%,
    100% {
        box-shadow: 0 8px 24px rgba(255, 107, 43, 0.4);
    }

    50% {
        box-shadow: 0 8px 36px rgba(255, 107, 43, 0.65);
    }
}

.eta-ft-content {
    flex: 1;
}

.eta-ft-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.4rem;
}

.eta-ft-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #0a1420;
    margin-bottom: 0.65rem;
    line-height: 1.25;
}

.eta-ft-title span {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.eta-ft-desc {
    font-size: 0.875rem;
    color: #4a6070;
    line-height: 1.75;
    margin: 0;
}

.eta-ft-desc strong {
    color: #1a2e3a;
    font-weight: 700;
}

.eta-ft-badge {
    flex-shrink: 0;
    text-align: center;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: var(--radius-md);
    padding: 1.25rem 1.75rem;
    box-shadow: 0 8px 24px rgba(255, 107, 43, 0.35);
    align-self: center;
}

.eta-ft-badge-amount {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    letter-spacing: -0.02em;
}

.eta-ft-badge-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 0.3rem;
}

/* Bottom CTA */
.eta-cta {
    text-align: center;
    padding-top: 0.5rem;
}

.eta-cta p {
    font-size: 0.95rem;
    color: #4a6070;
    margin-bottom: 1.25rem;
}

.eta-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-full);
    box-shadow: 0 6px 22px rgba(0, 119, 182, 0.35);
    transition: all var(--transition);
}

.eta-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 119, 182, 0.45);
    color: white;
}

/* Responsive */
@media (max-width: 1100px) {
    .eta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .eta-fasttrack {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.75rem;
    }

    .eta-ft-badge {
        align-self: flex-start;
        padding: 1rem 1.4rem;
    }
}

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

/* =====================================================
   FLIP CARDS — override block (click-to-flip)
   The main flip card styles live in the SERVICES section above.
   This block keeps the click-to-flip JS hook working cleanly.
   ===================================================== */
.service-flip-card.is-flipped .flip-card-inner {
    transform: rotateY(180deg);
}

/* Hero Right Section - Logo Styling */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 50%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(0, 180, 216, 0.4));
    transition: all 0.4s ease;
}

.hero-logo-image:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 30px rgba(0, 180, 216, 0.6));
}

/* Optional: Glow effect behind logo */
.hero-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.2) 0%, rgba(0, 180, 216, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

/* Optional: Orbiting ring animation */
.hero-logo-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    height: 260px;
    border-radius: 50%;

    pointer-events: none;
    z-index: 1;
    animation: orbitSpin 12s linear infinite;
}

@keyframes orbitSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-logo-image {
        max-width: 160px;
    }
    
    .hero-logo-glow {
        width: 180px;
        height: 180px;
    }
    
    .hero-logo-orbit {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .hero-logo-image {
        max-width: 140px;
    }
    
    .hero-logo-glow {
        width: 160px;
        height: 160px;
    }
    
    .hero-logo-orbit {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .hero-logo-image {
        max-width: 120px;
    }
    
    .hero-logo-glow {
        width: 140px;
        height: 140px;
    }
    
    .hero-logo-orbit {
        width: 180px;
        height: 180px;
    }
}

/* =====================================================
   WEBSITE REVAMP SERVICE CARD
   ===================================================== */
.service-flip-card .fa-sync-alt {
    /* Icon styling for revamp service */
}

/* =====================================================
   ETA SECTION CANVAS
   ===================================================== */
.eta-section {
    position: relative;
    overflow: hidden;
}

.eta-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.eta-section .container {
    position: relative;
    z-index: 1;
}

/* Ensure progress bars animate properly */
.eta-dur-bar {
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0%;
}

.eta-dur-bar[style*="--bar-w"] {
    width: var(--bar-w);
}

/* Fix for progress bar visibility */
.eta-dur-bar-wrap {
    overflow: visible;
}

.eta-dur-bar::after {
    transition: opacity 0.3s ease;
}

.eta-card:hover .eta-dur-bar::after {
    opacity: 1;
}

/* =====================================================
   SERVICES GRID UPDATES (for 6 cards)
   ===================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

/* For larger screens, ensure proper distribution */
@media (min-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* For medium screens */
@media (min-width: 992px) and (max-width: 1399px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* For smaller screens */
@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   ADDITIONAL ANIMATION FIXES
   ===================================================== */

/* Ensure AOD animations work smoothly */
[data-aod].aod-in {
    opacity: 1;
    transform: translate(0, 0);
}

[data-aod].aod-out {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Fix for stat numbers hover state */
.about-stat:hover .stat-number,
.about-stat:hover .stat-label {
    color: white;
    -webkit-text-fill-color: white;
    background: none;
}

/* Ensure canvas elements don't block clicks */
#heroCanvas,
.eta-canvas,
.section-pulse-canvas {
    pointer-events: none;
}

/* Improve card flip performance */
.service-flip-card {
    will-change: transform;
}

.flip-card-inner {
    will-change: transform;
}
/* =====================================================
   OUR WORK / PORTFOLIO SECTION
   ===================================================== */
.work-section {
    position: relative;
    min-height: 100vh;
    background: var(--bg-deep);
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Fullscreen background layer — slides swap via JS */
.work-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.work-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.75s ease;
}

.work-bg-slide.is-active {
    opacity: 1;
}

/* Dark overlay so text stays readable over background images */
.work-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.334) 0%,
        rgba(3, 5, 10, 0.711) 50%,
        rgba(3, 5, 10, 0.808) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.work-inner {
    position: relative;
    z-index: 2;
    padding-top: 110px;
    padding-bottom: 110px;
}

/* Section header */
.work-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.work-header .section-subtitle {
    color: var(--cyan);
    background: rgba(0, 180, 216, 0.08);
    border-color: rgba(0, 180, 216, 0.22);
}

.work-header .section-title {
    color: var(--text-primary);
}

.work-header .section-description {
    color: var(--text-secondary);
}

/* ── Grid of tiles ── */
.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* ── Individual tile ── */
.work-tile {
    position: relative;
    background: rgba(0, 20, 40, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 180, 216, 0.14);
    border-radius: var(--radius-lg);
    padding: 2rem;
    cursor: pointer;
    transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
}

.work-tile:hover,
.work-tile.is-active {
    border-color: rgba(0, 180, 216, 0.45);
    background: rgba(0, 30, 60, 0.78);
    box-shadow: 0 0 0 1px rgba(0, 180, 216, 0.18), 0 12px 50px rgba(0, 0, 0, 0.5);
}

.work-tile.is-active {
    transform: translateY(-3px);
}

/* Animated corner accents */
.tile-corner {
    position: absolute;
    width: 14px;
    height: 14px;
    border-color: var(--cyan);
    border-style: solid;
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.work-tile:hover .tile-corner,
.work-tile.is-active .tile-corner { opacity: 1; }

.tile-corner--tl { top: 10px; left: 10px; border-width: 2px 0 0 2px; transform: translate(-4px,-4px); }
.tile-corner--tr { top: 10px; right: 10px; border-width: 2px 2px 0 0; transform: translate(4px,-4px); }
.tile-corner--bl { bottom: 10px; left: 10px; border-width: 0 0 2px 2px; transform: translate(-4px,4px); }
.tile-corner--br { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; transform: translate(4px,4px); }

.work-tile:hover .tile-corner--tl,
.work-tile.is-active .tile-corner--tl { transform: translate(0,0); }
.work-tile:hover .tile-corner--tr,
.work-tile.is-active .tile-corner--tr { transform: translate(0,0); }
.work-tile:hover .tile-corner--bl,
.work-tile.is-active .tile-corner--bl { transform: translate(0,0); }
.work-tile:hover .tile-corner--br,
.work-tile.is-active .tile-corner--br { transform: translate(0,0); }

/* Project number */
.tile-index {
    font-family: 'Syne', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--cyan);
    opacity: 0.55;
    margin-bottom: 0.85rem;
}

/* Type badge */
.tile-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(0, 180, 216, 0.1);
    border: 1px solid rgba(0, 180, 216, 0.25);
    border-radius: var(--radius-full);
    padding: 0.28rem 0.85rem;
    color: var(--cyan-light);
    margin-bottom: 1rem;
}

.tile-type-badge--orange {
    background: rgba(255, 107, 43, 0.1);
    border-color: rgba(255, 107, 43, 0.3);
    color: var(--orange-light);
}

.tile-type-badge--amber {
    background: rgba(245, 170, 0, 0.1);
    border-color: rgba(245, 170, 0, 0.3);
    color: #f5c842;
}

.tile-type-badge--green {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.28);
    color: #4ade80;
}

/* Tile body */
.tile-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.55rem;
    line-height: 1.25;
}

.tile-brief {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 1rem;
}

/* Tag pills */
.tile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ptag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-muted);
    background: rgba(0, 180, 216, 0.06);
    border: 1px solid rgba(0, 180, 216, 0.12);
    border-radius: var(--radius-full);
    padding: 0.22rem 0.7rem;
}

/* Expandable detail area */
.tile-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, margin-top 0.4s ease;
    opacity: 0;
    margin-top: 0;
}

.work-tile.is-active .tile-detail {
    max-height: 280px;
    opacity: 1;
    margin-top: 1.25rem;
}

/* Divider above detail */
.work-tile.is-active .tile-detail::before {
    content: '';
    display: block;
    height: 1px;
    background: rgba(0, 180, 216, 0.18);
    margin-bottom: 1.25rem;
}

/* Highlight bullets */
.tile-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.tile-hi {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.tile-hi i {
    color: var(--cyan);
    margin-top: 0.15rem;
    flex-shrink: 0;
    font-size: 0.78rem;
}

/* CTA area */
.tile-ctas {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tile-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.6rem 1.35rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 18px rgba(0, 119, 182, 0.38);
    transition: all 0.3s ease;
    text-decoration: none;
}

.tile-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 119, 182, 0.55);
    color: white;
}

.tile-btn-disabled {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.6rem 1.35rem;
    border-radius: var(--radius-full);
    cursor: default;
    user-select: none;
}

/* Responsive */
@media (max-width: 768px) {
    .work-grid {
        grid-template-columns: 1fr;
    }

    .work-tile.is-active .tile-detail {
        max-height: 360px;
    }
}

@media (max-width: 480px) {
    .work-inner {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}
/* =====================================================
   PRODUCTION — ACCESSIBILITY & POLISH
   ===================================================== */

/* Skip-to-content link (screen readers + keyboard nav) */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 99999;
    background: var(--cyan);
    color: #000;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.6rem 1.2rem;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    text-decoration: none;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 0;
    outline: 3px solid var(--orange);
    outline-offset: 2px;
}

/* Focus rings — visible for keyboard users, invisible for mouse */
:focus-visible {
    outline: 2px solid var(--cyan);
    outline-offset: 3px;
    border-radius: 4px;
}
:focus:not(:focus-visible) {
    outline: none;
}

/* Selection colour */
::selection {
    background: rgba(0, 180, 216, 0.3);
    color: #fff;
}

/* Reduced-motion: disable all animations for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .cta-parallax-img {
        background-attachment: scroll !important;
    }
}

/* Print: strip backgrounds, show URLs */
@media print {
    .loading-screen,
    .navbar,
    canvas,
    .cta-parallax-img,
    .work-bg-layer,
    footer .newsletter-form { display: none !important; }

    body { background: #fff !important; color: #000 !important; }

    a[href]::after { content: " (" attr(href) ")"; font-size: 0.75em; color: #555; }
    a[href^="#"]::after { content: ""; } /* don't print anchor hash links */
}
/* =====================================================
   WHY CHOOSE US SECTION
   White background · light theme canvas auto-injected
   ===================================================== */
.why-us-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 110px 0;
}

/* Light section text overrides (matching about/process pattern) */
.why-us-section h2,
.why-us-section h3,
.why-us-section h4 {
    color: #0d1117;
}

.why-us-section .section-title { color: #0d1117; }
.why-us-section .section-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-us-section p,
.why-us-section .section-description { color: #4a5568; }

.why-us-section .section-subtitle {
    color: var(--teal);
    background: rgba(0, 119, 182, 0.08);
    border-color: rgba(0, 119, 182, 0.3);
}

/* ── Grid ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

/* ── Base card ── */
.why-card {
    background: #ffffff;
    border: 1px solid rgba(0, 119, 182, 0.12);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--cyan));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-card:hover {
    border-color: rgba(0, 119, 182, 0.28);
    box-shadow: 0 8px 40px rgba(0, 119, 182, 0.1);
    transform: translateY(-4px);
}

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

/* ── Featured card (card 01) ── */
.why-card--featured {
    background: linear-gradient(135deg, #0077b6 0%, #023e8a 100%);
    border-color: transparent;
    color: white;
}

.why-card--featured::before {
    background: linear-gradient(90deg, var(--cyan-bright), var(--orange));
    opacity: 1;
}

.why-card--featured h3,
.why-card--featured p { color: white; }

.why-card--featured .wc-desc { color: rgba(255, 255, 255, 0.82); }

.why-card--featured .wc-num { color: rgba(255, 255, 255, 0.25); }

.why-card--featured:hover {
    border-color: transparent;
    box-shadow: 0 12px 50px rgba(0, 119, 182, 0.45);
    transform: translateY(-4px);
}

/* ── CTA card (card 06) ── */
.why-card--cta {
       background: linear-gradient(135deg, #0077b6 0%, #023e8a 100%);
    border-color: transparent;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.why-card--cta::before {
    background: linear-gradient(90deg, var(--cyan), var(--orange));
    opacity: 1;
}

.why-card--cta h3,
.why-card--cta p { color: white; }

.why-card--cta p { color: rgba(180, 220, 240, 0.75); }

.why-card--cta:hover {
    border-color: rgba(0, 180, 216, 0.4);
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.35);
    transform: translateY(-4px);
}

.wc-cta-glow {
    position: absolute;
    top: -40px; right: -40px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.wc-cta-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: white;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 16px rgba(0, 180, 216, 0.35);
}

.wc-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: linear-gradient(135deg, var(--teal), var(--cyan));
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-full);
    margin-top: 1.25rem;
    box-shadow: 0 4px 18px rgba(0, 119, 182, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.wc-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 119, 182, 0.55);
    color: white;
}

/* ── Icon wrap ── */
.wc-icon-wrap {
    width: 52px; height: 52px;
    background: rgba(0, 119, 182, 0.08);
    border: 1px solid rgba(0, 119, 182, 0.18);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.1rem;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.why-card:hover .wc-icon-wrap {
    background: rgba(0, 119, 182, 0.14);
    border-color: rgba(0, 119, 182, 0.3);
}

.wc-icon-wrap--orange {
    background: rgba(255, 107, 43, 0.08);
    border-color: rgba(255, 107, 43, 0.18);
}

.why-card:hover .wc-icon-wrap--orange {
    background: rgba(255, 107, 43, 0.14);
    border-color: rgba(255, 107, 43, 0.3);
}

.wc-icon {
    font-size: 1.2rem;
    color: var(--teal);
}

.wc-icon--orange { color: var(--orange); }

/* Featured card icon override */
.why-card--featured .wc-icon-wrap {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}
.why-card--featured .wc-icon { color: var(--cyan-bright); }

/* ── Card number ── */
.wc-num {
    font-family: 'Syne', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(0, 119, 182, 0.3);
    margin-bottom: 0.55rem;
}

/* ── Card title ── */
.wc-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d1117;
    margin-bottom: 0.65rem;
    line-height: 1.3;
}

/* ── Card description ── */
.wc-desc {
    font-size: 0.875rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.1rem;
}

/* ── Proof items ── */
.wc-proof {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.wc-proof-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: #4a5568;
}

.wc-proof-item i {
    color: var(--teal);
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* Featured card proof override */
.why-card--featured .wc-proof-item { color: rgba(255, 255, 255, 0.75); }
.why-card--featured .wc-proof-item i { color: var(--cyan-bright); }

/* ── Responsive ── */
@media (max-width: 1100px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .why-card--cta {
        min-height: auto;
    }
}

/* Add these styles to your existing styles.css */

/* Footer Contact Info Section */
.footer-contact-info {
    margin-bottom: 1rem;
}

.footer-contact-info h4 {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.footer-contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.8rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-contact-info li i {
    width: 20px;
    color: var(--cyan);
    font-size: 0.9rem;
}

.footer-contact-info a {
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.footer-contact-info a:hover {
    color: var(--cyan);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .footer-contact-info {
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    .footer-contact-info {
        margin-top: 0;
    }
}