/* === About Page Styles === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1f2937;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ---- Utility ---- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ==============================
    NAVBAR (matching site-wide)
    ============================== */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid #f3f4f6;
}

.nav-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

@media (min-width: 640px) {
    .nav-inner {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .nav-inner {
        padding: 0 2rem;
    }
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand-link {
    display: flex;
    align-items: baseline;
    text-decoration: none;
}

.nav-brand-logo {
    height: 1.5rem;
    width: 1.5rem;
    margin-right: 0.5rem;
    margin-top: 0.75rem;
}

.nav-brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.nav-brand-sub {
    color: #6b7280;
    font-size: 0.875rem;
    margin-left: 0.5rem;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-brand-sub:hover {
    color: #374151;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    color: #374151;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover {
    color: #111827;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #6366f1;
    transition: width 0.3s ease-in-out;
}

.nav-link.active::after {
    width: 66.66%;
}

.nav-link.active {
    color: #6366f1;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-btn {
    color: #374151;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
    transition: color 0.2s;
    position: relative;
}

.nav-dropdown-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #6366f1;
    transition: width 0.3s ease-in-out;
}

.nav-dropdown:hover .nav-dropdown-btn::after {
    width: 100%;
}

.nav-dropdown-btn:hover {
    color: #111827;
}

.nav-dropdown-btn .chevron-icon {
    margin-left: 0.375rem;
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.nav-dropdown:hover .chevron-icon {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    width: 14rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    transform-origin: top;
    z-index: 50;
    border: 1px solid #f3f4f6;
    top: 100%;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s;
}

.nav-dropdown-item:hover {
    background: #f9fafb;
}

.dropdown-icon {
    font-size: 0.9rem;
    width: 20px;
    text-align: center;
    padding: 0.375rem;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dropdown-icon.blue {
    color: #3b82f6;
    background: #eff6ff;
}

.dropdown-icon.amber {
    color: #f59e0b;
    background: #fffbeb;
}

.dropdown-icon.sky {
    color: #0ea5e9;
    background: #f0f9ff;
}

.dropdown-icon.rose {
    color: #f43f5e;
    background: #fff1f2;
}

.dropdown-icon.violet {
    color: #8b5cf6;
    background: #f5f3ff;
}

.dropdown-icon.teal {
    color: #14b8a6;
    background: #f0fdfa;
}

.nav-cta {
    background: #0f0f23;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.nav-cta:hover {
    background: #1f2937;
    transform: translateY(-1px);
}

/* Mobile Nav */
.mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border-radius: 0.375rem;
    color: #9ca3af;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn:hover {
    color: #6b7280;
    background: #f3f4f6;
}

.mobile-menu-btn:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px #6366f1;
}

.menu-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #333;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.mobile-nav-btn-wrapper {
    display: none;
}

@media (max-width: 767px) {
    .mobile-nav-btn-wrapper {
        display: flex;
        align-items: center;
    }
}

.mobile-menu-wrapper {
    display: none;
    background: #fff;
    border-top: 1px solid #f3f4f6;
}

@media (min-width: 768px) {
    .mobile-menu-wrapper {
        display: none !important;
    }
}

.mobile-menu-wrapper.open {
    display: block;
}

.mobile-menu-inner {
    padding: 0.5rem 0.75rem 0.75rem;
}

@media (min-width: 640px) {
    .mobile-menu-inner {
        padding: 0.5rem 0.75rem 0.75rem;
    }
}

.mobile-nav-items {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-nav-link {
    color: #374151;
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
}

.mobile-nav-link:hover {
    color: #111827;
}

.active-mobile {
    background: #e5e7eb;
    color: #6366f1;
}

.mobile-sub-nav {
    padding-left: 0.75rem;
}

.mobile-sub-nav > * + * {
    margin-top: 0.25rem;
}

.mobile-sub-label {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-sub-link {
    color: #374151;
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    padding-left: 1.5rem;
    border-left: 2px solid transparent;
    text-decoration: none;
}

.mobile-sub-link:hover {
    color: #111827;
}

.mobile-sub-link.blue:hover {
    border-color: #3b82f6;
    background: #eff6ff;
}

.mobile-sub-link.amber:hover {
    border-color: #f59e0b;
    background: #fffbeb;
}

.mobile-sub-link.sky:hover {
    border-color: #0ea5e9;
    background: #f0f9ff;
}

.mobile-sub-link.rose:hover {
    border-color: #f43f5e;
    background: #fff1f2;
}

.mobile-sub-link.violet:hover {
    border-color: #8b5cf6;
    background: #f5f3ff;
}

.mobile-sub-link.teal:hover {
    border-color: #14b8a6;
    background: #f0fdfa;
}

.mobile-nav-cta {
    background: #0f0f23;
    color: white;
    display: block;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    margin-top: 0.5rem;
}

/* ==============================
    ABOUT HERO
    ============================== */
.about-hero {
    position: relative;
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 1.5rem;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Subtle radial glow */
.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    animation: glowPulse 6s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

/* Grid pattern */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 40s linear infinite;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

/* Floating orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.6;
}

.hero-orb-1 {
    width: 350px;
    height: 350px;
    background: rgba(99, 102, 241, 0.25);
    top: 10%;
    left: 5%;
    animation: floatOrb1 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 250px;
    height: 250px;
    background: rgba(139, 92, 246, 0.2);
    bottom: 15%;
    right: 5%;
    animation: floatOrb2 10s ease-in-out infinite;
}

.hero-orb-3 {
    width: 180px;
    height: 180px;
    background: rgba(99, 102, 241, 0.2);
    top: 50%;
    left: 65%;
    animation: floatOrb3 12s ease-in-out infinite;
}

@keyframes floatOrb1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -40px) scale(1.1); }
}

@keyframes floatOrb2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, 25px) rotate(180deg); }
}

@keyframes floatOrb3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -30px); }
}

/* Decorative circles */
.hero-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(99, 102, 241, 0.15);
}

.hero-circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: rotateCircle 30s linear infinite;
}

.hero-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -80px;
    animation: rotateCircle 35s linear infinite reverse;
}

.hero-circle-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 5%;
    border: 1px solid rgba(139, 92, 246, 0.08);
    animation: rotateCircle 25s linear infinite;
}

@keyframes rotateCircle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(99, 102, 241, 0.4);
    border-radius: 50%;
    animation: particleFloat 15s ease-in-out infinite;
}

.particle-1 { width: 10px; height: 10px; top: 20%; left: 20%; animation-delay: 0s; }
.particle-2 { width: 8px; height: 8px; top: 70%; left: 80%; animation-delay: 2s; }
.particle-3 { width: 12px; height: 12px; top: 40%; left: 90%; animation-delay: 4s; }
.particle-4 { width: 6px; height: 6px; top: 80%; left: 15%; animation-delay: 6s; }
.particle-5 { width: 9px; height: 9px; top: 10%; left: 60%; animation-delay: 8s; }
.particle-6 { width: 5px; height: 5px; top: 50%; left: 30%; animation-delay: 10s; }

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-40px) rotate(90deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-60px) rotate(270deg);
        opacity: 0.8;
    }
}

.about-wrapper {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 1.5rem 0;
}
@media (min-width: 768px) { .about-wrapper { padding: 2rem 0; } }
@media (min-width: 1024px) { .about-wrapper { padding: 2.5rem 0; } }

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    margin-bottom: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #6366f1;
    border-radius: 50%;
}

/* Title */
.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    white-space: nowrap;
}
@media (min-width: 768px) { .hero-title { font-size: 4rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 5rem; } }

.title-highlight {
    color: #6366f1;
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1.375rem; } }

/* CTA Buttons */
.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: #0f172a;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 9999px;
    transition: all 0.2s ease;
}
.btn-primary:hover {
    background: #1e293b;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: transparent;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 9999px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}
.btn-secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

/* Trust indicators */
.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid #f1f5f9;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.trust-number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
}
@media (min-width: 768px) { .trust-number { font-size: 1.75rem; } }

.trust-label {
    font-size: 0.8125rem;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

    .trust-divider {
        height: 30px;
    }
}

/* ==============================
    ABOUT STORY SECTION
    ============================== */
.about-story {
    padding: 6rem 1.5rem;
    background: #ffffff;
}
@media (min-width: 1024px) { .about-story { padding: 8rem 2rem; } }

.about-story-container {
    max-width: 72rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}
@media (min-width: 1024px) { .about-story-container { grid-template-columns: 1fr 1fr; } }

.about-story-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-story-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.05));
    color: #6366f1;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    width: fit-content;
}

.about-story-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
}
@media (min-width: 768px) { .about-story-title { font-size: 2.5rem; } }

.about-story-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-story-text p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
}

.about-story-text strong {
    color: #111827;
    font-weight: 600;
}

.about-story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.story-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.story-stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #6366f1;
}

.story-stat-label {
    font-size: 0.8125rem;
    color: #6b7280;
    font-weight: 500;
}

.about-story-image {
    order: -1;
}
@media (min-width: 1024px) { .about-story-image { order: 1; } }

.about-story-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.about-story-img {
    width: 100%;
    height: auto;
    display: block;
}

.about-story-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(17, 24, 39, 0.9), transparent);
    padding: 2rem;
}

.about-story-overlay-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    color: #fff;
}

.about-story-overlay-text span:first-child {
    font-size: 0.8125rem;
    font-weight: 500;
    opacity: 0.8;
}

.about-story-overlay-text span:last-child {
    font-size: 1rem;
    font-weight: 600;
}

/* ==============================
    FOOTER
    ============================== */
.footer {
    background: #111827;
    color: #9ca3af;
    padding-top: 4rem;
    padding-bottom: 2rem;
    position: relative;
}
.footer::before {
    content: ''; position: absolute; top: -60px; left: 0; right: 0; height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%230f172a' d='M0,30 C360,60 720,0 1080,30 C1260,45 1380,35 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }

.footer-brand { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer-brand img { height: 1.75rem; width: 1.75rem; }
.footer-brand span { font-weight: 700; color: #fff; font-size: 1.125rem; }
.footer-desc { font-size: 0.875rem; line-height: 1.7; }

.footer-heading { color: #fff; font-weight: 600; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.875rem; color: #9ca3af; transition: color 0.3s; text-decoration: none; }
.footer-links a:hover { color: #a78bfa; }

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-copy { font-size: 0.875rem; margin: 0; }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a { color: #6b7280; transition: color 0.3s; text-decoration: none; }
.footer-socials a:hover { color: #8b5cf6; }
.footer-socials a i { font-size: 1.125rem; }

/* ===== COMPANIES / LOGOS MARQUEE ===== */
.companies-section { 
    padding-top: 3rem; 
    padding-bottom: 3rem; 
    background: white; 
    overflow: hidden; 
}

.companies-heading {
    font-size: 1.5rem; 
    font-weight: 500; 
    color: #374151;
    margin-bottom: 2rem; 
    font-family: 'Inter', sans-serif;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0;
}
@media (min-width: 768px) { .companies-heading { font-size: 1.75rem; } }
@media (min-width: 1024px) { .companies-heading { font-size: 2rem; } }

.heading-underline-black { 
    position: relative; 
    text-decoration: none; 
    display: inline-block;
}
.heading-underline-black::after {
    content: ''; 
    position: absolute; 
    bottom: -10px; 
    left: 50%;
    transform: translateX(-50%);
    width: 60px; 
    height: 2px; 
    background-color: #9ca3af;
    transition: width 0.3s ease-in-out;
}
.heading-underline-black:hover::after { 
    width: 80px; 
    background-color: #6b7280;
}

.container-xl { 
    max-width: 72rem; 
    margin-left: auto; 
    margin-right: auto; 
    padding: 0 1.25rem;
}
.section-centered { text-align: center; }

.logo-marquee { 
    display: flex; 
    align-items: center;
    gap: 2rem;
}
.company-logo { 
    filter: grayscale(100%); 
    opacity: 0.8;
    transition: all 0.3s ease;
}
.company-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}
.company-logo.no-select { user-select: none; -webkit-user-drag: none; pointer-events: none; }

.company-logo.size-xs { height: 1.75rem; }
@media (min-width: 640px) { .company-logo.size-xs { height: 2.25rem; } }
.company-logo.size-sm { height: 2rem; }
@media (min-width: 640px) { .company-logo.size-sm { height: 2.75rem; } }
.company-logo.size-md { height: 2.5rem; }
@media (min-width: 640px) { .company-logo.size-md { height: 3.5rem; } }
.company-logo.size-lg { height: 4rem; }
@media (min-width: 640px) { .company-logo.size-lg { height: 7rem; } }
.company-logo.size-1 { height: 35px; }
@media (min-width: 640px) { .company-logo.size-1 { height: 50px; } }

.company-logo.lower {
    margin-top: 0.25rem;
}
@media (min-width: 640px) {
    .company-logo.lower {
        margin-top: 0.5rem;
    }
}

.company-logo.higher {
    margin-top: -0.5rem;
}
@media (min-width: 640px) {
    .company-logo.higher {
        margin-top: -0.75rem;
    }
}

/* ===== MARQUEE ===== */
.marquee-wrapper {
    max-width: 48rem;
    margin: 0 auto;
    position: relative;
}

.marquee-container {
    width: 100%; 
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex; 
    animation: marquee-scroll 40s linear infinite;
    width: max-content; 
    will-change: transform;
    padding: 1.5rem 0;
}
.marquee-content:hover {
    animation-play-state: paused;
}
@media (min-width: 768px) { .marquee-content { animation-duration: 50s; } }

@keyframes marquee-scroll { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(-50%); } 
}

/* ==============================
    RESPONSIVE STYLES
    ============================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        white-space: nowrap;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-cta a {
        width: 100%;
    }

    .hero-trust {
        gap: 1.5rem;
        padding-top: 2rem;
        flex-wrap: wrap;
    }

    .trust-number {
        font-size: 1.25rem;
    }

    .trust-label {
        font-size: 0.75rem;
    }

    .trust-divider {
        height: 30px;
    }

    /* Companies Section Mobile */
    .companies-section {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .companies-heading {
        font-size: 1.375rem;
        margin-bottom: 1.25rem;
    }

    .heading-underline-black::after {
        bottom: -8px;
        width: 50px;
        height: 2px;
    }
    .heading-underline-black:hover::after {
        width: 65px;
    }

    .logo-marquee {
        gap: 1rem;
    }

    .company-logo.size-xs { height: 1.5rem; }
    .company-logo.size-sm { height: 1.75rem; }
    .company-logo.size-md { height: 2rem; }
    .company-logo.size-lg { height: 3.5rem; }
    .company-logo.size-1 { height: 30px; }

    .marquee-wrapper {
        max-width: 36rem;
    }

    .marquee-content {
        animation-duration: 25s;
        padding: 0.75rem 0;
    }
}

@media (max-width: 480px) {
    .about-wrapper {
        padding: 6rem 1.25rem;
    }

    .hero-title {
        font-size: 1.85rem;
        white-space: nowrap;
    }

    .hero-subtitle {
        font-size: 1rem;
        white-space: normal;
    }

    .hero-trust {
        gap: 1.25rem;
    }

    .trust-number {
        font-size: 1.125rem;
    }

    /* Companies Section Extra Small */
    .companies-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .companies-heading {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .heading-underline-black::after {
        bottom: -6px;
        width: 40px;
        height: 1.5px;
    }
    .heading-underline-black:hover::after {
        width: 50px;
    }

    .logo-marquee {
        gap: 0.5rem;
    }

    .company-logo.size-xs { height: 1.25rem; }
    .company-logo.size-sm { height: 1.5rem; }
    .company-logo.size-md { height: 1.75rem; }
    .company-logo.size-lg { height: 3rem; }
    .company-logo.size-1 { height: 25px; }

    .marquee-wrapper {
        max-width: 28rem;
    }

    .marquee-content {
        animation-duration: 20s;
        padding: 0.5rem 0;
    }

    /* Testimonials Section Mobile */
    .testimonials-section {
        padding: 3rem 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 3rem 1.5rem;
    background: linear-gradient(to bottom right, #eef2ff, #faf5ff, #fdf2f8);
}
@media (min-width: 640px) { .testimonials-section { padding: 5rem 1.5rem; } }
@media (min-width: 1024px) { .testimonials-section { padding: 5rem 2rem; } }

.testimonials-heading {
    font-size: 2.25rem; font-weight: 700; margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #9333ea, #4f46e5);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
@media (min-width: 640px) { .testimonials-heading { font-size: 3rem; } }
@media (min-width: 768px) { .testimonials-heading { font-size: 3.75rem; } }

.section-subheading {
    font-size: 1.25rem; color: #4b5563; margin-bottom: 3rem; line-height: 1.75;
}

.testimonials-grid {
    display: grid; grid-template-columns: 1fr; gap: 2.5rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
    background: linear-gradient(to bottom right, white, #f9fafb);
    border-radius: 1.5rem; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    padding: 2rem; border: 1px solid #f3f4f6;
    transition: all 0.5s;
    transform: translateZ(0);
    backface-visibility: hidden;
}
.review-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.review-card.hover-purple:hover { box-shadow: 0 25px 50px -12px rgba(192,132,252,0.5); }
.review-card.hover-indigo:hover { box-shadow: 0 25px 50px -12px rgba(165,180,252,0.5); }
.review-card.hover-pink:hover { box-shadow: 0 25px 50px -12px rgba(249,168,212,0.5); }

.review-stars { display: flex; align-items: center; margin-bottom: 1.5rem; }
.review-stars .stars { display: flex; color: #facc15; margin-right: 0.75rem; }
.review-stars .stars i { font-size: 1.125rem; }
.review-stars .review-date { margin-left: auto; font-size: 0.875rem; color: #6b7280; font-weight: 500; }

.review-text {
    color: #374151; margin-bottom: 1.5rem; font-style: italic;
    font-size: 1.125rem; line-height: 1.75; transition: color 0.3s;
}
.review-card.hover-purple:hover .review-text { color: #581c87; }
.review-card.hover-indigo:hover .review-text { color: #312e81; }
.review-card.hover-pink:hover .review-text { color: #831843; }

.review-author {
    display: flex; align-items: center; padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}
.review-avatar {
    width: 3.5rem; height: 3.5rem; border-radius: 50%;
    object-fit: cover; border: 2px solid; padding: 2px; transition: border-color 0.3s;
}
.review-avatar.purple-border { border-color: #d8b4fe; }
.review-avatar.indigo-border { border-color: #a5b4fc; }
.review-avatar.pink-border { border-color: #f9a8d4; }
.review-card:hover .review-avatar.purple-border { border-color: #c084fc; }
.review-card:hover .review-avatar.indigo-border { border-color: #818cf8; }
.review-card:hover .review-avatar.pink-border { border-color: #f472b6; }

.review-author-info { margin-left: 1rem; }
.review-author-name {
    font-weight: 700; color: #111827; font-size: 1.125rem; transition: color 0.3s;
}
.review-card.hover-purple:hover .review-author-name { color: #7c3aed; }
.review-card.hover-indigo:hover .review-author-name { color: #4338ca; }
.review-card.hover-pink:hover .review-author-name { color: #be185d; }
.review-author-role { font-size: 0.875rem; color: #4b5563; font-weight: 500; }

.stats-row {
    margin-top: 3rem; text-align: center;
}
.stats-inline { display: inline-flex; gap: 2rem; }
.stat-item { text-align: center; }
.stat-value { font-size: 1.875rem; font-weight: 700; color: #4f46e5; }
@media (min-width: 640px) { .stat-value { font-size: 2.25rem; } }
.stat-label { font-size: 0.875rem; color: #4b5563; margin-top: 0.25rem; }

/* ===== NEW TESTIMONIALS SECTION ===== */
.testimonials-section { padding: 5rem 1rem; background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 50%, #faf5ff 100%); position: relative; overflow: hidden; }
.testimonials-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.testimonial-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; }
.testimonial-orb-1 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%); top: -100px; right: -100px; animation: orbFloat 8s ease-in-out infinite; }
.testimonial-orb-2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(168, 85, 247, 0.25) 0%, transparent 70%); bottom: -50px; left: -50px; animation: orbFloat 10s ease-in-out infinite reverse; }
.testimonial-orb-3 { width: 200px; height: 200px; background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); animation: orbFloat 12s ease-in-out infinite; }
@keyframes orbFloat { 0%, 100% { transform: translate(0, 0); } 25% { transform: translate(20px, -20px); } 50% { transform: translate(0, 20px); } 75% { transform: translate(-20px, -10px); } }
.testimonials-header { text-align: center; margin-bottom: 3rem; position: relative; z-index: 1; }
.testimonial-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.2); border-radius: 9999px; margin-bottom: 1.5rem; }
.testimonial-badge-icon { color: #6366f1; }
.testimonial-badge span:last-child { font-size: 0.875rem; font-weight: 600; color: #4338ca; text-transform: uppercase; letter-spacing: 0.05em; }
.testimonials-heading { font-size: 2.25rem; font-weight: 800; color: #111827; margin-bottom: 1rem; font-family: 'Poppins', sans-serif; line-height: 1.2; }
.testimonials-subheading { font-size: 1.125rem; color: #4b5563; max-width: 600px; margin: 0 auto; line-height: 1.7; }
.testimonial-carousel { position: relative; z-index: 1; }
.testimonial-track { display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; padding: 1rem 0 2rem; }
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-slide { flex: 0 0 100%; scroll-snap-align: center; min-width: 0; }
@media (min-width: 768px) { .testimonial-slide { flex: 0 0 calc(50% - 0.75rem); } }
@media (min-width: 1024px) { .testimonial-slide { flex: 0 0 calc(33.333% - 1rem); } }
.testimonial-card { background: white; border-radius: 1.5rem; padding: 2rem; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); border: 1px solid rgba(0, 0, 0, 0.05); position: relative; overflow: hidden; transition: all 0.4s ease; height: 100%; }
.testimonial-card:hover { transform: translateY(-8px); box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.testimonial-card-inner { position: relative; z-index: 1; }
.testimonial-quote-icon { width: 48px; height: 48px; background: linear-gradient(135deg, #6366f1, #8b5cf6); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.testimonial-quote-icon i { color: white; font-size: 1.25rem; }
.testimonial-rating { display: flex; gap: 0.25rem; margin-bottom: 1.25rem; }
.testimonial-rating i { color: #fbbf24; font-size: 1rem; }
.testimonial-text { font-size: 1.0625rem; line-height: 1.8; color: #374151; margin-bottom: 1.5rem; font-style: normal; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; padding-top: 1.25rem; border-top: 1px solid #f3f4f6; }
.testimonial-avatar { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 2px solid #e5e7eb; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author-info { flex: 1; min-width: 0; }
.testimonial-author-name { font-weight: 700; font-size: 1rem; color: #111827; margin-bottom: 0.125rem; }
.testimonial-author-role { font-size: 0.875rem; color: #6b7280; font-weight: 500; }
.testimonial-card-decoration { position: absolute; bottom: -30px; right: -30px; width: 100px; height: 100px; background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1)); border-radius: 50%; pointer-events: none; }
.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2rem; }
.testimonial-arrow { width: 44px; height: 44px; border-radius: 50%; background: white; border: 1px solid #e5e7eb; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; color: #374151; flex-shrink: 0; }
.testimonial-arrow:hover { background: #6366f1; border-color: #6366f1; color: white; transform: scale(1.05); }
.testimonial-dots { display: flex; gap: 0.5rem; }
.testimonial-dot { width: 10px; height: 10px; border-radius: 50%; background: #d1d5db; cursor: pointer; transition: all 0.3s ease; }
.testimonial-dot.active { background: #6366f1; transform: scale(1.2); }
.testimonial-dot:hover { background: #6366f1; }
.testimonial-stats { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1.5rem; margin-top: 4rem; padding-top: 3rem; border-top: 1px solid #e5e7eb; position: relative; z-index: 1; }
.testimonial-stat { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-stat-icon { width: 48px; height: 48px; background: linear-gradient(135deg, #6366f1, #8b5cf6); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.testimonial-stat-icon i { color: white; font-size: 1.125rem; }
.testimonial-stat-content { display: flex; flex-direction: column; }
.testimonial-stat-value { font-size: 1.5rem; font-weight: 800; color: #111827; line-height: 1; }
.testimonial-stat-label { font-size: 0.875rem; color: #6b7280; margin-top: 0.25rem; }
.testimonial-stat-divider { width: 1px; height: 48px; background: #e5e7eb; }

/* ===== NEW TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 50%, #faf5ff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.testimonial-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.testimonial-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: orbFloat 8s ease-in-out infinite;
}

.testimonial-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.25) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

.testimonial-orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat 12s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(20px, -20px); }
    50% { transform: translate(0, 20px); }
    75% { transform: translate(-20px, -10px); }
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.testimonial-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.2);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.testimonial-badge-icon {
    color: #6366f1;
}

.testimonial-badge span:last-child {
    font-size: 0.875rem;
    font-weight: 600;
    color: #4338ca;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonials-heading {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.testimonials-subheading {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.testimonials-wrapper {
    display: flex;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.testimonial-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-block {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    transition: all 0.4s ease;
    width: 100%;
    aspect-ratio: 4/3;
}

.testimonial-image-block {
    width: 100%;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.testimonial-review-block {
    background: white;
    padding: 1.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    box-sizing: border-box;
}

.testimonial-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.testimonial-col:nth-child(1) .testimonial-image-block img {
    object-position: center 10%;
}

.testimonial-col:nth-child(2) .testimonial-image-block img {
    object-fit: cover;
    object-position: center center;
}

.testimonial-image-block:hover img {
    transform: scale(1.05);
}

.testimonial-block-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.testimonial-image-block:hover .testimonial-block-overlay {
    opacity: 0.5;
}

.testimonial-review-block {
    background: white;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-review-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.testimonial-review-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 0.85rem;
}

.testimonial-text {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #374151;
    margin-bottom: 0.75rem;
    font-style: normal;
    max-width: 100%;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.25rem;
    font-style: normal;
}

.testimonial-author {
    padding-top: 0.75rem;
    border-top: 1px solid #f3f4f6;
    width: 100%;
}

.testimonial-author-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #111827;
    margin-bottom: 0.1rem;
    line-height: 1.2;
}

.testimonial-author-role {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.2;
}

.testimonial-author-name {
    font-weight: 700;
    font-size: 1rem;
    color: #111827;
    margin-bottom: 0.25rem;
}

.testimonial-author-role {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.testimonial-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e7eb;
    position: relative;
    z-index: 1;
}

.testimonial-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-stat-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-stat-icon i {
    color: white;
    font-size: 1.125rem;
}

.testimonial-stat-content {
    display: flex;
    flex-direction: column;
}

.testimonial-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    line-height: 1;
}

.testimonial-stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

    .testimonial-stat-divider {
        width: 1px;
        height: 48px;
        background: #e5e7eb;
    }

/* ===== WE CARE ABOUT YOUR CUSTOMERS SECTION ===== */
.care-section {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}
@media (min-width: 640px) { .care-section { padding: 6rem 1rem; } }
@media (min-width: 1024px) { .care-section { padding: 7rem 1rem; } }

/* ===== CORE VALUES SECTION ===== */
.core-values-section {
    background: #F8F5F5;
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    padding: 0;
}

.core-values-container {
    position: relative;
    height: calc(100vh - 4rem);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
@media (min-width: 768px) { .core-values-container { height: calc(100vh - 4.5rem); } }

.core-values-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.2;
    white-space: pre-line;
    position: relative;
    z-index: 10;
    padding: 0 1.5rem;
}
@media (min-width: 768px) { .core-values-title { font-size: 2rem; } }
@media (min-width: 1024px) { .core-values-title { font-size: 2.625rem; } }

.title-highlight-wrapper {
    position: relative;
    display: inline-block;
}

.title-highlight-content {
    position: relative;
    z-index: 20;
    padding-left: 4px;
}

.title-highlight-mark {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0%;
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 50%, #3B82F6 100%);
    z-index: 10;
}

.core-values-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    z-index: 15;
}
@media (min-width: 640px) { .core-values-wrapper { padding: 3rem 1.5rem; z-index: 15; } }

.core-values-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 372px;
}
@media (min-width: 640px) { .core-values-cards { gap: 6rem; max-width: 100%; align-items: stretch; flex-direction: row; flex-wrap: wrap; justify-content: center; } }

.core-value-card {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 372px;
    position: relative;
    transition: transform 0.3s ease;
}
@media (min-width: 640px) { .core-value-card { padding: 2rem 1.5rem; } }

.core-value-1 {
    transform: rotate(-4deg);
}
@media (min-width: 640px) { .core-value-1 { transform: rotate(-4deg); } }

.core-value-2 {
    background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
    transform: rotate(4deg);
    margin-left: auto;
}
@media (min-width: 640px) { .core-value-2 { transform: rotate(4deg); margin-left: 0; } }

.core-value-3 {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    transform: rotate(-4deg);
}
@media (min-width: 640px) { .core-value-3 { transform: rotate(-4deg); } }

.core-value-4 {
    background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
    transform: rotate(4deg);
    margin-left: auto;
}
@media (min-width: 640px) { .core-value-4 { transform: rotate(4deg); margin-left: 0; } }

.core-value-5 {
    background: linear-gradient(135deg, #8367ee 0%, #6366f1 100%);
    transform: rotate(-4deg);
}
@media (min-width: 640px) { .core-value-5 { transform: rotate(-4deg); } }

.core-value-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.core-value-icon i {
    font-size: 1.5rem;
    color: white;
}

.core-value-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: white;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}
@media (min-width: 640px) { .core-value-title { font-size: 1.5rem; } }

.core-value-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

@media (max-width: 639px) {
    .core-values-title {
        font-size: 1.5rem;
        font-weight: 700;
    }
    
    .core-value-card {
        padding: 1.5rem 1.25rem;
    }
    
    .core-value-icon {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .core-value-icon i {
        font-size: 1.25rem;
    }
    
    .core-value-title {
        font-size: 1.25rem;
    }
    
    .core-value-text {
        font-size: 0.9375rem;
    }
}

/* ===== JOURNEY SECTION ===== */
.journey-section {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #f8f5f5 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}
@media (min-width: 640px) { .journey-section { padding: 7rem 1.5rem; } }
@media (min-width: 1024px) { .journey-section { padding: 8rem 1rem; } }

.journey-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.journey-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.journey-badge-dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.journey-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}
@media (min-width: 640px) { .journey-title { font-size: 2.5rem; } }
@media (min-width: 1024px) { .journey-title { font-size: 3rem; } }

.journey-subtitle {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}
@media (min-width: 640px) { .journey-subtitle { font-size: 1.125rem; } }

.journey-timeline-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 372px;
    margin: 0 auto;
    position: relative;
}
@media (min-width: 640px) {
    .journey-timeline-wrapper {
        max-width: 100%;
        flex-direction: row;
        align-items: stretch;
        overflow-x: auto;
        padding: 2rem 0;
        scroll-behavior: smooth;
    }
}
@media (min-width: 1024px) {
    .journey-timeline-wrapper {
        padding: 3rem 0;
    }
}

.journey-start-marker {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin: 0 auto 1rem;
}
@media (min-width: 640px) {
    .journey-start-marker {
        flex-direction: row;
        margin: 0 1.5rem 0 0;
    }
}

.journey-logo {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #8367EE 0%, #6366F1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    position: relative;
}
@media (min-width: 640px) {
    .journey-logo {
        width: 120px;
        height: 120px;
    }
}

.journey-logo::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, #6366F1, transparent);
}
@media (min-width: 640px) {
    .journey-logo::after {
        bottom: unset;
        left: unset;
        right: -50px;
        top: 50%;
        transform: translateY(-50%);
        width: 50px;
        height: 2px;
        background: linear-gradient(to right, #6366F1, transparent);
    }
}

.journey-blocks-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}
@media (min-width: 640px) {
    .journey-blocks-container {
        flex-direction: row;
        gap: 1.5rem;
        flex-wrap: nowrap;
    }
}

.journey-block-item {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 280px;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}
@media (min-width: 640px) {
    .journey-block-item {
        width: 280px;
        padding: 2rem;
        gap: 1rem;
    }
}
@media (min-width: 1024px) {
    .journey-block-item {
        width: 320px;
    }
}

.journey-block-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
}

.journey-block-item:nth-child(odd) {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
}

.journey-block-item:nth-child(even) {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.journey-block-item-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}
@media (min-width: 640px) {
    .journey-block-item-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

.journey-block-item-border {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #8B5CF6, #6366F1);
    border-radius: 0 4px 4px 0;
    opacity: 0.5;
}
@media (min-width: 640px) {
    .journey-block-item-border {
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        width: 0;
        height: 4px;
        border-radius: 0 0 4px 4px;
    }
}

.journey-block-item:hover .journey-block-item-border {
    height: 40px;
}
@media (min-width: 640px) {
    .journey-block-item:hover .journey-block-item-border {
        width: 40px;
        height: 4px;
    }
}

.journey-block-item-content {
    z-index: 1;
}

.journey-block-item-year {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366F1;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}
@media (min-width: 640px) {
    .journey-block-item-year {
        font-size: 1.75rem;
    }
}

.journey-block-item-description {
    font-size: 0.9375rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
}
@media (min-width: 640px) {
    .journey-block-item-description {
        font-size: 1rem;
    }
}

/* Custom scrollbar for journey section */
@media (min-width: 640px) {
    .journey-timeline-wrapper::-webkit-scrollbar {
        height: 8px;
    }
    
    .journey-timeline-wrapper::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }
    
    .journey-timeline-wrapper::-webkit-scrollbar-thumb {
        background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
        border-radius: 4px;
    }
    
    .journey-timeline-wrapper::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
    }
}


.care-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.care-bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.care-content {
    position: relative;
    z-index: 1;
    max-width: 96rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.care-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.care-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(99, 102, 241, 0.4);
    border-radius: 9999px;
    margin-bottom: 1.75rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.15);
    position: relative;
    overflow: hidden;
}

.care-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: badgeShimmer 3s ease-in-out infinite;
}

@keyframes badgeShimmer {
    0%, 100% {
        transform: translateX(-100%) skewX(-20deg);
    }
    50% {
        transform: translateX(100%) skewX(-20deg);
    }
}

.care-badge-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    position: relative;
    z-index: 1;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(99, 102, 241, 0);
    }
}

.care-badge-icon {
    color: #a78bfa;
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

.care-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    position: relative;
    z-index: 1;
}

.care-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}
@media (min-width: 768px) { .care-title { font-size: 2.75rem; } }
@media (min-width: 1024px) { .care-title { font-size: 3.5rem; } }

.care-subtitle {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}
@media (min-width: 768px) { .care-subtitle { font-size: 1.25rem; } }

.care-description {
    font-size: 1rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 1.5rem auto 0;
    line-height: 1.8;
    opacity: 0.9;
}
@media (min-width: 768px) { .care-description { font-size: 1.0625rem; } }

.care-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
    max-width: 100%;
    padding: 0 1.5rem;
    width: 100%;
}
@media (min-width: 640px) { .care-cards { gap: 1.5rem; padding: 0 2rem; } }
@media (min-width: 768px) { .care-cards { gap: 1.5rem; padding: 0 2rem; } }
@media (min-width: 1024px) {
    .care-cards { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding: 0 1.5rem; width: 100%; max-width: 100rem; }
}

.care-card {
    position: relative;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 1.25rem;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}
@media (min-width: 768px) { .care-card { padding: 2.75rem 1.75rem; } }
@media (min-width: 1024px) { .care-card { padding: 3rem 2.25rem; min-height: 320px; } }

.care-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 1.5rem;
    padding: 2px;
    background: linear-gradient(135deg, transparent, rgba(99, 102, 241, 0.5), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.care-card:hover {
    transform: translateY(-8px);
    background: rgba(30, 41, 59, 0.8);
}

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

.care-card-1 { transform: rotate(3deg); }
.care-card-1:hover { transform: rotate(0deg) translateY(-8px); }

.care-card-2 { transform: rotate(-2deg); }
.care-card-2:hover { transform: rotate(0deg) translateY(-8px); }

.care-card-3 { transform: rotate(1deg); }
.care-card-3:hover { transform: rotate(0deg) translateY(-8px); }

.care-card-4 { transform: rotate(-3deg); }
.care-card-4:hover { transform: rotate(0deg) translateY(-8px); }

@media (min-width: 768px) {
    .care-card-1 { transform: rotate(5deg); }
    .care-card-2 { transform: rotate(-3deg); }
    .care-card-3 { transform: rotate(2deg); }
    .care-card-4 { transform: rotate(-4deg); }
}

.care-card-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1.5rem;
    pointer-events: none;
}

.care-card-1 .care-card-border {
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.care-card-2 .care-card-border {
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.care-card-3 .care-card-border {
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.care-card-4 .care-card-border {
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.care-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.875rem;
    font-size: 1.125rem;
}
@media (min-width: 640px) { .care-card-icon { width: 54px; height: 54px; font-size: 1.1875rem; } }
@media (min-width: 768px) { .care-card-icon { width: 56px; height: 56px; font-size: 1.25rem; } }
@media (min-width: 1024px) { .care-card-icon { width: 60px; height: 60px; font-size: 1.3125rem; } }

.care-card-1 .care-card-icon {
    background: rgba(236, 72, 153, 0.15);
    color: #f472b6;
}

.care-card-2 .care-card-icon {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
}

.care-card-3 .care-card-icon {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
}

.care-card-4 .care-card-icon {
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
}

.care-card-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1;
}
@media (min-width: 768px) { .care-card-number { font-size: 2.25rem; } }
@media (min-width: 1024px) { .care-card-number { font-size: 2.5rem; } }

.care-card-label {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
@media (min-width: 768px) { .care-card-label { font-size: 0.8125rem; } }
@media (min-width: 1024px) { .care-card-label { font-size: 0.875rem; } }

.care-card-text {
    font-size: 0.75rem;
    color: #cbd5e1;
    line-height: 1.5;
    margin-top: 0.625rem;
    opacity: 0.85;
    max-width: 100%;
}
@media (min-width: 768px) { .care-card-text { font-size: 0.8125rem; } }
@media (min-width: 1024px) { .care-card-text { font-size: 0.875rem; } }

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

.btn-care {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-care:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

@media (max-width: 1024px) {
    .care-section {
        padding: 5rem 1rem;
    }

    .care-title {
        font-size: 2.25rem;
    }

    .care-description {
        font-size: 1rem;
    }

    .care-card-text {
        font-size: 0.5625rem;
    }

    .care-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1.25rem;
        max-width: 100%;
    }

    .care-card {
        padding: 2.25rem 1.25rem;
    }

    .care-card-number {
        font-size: 2.25rem;
    }
}

@media (max-width: 640px) {
    .care-section {
        padding: 4rem 1rem;
    }

    .care-title {
        font-size: 1.75rem;
    }

    .care-subtitle {
        font-size: 1rem;
    }

    .care-description {
        font-size: 0.9375rem;
    }

    .care-card-text {
        font-size: 0.6875rem;
    }

    .care-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .care-card {
        padding: 2rem 1.25rem;
    }

    .care-card {
        transform: none !important;
    }

    .care-card:hover {
        transform: translateY(-4px) !important;
    }

    .care-card-number {
        font-size: 2rem;
    }

    .care-card-label {
        font-size: 0.6875rem;
    }

    .care-card-text {
        font-size: 0.625rem;
    }

    .btn-care {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
    }
}

@media (max-width: 1024px) {
    .testimonials-wrapper {
        flex-wrap: wrap;
    }

    .testimonial-col {
        flex: 1 1 45%;
        min-width: 280px;
    }

    .testimonial-col:nth-child(3) {
        flex: 1 1 100%;
        max-width: 50%;
        margin: 0 auto;
    }

    .testimonial-review-block {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.8rem;
    }

    .testimonial-rating i {
        font-size: 0.8rem;
    }

    .testimonial-author-name {
        font-size: 0.85rem;
    }

    .testimonial-author-role {
        font-size: 0.75rem;
    }
}

@media (max-width: 640px) {
    .testimonials-section {
        padding: 3rem 1rem;
    }

    .testimonials-heading {
        font-size: 1.75rem;
    }

    .testimonials-subheading {
        font-size: 1rem;
    }

    .testimonials-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .testimonial-col {
        flex: 1 1 100%;
        min-width: auto;
    }

    .testimonial-col:nth-child(3) {
        max-width: 100%;
    }

    .testimonial-review-block {
        padding: 1.25rem;
    }

    .testimonial-text {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .testimonial-rating {
        margin-bottom: 0.5rem;
    }

    .testimonial-rating i {
        font-size: 0.75rem;
    }

    .testimonial-author {
        padding-top: 0.5rem;
    }

    .testimonial-author-name {
        font-size: 0.8rem;
    }

    .testimonial-author-role {
        font-size: 0.7rem;
    }

    .testimonial-stats {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .testimonial-stat-divider {
        width: 100%;
        height: 1px;
    }
}

/* ===== CORE VALUES SECTION ===== */
.core-values-section {
    background: #F8F5F5;
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    padding: 0;
}

.core-values-container {
    position: relative;
    height: calc(100vh - 4rem);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
@media (min-width: 768px) { .core-values-container { height: calc(100vh - 4.5rem); } }

.core-values-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.2;
    position: relative;
    z-index: 10;
    padding: 0 1.5rem;
}
@media (min-width: 640px) { .core-values-title { font-size: 2.25rem; } }
@media (min-width: 768px) { .core-values-title { font-size: 2.5rem; } }
@media (min-width: 1024px) { .core-values-title { font-size: 2.625rem; } }

.title-highlight-wrapper {
    position: relative;
    display: inline-block;
}

.title-highlight-content {
    position: relative;
    z-index: 20;
    padding-left: 4px;
}

.title-highlight-mark {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 0%;
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 50%, #3B82F6 100%);
    z-index: 10;
}

.title-values {
    display: block;
    margin-top: 0.5rem;
}

.core-values-wrapper {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
    z-index: 15;
}
@media (min-width: 640px) { .core-values-wrapper { padding: 3rem 1.5rem; z-index: 15; } }

.core-values-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 372px;
}
@media (min-width: 640px) { 
    .core-values-cards { 
        gap: 6rem; 
        max-width: 100%; 
        align-items: stretch; 
        flex-direction: row; 
        flex-wrap: wrap; 
        justify-content: center; 
    } 
}

.core-value-card {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 372px;
    position: relative;
    transition: transform 0.3s ease;
}
@media (min-width: 640px) { .core-value-card { padding: 2rem 1.5rem; } }

.core-value-1 {
    transform: rotate(-4deg);
}

.core-value-2 {
    background: linear-gradient(135deg, #10b981 0%, #14b8a6 100%);
    transform: rotate(4deg);
    margin-left: auto;
}
@media (min-width: 640px) { .core-value-2 { margin-left: 0; } }

.core-value-3 {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    transform: rotate(-4deg);
}

.core-value-4 {
    background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
    transform: rotate(4deg);
    margin-left: auto;
}
@media (min-width: 640px) { .core-value-4 { margin-left: 0; } }

.core-value-5 {
    background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
    transform: rotate(-4deg);
}

.core-value-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.core-value-icon i {
    font-size: 1.5rem;
    color: white;
}

.core-value-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: white;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.core-value-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

@media (max-width: 639px) {
    .core-values-title {
        font-size: 1.5rem;
    }
    
    .core-value-card {
        padding: 1.5rem 1.25rem;
    }
    
    .core-value-icon {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .core-value-icon i {
        font-size: 1.25rem;
    }
    
    .core-value-title {
        font-size: 1.25rem;
    }
    
    .core-value-text {
        font-size: 0.9375rem;
    }
}

/* ===== INDUSTRIES WE COVER SECTION ===== */
.industries-section {
    padding: 5rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 50%, #faf5ff 100%);
    position: relative;
    overflow: hidden;
}
@media (min-width: 640px) { .industries-section { padding: 6rem 1.5rem; } }
@media (min-width: 1024px) { .industries-section { padding: 7rem 2rem; } }

.industries-header {
    text-align: center;
    margin-bottom: 3rem;
}

.industries-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.2);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.industries-badge-dot {
    width: 8px;
    height: 8px;
    background: #6366f1;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.industries-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}
@media (min-width: 640px) { .industries-title { font-size: 2.5rem; } }
@media (min-width: 1024px) { .industries-title { font-size: 3rem; } }

.industries-subtitle {
    font-size: 1rem;
    color: #6b7280;
    max-width: 500px;
    margin: 0 auto;
}
@media (min-width: 640px) { .industries-subtitle { font-size: 1.125rem; } }

.industries-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.industries-marquee-wrapper::before,
.industries-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.industries-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(248, 250, 252, 0.95), transparent);
}

.industries-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(248, 250, 252, 0.95), transparent);
}

.industries-marquee {
    display: flex;
    width: 100%;
}

.industries-track {
    display: flex;
    gap: 2rem;
    animation: scroll-left 40s linear infinite;
    padding: 1.5rem 0;
    width: max-content;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.industry-card {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1.5rem;
    background: white;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.industry-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.15), 0 4px 10px rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.25);
}

.industry-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.industry-real-estate .industry-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.industry-ecommerce .industry-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.industry-travel .industry-icon {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.3);
}

.industry-food .industry-icon {
    background: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(244, 63, 94, 0.3);
}

.industry-agencies .industry-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.industry-study .industry-icon {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.3);
}

.industry-card:hover .industry-icon {
    transform: scale(1.1);
}

.industry-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .industries-section {
        padding: 3rem 1rem;
    }
    
    .industries-title {
        font-size: 1.75rem;
    }
    
    .industries-subtitle {
        font-size: 0.9375rem;
    }
    
    .industry-card {
        padding: 0.625rem 1.125rem;
        gap: 0.625rem;
    }
    
    .industry-icon {
        width: 1.875rem;
        height: 1.875rem;
        font-size: 0.75rem;
    }
    
    .industry-name {
        font-size: 0.75rem;
    }
    
    .industries-track {
        gap: 0.75rem;
    }

    .industries-marquee-wrapper::before,
    .industries-marquee-wrapper::after {
        width: 60px;
    }
}

/* ===== CO-FOUNDERS SECTION ===== */
.cofounders-section {
    padding: 6rem 1rem;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}
@media (min-width: 640px) { .cofounders-section { padding: 7rem 1.5rem; } }
@media (min-width: 1024px) { .cofounders-section { padding: 8rem 2rem; } }

.cofounders-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236366f1' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cofounders-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.cofounders-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.cofounders-badge-dot {
    width: 8px;
    height: 8px;
    background: #6366f1;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.cofounders-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cofounders-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}
@media (min-width: 640px) { .cofounders-title { font-size: 2.5rem; } }
@media (min-width: 1024px) { .cofounders-title { font-size: 3rem; } }

.cofounders-subtitle {
    font-size: 1rem;
    color: #94a3b8;
    max-width: 500px;
    margin: 0 auto;
}
@media (min-width: 640px) { .cofounders-subtitle { font-size: 1.125rem; } }

.cofounders-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
@media (min-width: 768px) { .cofounders-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.cofounder-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cofounder-image-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 4px solid rgba(99, 102, 241, 0.3);
    transition: all 0.4s ease;
}

.cofounder-card:hover .cofounder-image-wrapper {
    border-color: #6366f1;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.4);
}

.cofounder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.cofounder-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cofounder-card:hover .cofounder-overlay {
    opacity: 1;
}

.cofounder-linkedin {
    width: 40px;
    height: 40px;
    background: #0077b5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cofounder-linkedin:hover {
    background: #005885;
    transform: scale(1.1);
}

.cofounder-info {
    max-width: 320px;
}

.cofounder-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.cofounder-role {
    font-size: 1rem;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 1rem;
}

.cofounder-desc {
    font-size: 0.9375rem;
    color: #94a3b8;
    line-height: 1.6;
}

.cofounder-email {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.experience-highlight {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.0625rem;
    letter-spacing: 0.02em;
}

@media (max-width: 640px) {
    .cofounders-section {
        padding: 4rem 1rem;
    }
    
    .cofounders-title {
        font-size: 1.75rem;
    }
    
    .cofounders-subtitle {
        font-size: 0.9375rem;
    }
    
    .cofounder-image-wrapper {
        width: 180px;
        height: 180px;
    }
    
    .cofounder-name {
        font-size: 1.25rem;
    }
    
    .cofounder-role {
        font-size: 0.9375rem;
    }
    
    .cofounder-desc {
        font-size: 0.875rem;
    }
}