/* ===== CSS Variables ===== */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --background: #0a0a0f;
    --background-secondary: #111118;
    --foreground: #ffffff;
    --foreground-muted: #a1a1aa;
    --border: #27272a;
    --border-light: #3f3f46;
    --card: #18181b;
    --card-hover: #1f1f23;
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;
    --gradient-start: #6366f1;
    --gradient-end: #8b5cf6;
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
    --transition: 0.3s ease;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --header-bg: rgba(10, 10, 15, 0.8);
    --header-bg-scroll: rgba(10, 10, 15, 0.95);
    --particles-color: 99, 102, 241;
    --background-alt: #0e0e15;
}

/* ===== Light Mode ===== */
.light-mode {
    --background: #ffffff;
    --background-secondary: #f4f4f5;
    --foreground: #18181b;
    --foreground-muted: #52525b;
    --border: #e4e4e7;
    --border-light: #d4d4d8;
    --card: #ffffff;
    --card-hover: #fafafa;
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);
    --header-bg: rgba(255, 255, 255, 0.8);
    --header-bg-scroll: rgba(255, 255, 255, 0.95);
    --particles-color: 99, 102, 241;
    --background-alt: #f9fafb;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

ul,
ol {
    list-style: none;
}

/* ===== Particles Background ===== */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--foreground);
}

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    position: relative;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gradient-end), var(--gradient-start));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 8px 25px rgba(99, 102, 241, 0.5),
        0 0 40px rgba(99, 102, 241, 0.2);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-outline {
    position: relative;
    background: transparent;
    color: var(--foreground);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.05));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.btn-outline:hover {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary-light);
}

.btn-outline:hover::before {
    transform: scaleX(1);
}

.btn-white {
    background: white;
    color: var(--primary-dark);
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* ===== Section Styles ===== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.4rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.15));
    border: 2px solid var(--primary);
    border-radius: var(--radius-full);
    color: var(--primary-dark); /* Changed to darker color for contrast */
    font-size: 0.85rem;
    font-weight: 800; /* Bolder */
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(99, 102, 241, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.light-mode .section-badge {
    color: var(--primary-dark);
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary);
}

.section-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--primary);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}


.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--foreground-muted);
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: var(--header-bg-scroll);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom-color: var(--border);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.header-logo-img {
    height: 55px;
    width: auto;
    object-fit: contain;
}


.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: var(--radius);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transform: rotate(45deg);
    animation: logoShine 3s ease-in-out infinite;
}

@keyframes logoShine {

    0%,
    100% {
        transform: translateX(-100%) rotate(45deg);
    }

    50% {
        transform: translateX(100%) rotate(45deg);
    }
}

.logo:hover .logo-icon {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5);
}

.logo-text {
    background: linear-gradient(135deg, var(--foreground), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-link {
    position: relative;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--foreground-muted);
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-full);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.05));
    border-radius: var(--radius-full);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--foreground);
}

.nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-link.active {
    color: var(--foreground);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
}

.nav-link span {
    position: relative;
    z-index: 1;
}

.header-cta {
    display: none;
    position: relative;
    overflow: hidden;
}

.header-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.header-cta:hover::before {
    left: 100%;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--primary);
}

.hamburger-line {
    width: 22px;
    height: 2px;
    background: var(--foreground);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-btn.active {
    background: var(--primary);
    border-color: var(--primary);
}

.mobile-menu-btn.active .hamburger-line {
    background: white;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    position: relative;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--foreground-muted);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    border-bottom: none;
    background: transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gradient-start), var(--gradient-end));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--foreground);
    background: rgba(99, 102, 241, 0.1);
    padding-left: 2rem;
}

.mobile-nav-link:hover::before {
    transform: scaleY(1);
}

.mobile-cta {
    margin-top: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
    }

    .header-cta {
        display: inline-flex;
    }

    .mobile-menu-btn,
    .mobile-menu {
        display: none !important;
    }
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    z-index: 1;
}

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero-content {
    text-align: left;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--foreground-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Hero Highlights */
.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--foreground-muted);
}

.hero-highlight svg {
    color: var(--primary-light);
    flex-shrink: 0;
}

.hero-highlight strong {
    color: var(--foreground);
}

/* Hero Badges */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-badge-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--success);
}

.hero-badge-item svg {
    width: 14px;
    height: 14px;
}

/* Hero Form */
.hero-form-wrapper {
    display: flex;
    justify-content: center;
}

.hero-form-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    padding: 2rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(99, 102, 241, 0.15);
    overflow: hidden;
    animation: formFloat 6s ease-in-out infinite;
}

.hero-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end), var(--gradient-start));
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

@keyframes formFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.hero-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.hero-form-subtitle {
    font-size: 0.9rem;
    color: var(--foreground-muted);
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--foreground-muted);
    text-align: center;
    margin-top: 0.5rem;
}

/* Legacy hero styles for backward compatibility */
.hero-container {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 2rem;
}

.badge-icon {
    color: var(--warning);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--foreground);
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--foreground-muted);
}

/* ===== Trusted By Section ===== */
.trusted-by {
    position: relative;
    padding: 4rem 0;
    border-bottom: 1px solid var(--border);
    z-index: 1;
}

.trusted-by-text {
    text-align: center;
    font-size: 0.875rem;
    color: var(--foreground-muted);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Marquee Animation */
.marquee-wrapper {
    overflow: hidden;
    position: relative;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--background), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--background), transparent);
}

.marquee {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-content {
    display: flex;
    gap: 3rem;
    padding: 0 1.5rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.trusted-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.trusted-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground-muted);
    opacity: 0.6;
    transition: opacity var(--transition);
    white-space: nowrap;
}

.trusted-logo:hover {
    opacity: 1;
}

/* ===== Services Section ===== */
.services {
    position: relative;
    padding: 6rem 0;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    position: relative;
    padding: 2rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(99, 102, 241, 0.06),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    background: var(--card-hover);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-8px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(99, 102, 241, 0.1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.05));
}

.service-card.featured::before {
    transform: scaleX(1);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.service-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: var(--radius);
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.service-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-5px) scale(1.05);
    background: white; /* Switch to white background on hover */
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
}

.service-card:hover .service-icon svg {
    color: var(--primary); /* Switch icon color to primary on hover */
    transform: scale(1.1);
}




.service-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: var(--radius);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.service-logo-container {
    overflow: hidden;
    background: white !important;
    padding: 0;
}

.service-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Changed from contain to fill the space better */
    transition: transform 0.4s ease;
}


.service-card:hover .service-logo-img {
    transform: scale(1.1) rotate(0deg);
}

.service-card:hover .service-icon {
    transform: translateY(-5px);
    color: white;
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-description {
    color: var(--foreground-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-features li {
    padding: 0.375rem 0.75rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--foreground-muted);
}

/* ===== Service Tabs ===== */
.service-tabs {
    margin-top: 2rem;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0.5rem;
    background: var(--background-secondary);
    border-radius: var(--radius-lg);
}

.tab-btn {
    padding: 0.875rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--foreground-muted);
    cursor: pointer;
    transition: all var(--transition);
}

.tab-btn:hover {
    color: var(--foreground);
}

.tab-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}

.tabs-content {
    position: relative;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== Stats Section ===== */
.stats {
    position: relative;
    padding: 4rem 0;
    background: var(--background-secondary);
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.stat-number::after {
    content: '+';
    color: var(--primary-light);
}

.stat-item:last-child .stat-number::after {
    content: '%';
}

.stat-label {
    font-size: 0.9rem;
    color: var(--foreground-muted);
}

/* ===== About Section ===== */
.about {
    position: relative;
    padding: 6rem 0;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-content .section-title {
    text-align: left;
}

.about-text {
    color: var(--foreground-muted);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    color: var(--success);
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
}

.about-image-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: var(--radius-lg);
    opacity: 0.2;
    transform: rotate(6deg);
}

.about-image-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    color: var(--primary-light);
}

/* Map Container */
.about-map {
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-container {
    width: 100%;
    max-width: 400px;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
}

.map-placeholder svg {
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}

.map-label {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.map-sublabel {
    font-size: 0.9rem;
    color: var(--foreground-muted);
}

/* Stats Section in About */
.stats-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--border);
}

.stats-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--foreground);
}

.stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .stats-section .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ===== Clients Section ===== */
.clients {
    position: relative;
    padding: 6rem 0;
    background: var(--background-secondary);
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    position: relative;
    padding: 2rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: 0.1;
    line-height: 1;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(99, 102, 241, 0.1);
}

.testimonial-card:hover::before {
    opacity: 0.2;
    transform: scale(1.2);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
    color: var(--warning);
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--foreground-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.author-role {
    font-size: 0.85rem;
    color: var(--foreground-muted);
}

.author-company {
    font-size: 0.8rem;
    color: var(--primary-light);
}

/* Featured Testimonial */
.featured-testimonial {
    max-width: 700px;
    margin: 0 auto;
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.02));
}

.featured-testimonial .testimonial-text {
    font-size: 1.1rem;
}

/* ===== CTA Section ===== */
.cta-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    z-index: 1;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
    color: white;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-section .section-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ===== FAQ Section ===== */
.faq {
    position: relative;
    padding: 6rem 0;
    z-index: 1;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem;
    background: none;
    border: none;
    color: var(--foreground);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition);
}

.faq-question:hover {
    color: var(--primary-light);
}

.faq-icon {
    transition: transform var(--transition);
    color: var(--foreground-muted);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition), padding var(--transition);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--foreground-muted);
    line-height: 1.7;
}

.faq-contact {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.faq-contact p {
    color: var(--foreground-muted);
    margin-bottom: 1rem;
}

/* ===== Contact Section ===== */
.contact {
    position: relative;
    padding: 6rem 0;
    background: var(--background-secondary);
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info .section-title {
    text-align: left;
}

.contact-description {
    color: var(--foreground-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-method-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius);
    color: var(--primary-light);
}

.contact-method-info {
    display: flex;
    flex-direction: column;
}

.contact-method-label {
    font-size: 0.85rem;
    color: var(--foreground-muted);
}

.contact-method-value {
    font-weight: 600;
    color: var(--foreground);
}

.contact-method-value:hover {
    color: var(--primary-light);
}

.contact-info-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-form-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--foreground-muted);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.contact-form-wrapper {
    padding: 2rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-input,
.form-textarea {
    padding: 0.875rem 1rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--foreground);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--foreground-muted);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== Footer ===== */
.footer {
    position: relative;
    padding: 4rem 0 2rem;
    background: var(--background);
    border-top: 1px solid var(--border);
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 65px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.1);
}


.footer-description {
    color: var(--foreground-muted);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a,
.footer-nav span {
    font-size: 0.9rem;
    color: var(--foreground-muted);
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: var(--foreground);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.copyright {
    font-size: 0.875rem;
    color: var(--foreground-muted);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social .social-link {
    width: 36px;
    height: 36px;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge,
.hero-title,
.hero-description,
.hero-buttons,
.hero-stats {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    animation-delay: 0.1s;
}

.hero-description {
    animation-delay: 0.2s;
}

.hero-buttons {
    animation-delay: 0.3s;
}

.hero-stats {
    animation-delay: 0.4s;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--foreground-muted);
}

/* ===== Theme Toggle Button ===== */
.theme-toggle {
    position: fixed;
    bottom: 6rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
    transition: all var(--transition);
    box-shadow: var(--shadow-lg);
}

.theme-toggle:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.theme-toggle:hover svg {
    color: white;
}

.theme-toggle svg {
    width: 24px;
    height: 24px;
    color: var(--foreground);
    transition: color var(--transition);
}


/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
    transition: all var(--transition);
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    color: white;
}

/* ===== Modern Effects ===== */

/* Glow effect on section badges */
.section-badge {
    position: relative;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
    }

    50% {
        box-shadow: 0 0 20px 5px rgba(99, 102, 241, 0.2);
    }
}

/* Floating animation for elements */
.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Gradient border animation */
.gradient-border {
    position: relative;
    background: var(--card);
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end), var(--gradient-start));
    background-size: 200% 200%;
    border-radius: inherit;
    z-index: -1;
    animation: gradientRotate 4s linear infinite;
}

@keyframes gradientRotate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children animation */
.stagger-children>* {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-children.active>*:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-children.active>*:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-children.active>*:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-children.active>*:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger-children.active>*:nth-child(5) {
    transition-delay: 0.5s;
}

.stagger-children.active>*:nth-child(6) {
    transition-delay: 0.6s;
}

.stagger-children.active>* {
    opacity: 1;
    transform: translateY(0);
}

/* Glowing text effect */
.glow-text {
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.5), 0 0 20px rgba(99, 102, 241, 0.3);
}

/* Social links enhanced */
.social-link {
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link svg {
    position: relative;
    z-index: 1;
}

/* Form input focus effects */
.form-input,
.form-textarea {
    position: relative;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--primary);
    box-shadow:
        0 0 0 3px rgba(99, 102, 241, 0.15),
        0 4px 20px rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

/* Tab buttons enhanced */
.tab-btn {
    position: relative;
    overflow: hidden;
}

.tab-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.tab-btn:hover::before {
    width: 80%;
}

.tab-btn.active::before {
    width: 100%;
    background: white;
}

/* Stats number animation */
.stat-number {
    position: relative;
    display: inline-block;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    color: var(--primary-light);
}

.stat-item {
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

/* Trusted logo hover */
.trusted-logo {
    transition: all 0.3s ease;
}

.trusted-logo:hover {
    color: var(--primary-light);
    transform: scale(1.1);
}

/* FAQ enhanced */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
}

.faq-question {
    position: relative;
    overflow: hidden;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gradient-start), var(--gradient-end));
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::before,
.faq-item:hover .faq-question::before {
    transform: scaleY(1);
}

/* CTA section enhanced */
.cta {
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: ctaShine 10s linear infinite;
}

@keyframes ctaShine {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Contact method hover */
.contact-method {
    padding: 1rem;
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(99, 102, 241, 0.05);
    transform: translateX(10px);
}

.contact-method:hover .contact-method-icon {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    transform: scale(1.1);
}

.contact-method-icon {
    transition: all 0.3s ease;
}

/* Hero content animations */
.hero-content {
    animation: heroSlideIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-form-wrapper {
    animation: heroFormIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
    opacity: 0;
}

@keyframes heroFormIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero highlight icons animation */
.hero-highlight svg {
    animation: iconBounce 2s ease-in-out infinite;
}

.hero-highlight:nth-child(1) svg {
    animation-delay: 0s;
}

.hero-highlight:nth-child(2) svg {
    animation-delay: 0.3s;
}

.hero-highlight:nth-child(3) svg {
    animation-delay: 0.6s;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* About features animation */
.about-feature {
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateX(8px);
}

.about-feature:hover .feature-icon {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

.feature-icon {
    transition: all 0.3s ease;
}

/* Map placeholder glow */
.map-placeholder {
    transition: all 0.4s ease;
}

.map-placeholder:hover {
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(99, 102, 241, 0.1);
    transform: scale(1.02);
}

.map-placeholder:hover svg {
    transform: scale(1.1);
}

.map-placeholder svg {
    transition: transform 0.3s ease;
}

/* Smooth cursor follower effect on cards */
.service-card,
.testimonial-card {
    --mouse-x: 50%;
    --mouse-y: 50%;
}

/* Contact form wrapper enhanced */
.contact-form-wrapper {
    transition: all 0.4s ease;
}

.contact-form-wrapper:hover {
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(99, 102, 241, 0.1);
    transform: translateY(-5px);
}

/* Footer links hover */
.footer-nav a {
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-nav a:hover::after {
    width: 100%;
}

/* Pulse animation for important elements */
.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Selection styling */
::selection {
    background: rgba(99, 102, 241, 0.3);
    color: var(--foreground);
}

/* ===== Move One Product Showcase ===== */
.product-showcase {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
}

.product-showcase .container {
    position: relative;
    z-index: 2;
}

/* Glassmorphism Container for Product Hero */
.product-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 6rem; /* Increased spacing */
    padding: 4rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4), /* Softer shadow */
        0 0 60px rgba(99, 102, 241, 0.1);
}


@media (min-width: 1024px) {
    .product-hero {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.product-showcase .section-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(99, 102, 241, 0.1));
    border: 1px solid var(--warning);
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
    color: var(--warning);
    margin-bottom: 2rem;
    border-radius: var(--radius-full);
}


.product-showcase .section-title {
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--foreground) 0%, var(--primary-light) 40%, var(--primary) 80%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    letter-spacing: -0.05em;
    filter: drop-shadow(0 0 30px rgba(99, 102, 241, 0.4));
    line-height: 0.9;
}




.product-hero-content {
    text-align: left;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}

.product-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.product-subtitle {
    font-size: 1.2rem;
    color: var(--foreground-muted);
    line-height: 1.8;
    margin-bottom: 4rem; /* Increased spacing */
}


/* Modalities */
.product-modalities h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.modalities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.modality-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}

.modality-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.modality-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.1));
    border-radius: var(--radius);
    color: var(--primary-light);
}

.modality-card span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Product Image/Mockup */
.product-hero-image {
    display: flex;
    justify-content: center;
}

.product-image-placeholder {
    width: 100%;
    max-width: 500px;
}

.product-mockup {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 60px rgba(99, 102, 241, 0.1);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: var(--background-secondary);
    border-bottom: 1px solid var(--border);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
}

.mockup-dots span:first-child {
    background: #ff5f57;
}

.mockup-dots span:nth-child(2) {
    background: #febc2e;
}

.mockup-dots span:last-child {
    background: #28c840;
}

.mockup-title {
    font-size: 0.8rem;
    color: var(--foreground-muted);
    font-weight: 500;
}

.mockup-content {
    display: flex;
    min-height: 280px;
}

.mockup-sidebar {
    width: 60px;
    background: var(--background-secondary);
    border-right: 1px solid var(--border);
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-item {
    height: 36px;
    background: var(--border);
    border-radius: var(--radius);
    opacity: 0.5;
}

.sidebar-item.active {
    background: var(--primary);
    opacity: 1;
}

.mockup-main {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.mockup-stat-card {
    height: 60px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.05));
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.mockup-chart {
    height: 80px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.mockup-table {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.table-row {
    height: 24px;
    background: var(--background-secondary);
    border-radius: var(--radius);
}

/* Product Benefits */
.product-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .product-benefits {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    padding: 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.1));
    border-radius: var(--radius);
    color: var(--primary-light);
}

.benefit-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 0.85rem;
    color: var(--foreground-muted);
    line-height: 1.5;
}

/* Product Modules */
.product-modules {
    margin-bottom: 4rem;
}

.modules-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
}

.modules-subtitle {
    text-align: center;
    color: var(--foreground-muted);
    margin-bottom: 2rem;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .modules-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .modules-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.module-card {
    padding: 1.5rem 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
}

.module-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.module-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.1));
    border-radius: var(--radius);
    color: var(--primary-light);
}

.module-card h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.module-card p {
    font-size: 0.75rem;
    color: var(--foreground-muted);
}

/* Product Comparison */
.product-comparison {
    margin-bottom: 3rem;
}

.comparison-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.comparison-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.comparison-card.before {
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.comparison-card.after {
    background: rgba(34, 197, 94, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.comparison-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.comparison-card.before .comparison-header svg {
    color: #ef4444;
}

.comparison-card.after .comparison-header svg {
    color: #22c55e;
}

.comparison-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-card li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--foreground-muted);
}

.comparison-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.comparison-card.before li::before {
    background: #ef4444;
}

.comparison-card.after li::before {
    background: #22c55e;
}

.product-cta {
    text-align: center;
}

/* ===== Mission & Vision Cards ===== */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.mission-card,
.vision-card {
    padding: 2.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s ease;
}

.mission-card:hover,
.vision-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.mv-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.1));
    border-radius: var(--radius-lg);
    color: var(--primary-light);
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
    color: var(--foreground-muted);
    line-height: 1.7;
}

.about-subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

/* ===== Clients Grid ===== */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 4rem;
}

@media (min-width: 640px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .clients-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.client-card {
    padding: 1.5rem 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
}

.client-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.client-card.international {
    border-color: rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.02));
}

.client-logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.client-logo-placeholder span {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--foreground);
}

.client-logo-placeholder small {
    font-size: 0.7rem;
    color: var(--primary-light);
    font-weight: 500;
}

/* ===== Sectors Section ===== */
.sectors-section {
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.sectors-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .sectors-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sector-card {
    padding: 2rem 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s ease;
}

.sector-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.sector-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.1));
    border-radius: var(--radius);
    color: var(--primary-light);
    transition: all 0.3s ease;
}

.sector-card:hover .sector-icon {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    transform: scale(1.1);
}

.sector-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.sector-card p {
    font-size: 0.85rem;
    color: var(--foreground-muted);
    line-height: 1.5;
}

/* ===== Hero Logo Space ===== */
.hero-logo-space {
    margin-bottom: 2rem;
}

.hero-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.3));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5));
}


/* ===== Modal Styles ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    max-height: 85vh;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.05));
}

.modal-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.modal-title svg {
    color: var(--primary-light);
}

.modal-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--foreground-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--error);
    border-color: var(--error);
    color: white;
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.modal-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 1.5rem 0 0.75rem;
}

.modal-body h3:first-of-type {
    margin-top: 0;
}

.modal-body p {
    font-size: 0.95rem;
    color: var(--foreground-muted);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.modal-body ul {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
}

.modal-body li {
    font-size: 0.95rem;
    color: var(--foreground-muted);
    line-height: 1.7;
    margin-bottom: 0.5rem;
    list-style: disc;
}

.modal-date {
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: flex-end;
}

/* ===== Metrics Section ===== */
.metrics-section {
    position: relative;
    padding: 6rem 0;
    background: var(--background-secondary);
    z-index: 1;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .metrics-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .metrics-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.metric-card {
    position: relative;
    padding: 2rem 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.metric-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 40px rgba(99, 102, 241, 0.1);
}

.metric-card:hover::before {
    transform: scaleX(1);
}

.metric-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.1));
    border-radius: var(--radius);
    color: var(--primary-light);
    transition: all 0.3s ease;
}

.metric-card:hover .metric-icon {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    transform: scale(1.1);
}

.metric-number {
    display: inline;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--foreground);
    line-height: 1;
}

.metric-suffix {
    display: inline;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--primary-light);
}

.metric-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--foreground);
    margin: 0.5rem 0;
}

.metric-description {
    font-size: 0.8rem;
    color: var(--foreground-muted);
    line-height: 1.4;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--foreground-muted);
}

.trust-item svg {
    color: var(--success);
    flex-shrink: 0;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    position: relative;
    padding: 6rem 0;
    z-index: 1;
}

.testimonials-section .testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-section .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonials-section .testimonial-card {
    position: relative;
    padding: 2rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.testimonials-section .testimonial-card.featured {
    grid-column: 1 / -1;
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.02));
}

@media (min-width: 768px) {
    .testimonials-section .testimonial-card.featured {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: center;
    }
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--foreground-muted);
}

.testimonial-company {
    font-size: 0.85rem;
    color: var(--primary-light);
    font-weight: 500;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    color: var(--warning);
}

.testimonial-quote {
    font-size: 1rem;
    color: var(--foreground-muted);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-quote::before {
    content: '"';
    font-size: 2rem;
    color: var(--primary-light);
    opacity: 0.5;
    line-height: 0;
    vertical-align: middle;
    margin-right: 0.25rem;
}

/* Interface Preview */
.testimonial-interface {
    margin: 1.5rem 0;
}

.interface-preview {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.interface-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: var(--background-secondary);
    border-bottom: 1px solid var(--border);
}

.interface-dots {
    display: flex;
    gap: 0.375rem;
}

.interface-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
}

.interface-dots span:first-child {
    background: var(--error);
}

.interface-dots span:nth-child(2) {
    background: var(--warning);
}

.interface-dots span:last-child {
    background: var(--success);
}

.interface-title {
    font-size: 0.75rem;
    color: var(--foreground-muted);
}

.interface-content {
    display: flex;
    min-height: 150px;
}

.interface-sidebar {
    width: 50px;
    padding: 0.75rem 0.5rem;
    background: var(--background-secondary);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.interface-sidebar .sidebar-item {
    height: 8px;
    border-radius: 4px;
    background: var(--border);
}

.interface-sidebar .sidebar-item.active {
    background: var(--primary);
}

.interface-main {
    flex: 1;
    padding: 1rem;
}

.stat-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.mini-stat-card {
    padding: 0.5rem;
    background: var(--background-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
}

.mini-stat-card .stat-value {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-light);
}

.mini-stat-card .stat-label {
    font-size: 0.6rem;
    color: var(--foreground-muted);
}

.interface-chart {
    height: 40px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--primary));
    opacity: 0.2;
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
}

/* Testimonial Results */
.testimonial-results {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.result-item {
    text-align: center;
}

.result-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--success);
}

.result-label {
    font-size: 0.75rem;
    color: var(--foreground-muted);
}

/* Video CTA */
.video-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-lg);
    text-align: center;
}

@media (min-width: 768px) {
    .video-cta {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.video-cta-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.video-cta-content p {
    font-size: 0.95rem;
    color: var(--foreground-muted);
}

/* Map Countries */
.map-countries {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.map-countries span {
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--primary-light);
}

/* Footer Legal Links */
.footer-nav a {
    cursor: pointer;
}

.footer-nav a:hover {
    color: var(--primary-light);
}

/* Form Disclaimer Link */
.form-disclaimer a {
    color: var(--primary-light);
    text-decoration: underline;
}

.form-disclaimer a:hover {
    color: var(--primary);
}

/* Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.metric-card.animate .metric-number {
    animation: countUp 0.5s ease forwards;
}

/* ===== Hero Logo Styles ===== */
.hero-logo-space {
    margin-bottom: 2rem;
}

.hero-logo-img {
    height: 80px; /* Increased for the corporate logo */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.corporate-logo {
    border-radius: var(--radius);
    background: white;
    padding: 8px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.hero-logo-img:hover {
    transform: scale(1.05) translateY(-5px);
    filter: drop-shadow(0 10px 25px rgba(99, 102, 241, 0.2));
}

/* ===== Contact Form Logo Styles ===== */
.form-header-with-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header-logo {
    height: 65px;
    width: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
}

/* ===== Trusted By Marquee Styles - Redesigned ===== */
.trusted-by {
    padding: 6rem 0;
    background: var(--background-alt);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}

.trusted-by .section-header {
    margin-bottom: 4rem;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--background-alt), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--background-alt), transparent);
}

.marquee-content {
    display: flex;
    gap: 2.5rem;
    animation: marquee 60s linear infinite;
    width: max-content;
    align-items: center;
}

.client-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 130px;
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.light-mode .client-card {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.client-card img {
    height: 55px;
    width: 140px;
    object-fit: contain;
    filter: opacity(0.8);
    transition: all 0.4s ease;
}

.client-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.15);
    border-color: var(--primary-light);
}

.client-card:hover img {
    filter: opacity(1);
    transform: scale(1.05);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

