:root {
    --navy-900: #0a1628;
    --navy-800: #0f1d33;
    --navy-700: #152544;
    --navy-600: #1c2f55;
    --navy-500: #243a66;
    --navy-200: #94a3b8;
    --cyan-200: #a5f3fc;
    --cyan-400: #22d3ee;
    --cyan-500: #06b6d4;
    --cyan-600: #0891b2;
    --eng-blue: #1e40af;
    --eng-light: #3b82f6;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --white: #ffffff;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, var(--slate-50) 0%, var(--white) 50%, rgba(239, 246, 255, 0.2) 100%);
    color: var(--slate-800);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Standard syntax */
}

img {
    pointer-events: none;
    /* Image par mouse ki koi activity (click/drag) nahi hogi */
}

.font-space {
    font-family: 'Space Grotesk', sans-serif;
}

.py-6 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (min-width: 992px) {
    .py-lg-6 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.mb-6 {
    margin-bottom: 4rem;
}

@media (min-width: 992px) {
    .mb-lg-6 {
        margin-bottom: 4rem;
    }
}

/* Navbar */
.navbar-custom {
    transition: all 0.5s ease;
    background: transparent;
    padding: 0;
}

/* Mobile / Responsive Navigation Background Fix */
@media (max-width: 991.98px) {
    .navbar-custom {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        padding: 10px 20px !important; */
        /* Mobile view mein proper spacing ke liye */
    }

    /* Agar aapka collapse menu alag se div mein hai */
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        padding: 15px;
        border-radius: 12px;
        margin-top: 10px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }
}

.navbar-custom.scrolled {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-custom .nav-link {
    font-size: 0.775rem;
    font-weight: 500;
    color: var(--slate-600) !important;
    transition: color 0.3s;
}

.navbar-custom .nav-link:hover {
    color: var(--navy-900) !important;
}

.nav-cta-btn {
    padding: 10px 24px;
    background: var(--navy-900);
    color: var(--white) !important;
    font-size: 0.775rem;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.nav-cta-btn:hover {
    background: var(--navy-800);
    color: var(--white) !important;
}

.nav-cta-btn::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;
}

.nav-cta-btn:hover::before {
    left: 100%;
}

.logo-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.025em;
    color: var(--navy-900);
}

.logo-tagline {
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--slate-500);
    text-transform: uppercase;
}

/* Hero */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--slate-50) 0%, var(--white) 50%, rgba(239, 246, 255, 0.2) 100%);
}

.grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(30, 64, 175, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(30, 64, 175, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.6;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
    pointer-events: none;
}

.hero-orb-1 {
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: linear-gradient(to bottom left, rgba(34, 211, 238, 0.4), rgba(191, 219, 254, 0.3), transparent);
    animation: float 6s ease-in-out infinite;
}

.hero-orb-2 {
    bottom: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: linear-gradient(to top right, rgba(191, 219, 254, 0.3), rgba(34, 211, 238, 0.2), transparent);
    animation: float 6s ease-in-out infinite;
    animation-delay: -3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 9999px;
    margin-bottom: 30px;
}

.hero-badge .hero-badge-text {
    font-size: 0.775rem;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--cyan-500);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 3.1rem !important;
    line-height: 0.95;
    color: var(--navy-900);
    margin-bottom: 25px !important;
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-title-accent {
    background: linear-gradient(to right, var(--cyan-500), var(--eng-blue), var(--navy-900));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: .92rem;
    color: var(--slate-600);
    line-height: 1.75;
    margin-bottom: 30px;
    max-width: 512px;
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px !important;
    background: var(--navy-900);
    color: var(--white) !important;
    font-weight: 500;
    font-size: .785rem;
    border-radius: 12px;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(10, 22, 40, 0.2);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    border: none;
}

.btn-primary-custom:hover {
    background: var(--navy-800);
    color: var(--white) !important;
}

.btn-primary-custom::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;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom svg {
    transition: transform 0.3s ease;
}

.btn-primary-custom:hover svg {
    transform: translateX(6px);
}

.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    border: 2px solid var(--slate-200);
    color: var(--navy-900) !important;
    font-weight: 600;
    font-size: .785rem;
    border-radius: 12px;
    transition: all 0.3s;
    text-decoration: none;
    background: transparent;
}

.btn-secondary-custom:hover {
    border-color: var(--navy-900);
    background: rgba(10, 22, 40, 0.05);
}

.pill {
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 9999px;
    font-size: 0.775rem;
    font-weight: 500;
    color: var(--navy-700);
    transition: all 0.3s;
    cursor: default;
    display: inline-block;
    /* margin-top: -20px; */
}

.pill:hover {
    border-color: var(--cyan-400);
    color: var(--cyan-600);
}

.pulse-ring {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.pulse-ring-inner {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(34, 211, 238, 0.5);
    animation: pulse-ring-anim 3s infinite;
}

.pulse-ring:nth-child(2) .pulse-ring-inner {
    animation-delay: 0.7s;
    border-color: rgba(34, 211, 238, 0.3);
}

@keyframes pulse-ring-anim {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.5;
    }
}

.hero-image-wrap {
    position: relative;
}

.hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(10, 22, 40, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.hero-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.2) 0%, transparent 50%, rgba(34, 211, 238, 0.1) 100%);
}

.stat-card {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border: 1px solid var(--slate-100);
    z-index: 10;
    animation: float 6s ease-in-out infinite;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-900);
}

.stat-icon-dot {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 12px;
    height: 12px;
    background: var(--cyan-500);
    border-radius: 50%;
    border: 2px solid var(--white);
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy-900);
}

.stat-label {
    font-size: 0.775rem;
    color: var(--slate-500);
}

.trusted-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    background: var(--navy-900);
    color: var(--white);
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 16px;
    z-index: 10;
    animation: float 6s ease-in-out infinite;
    animation-delay: -2s;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    font-size: .775rem;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--slate-300);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 6px;
    height: 12px;
    background: var(--slate-400);
    border-radius: 9999px;
    animation: bounce 1s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(4px);
    }
}

/* Capability Strip */
.capability-strip {
    position: relative;
    z-index: 20;
    margin-top: -32px;
    margin-bottom: 70px;
}

.capability-strip-inner {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--slate-100);
    padding: 25px !important;
}

@media (min-width: 992px) {
    .capability-strip-inner {
        padding: 40px;
    }
}

.capability-item {
    text-align: center;
    cursor: pointer;
}

.capability-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.capability-icon.blue {
    background: #eff6ff;
    color: var(--navy-900);
}

.capability-item:hover .capability-icon.blue {
    background: var(--navy-900);
    color: var(--white);
}

.capability-icon.cyan {
    background: #ecfeff;
    color: var(--cyan-600);
}

.capability-item:hover .capability-icon.cyan {
    background: var(--cyan-600);
    color: var(--white);
}

.capability-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 4px;
    font-size: 0.75rem;
}

.capability-desc {
    font-size: 0.75rem;
    color: var(--slate-500);
}

/* Sections */
.section-label {
    color: var(--cyan-600);
    font-weight: 600;
    font-size: 0.775rem !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 2.15rem !important;
    color: var(--navy-900);
    line-height: 1.2;
}

@media (min-width: 992px) {
    .section-title {
        font-size: 3rem;
    }
}

/* Cards */
.custom-card {
    background: var(--slate-50);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid var(--slate-100);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.custom-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(10, 22, 40, 0.15);
}

.card-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card-icon .bi {
    font-size: 20px;
}

.card-icon.blue {
    background: #dbeafe;
    color: var(--navy-900);
}

.card-icon.cyan {
    background: #cffafe;
    color: var(--cyan-700);
}

.card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.01rem;
    color: var(--navy-900);
    margin-bottom: 10px;
}

.card-text {
    font-size: 0.825rem;
    color: var(--slate-600);
    line-height: 1.625;
}

/* Project Cards */
.projects-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.section-label {
    color: var(--cyan-600);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    color: var(--slate-500);
    font-size: .885rem;
    margin-bottom: 60px;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    /* padding: 0 70px; */
    justify-content: center;
    align-items: center;
    text-align: center;
}

.carousel-track-wrapper {
    overflow: hidden;
    padding: 30px 0;
}

.carousel-track {
    display: flex;
    gap: 28px;
    will-change: transform;
}

/* Modern Card Styles */
.project-card {
    flex: 0 0 calc(33.333% - 19px);
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(203, 213, 225, 0.3);
    position: relative;
}

.project-card.active {
    opacity: 1;
    transform: scale(1.02);
    filter: blur(0);
    box-shadow: 10px 24px 80px rgba(15, 23, 42, 0.15), 0 0 0 2px rgba(6, 182, 212, 0.1);
    z-index: 2;
}

.project-card.active .project-visual::after {
    opacity: 1;
}

.project-card.adjacent {
    opacity: 0.55;
    transform: scale(0.92);
    filter: blur(1.5px);
}

.project-card.hidden {
    opacity: 0.25;
    transform: scale(0.85);
    filter: blur(3px);
}

/* Image Container */
.project-visual {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-visual img {
    transform: scale(1.08);
}

/* Gradient Overlay on Image */
.project-visual::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    /* background: linear-gradient(to top, rgba(15, 23, 42, 0.7) 0%, transparent 100%); */
    opacity: 0.7;
    transition: opacity 0.4s;
}

/* Tag Badge - positioned on image */
.project-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--navy-900);
    border-radius: 9999px;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Card Content */
.card-content {
    padding: 24px 28px 28px;
}

.project-category {
    color: var(--cyan-600);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 10px;
}

.project-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy-900);
    margin-bottom: 10px;
    line-height: 1.35;
}

.project-text {
    font-size: 0.785rem;
    color: var(--slate-500);
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-link {
    color: var(--navy-900);
    font-weight: 700;
    font-size: 0.785rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 8px 0;
    position: relative;
}

.project-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyan-600);
    transition: width 0.3s ease;
}

.project-link:hover::after {
    width: calc(100% - 24px);
}

.project-link svg {
    transition: transform 0.3s;
    width: 16px;
    height: 16px;
    color: var(--cyan-600);
}

.project-link:hover svg {
    transform: translateX(4px);
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--slate-300);
    color: var(--navy-900);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.carousel-btn:hover {
    background: var(--navy-900);
    color: white;
    border-color: var(--navy-900);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.2);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-btn svg {
    width: 20px;
    height: 18px;
}

/* Dots Indicator */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--slate-300);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.carousel-dot.active {
    background: var(--navy-900);
    width: 32px;
    border-radius: 6px;
}

.carousel-dot:hover {
    background: var(--slate-500);
}

/* Responsive */
@media (max-width: 992px) {
    .project-card {
        flex: 0 0 calc(50% - 14px);
    }

    .carousel-container {
        padding: 0 60px;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .project-card {
        flex: 0 0 100%;
    }

    .carousel-container {
        padding: 0 50px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .card-content {
        padding: 20px 22px 24px;
    }
}

/* Process */
.process-section {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    background: var(--slate-50);
}

.process-line {
    display: none;
    position: absolute;
    top: 55px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--eng-blue), var(--cyan-400), var(--eng-blue));
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

@media (min-width: 992px) {
    .process-line {
        display: block;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.process-step {
    text-align: center;
}

.process-step-num {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 24px;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 15px -3px rgba(10, 22, 40, 0.2);
}

.process-step-num.n1 {
    background: var(--navy-900);
}

.process-step-num.n2 {
    background: var(--navy-800);
}

.process-step-num.n3 {
    background: var(--navy-700);
}

.process-step-num.n4 {
    background: var(--eng-blue);
}

.process-step-num.n5 {
    background: var(--cyan-600);
}

.process-step:nth-child(1) {
    transition-delay: 0s;
}

.process-step:nth-child(2) {
    transition-delay: .1s;
}

.process-step:nth-child(3) {
    transition-delay: .3s;
}

.process-step:nth-child(4) {
    transition-delay: .4s;
}

.process-step:nth-child(5) {
    transition-delay: .6s;
}

.process-step-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy-900);
    margin-bottom: 10px;
}

.process-step-text {
    font-size: 0.785rem;
    color: var(--slate-600);
    line-height: 1.625;
}

/* Why Us */
.why-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 2.1rem !important;
    color: var(--navy-900);
    margin-bottom: 22px;
    line-height: 1.2;
}

@media (min-width: 992px) {
    .why-title {
        font-size: 3rem;
    }
}

.why-text {
    color: var(--slate-600);
    margin-bottom: 40px;
    line-height: 1.75;
    font-size: .9rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-icon.blue {
    background: #eff6ff;
    color: var(--navy-900);
}

.feature-icon.cyan {
    background: #ecfeff;
    color: var(--cyan-700);
}

.feature-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 4px;
    font-size: 1.2rem;
}

.feature-desc {
    font-size: 0.79rem;
    color: var(--slate-600);
}

.stats-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--navy-900);
    height: 150px;
    width: 230px;
    color: var(--white);
    /* border-radius: 16px; */
    padding: 16px !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 640px) {
    .stats-card {
        bottom: -16px;
        right: -8px;
        padding: 16px;
    }
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cyan-400);
}

.stat-name {
    font-size: 0.75rem;
    color: var(--slate-400);
    margin-top: 4px;
}

/* About */
.about-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #eff6ff, var(--slate-100));
    /* aspect-ratio: 4/3; */
    height:100vh;
    padding-top: 80px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-card {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 16px;
    border: 1px solid var(--slate-100);
    display: flex;
    align-items: center;
    gap: 12px;
}

.founder-avatar {
    width: 40px;
    height: 40px;
    background: var(--navy-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan-400);
}

.founder-name {
    font-weight: 700;
    color: var(--navy-900);
}

.founder-role {
    font-size: 0.75rem;
    color: var(--slate-500);
}

.about-text {
    color: var(--slate-600);
    line-height: 1.75;
    font-size: 14px;
    margin-bottom: 20px;
}

.about-highlight {
    color: var(--navy-900);
    font-weight: 500;
    font-size: 14px;
}

.about-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 500;
}

.about-badge svg {
    color: var(--cyan-600);
}

/* Marquee */
.software-section {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid var(--slate-100);
    border-bottom: 1px solid var(--slate-100);
}

.marquee-wrap {
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 48px;
    white-space: nowrap;
    font-size: 12px !important;
    animation: marquee 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.software-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--slate-50);
    border-radius: 12px;
    border: 1px solid var(--slate-100);
    flex-shrink: 0;
}

.software-tag svg {
    color: var(--slate-400);
}

.software-tag span {
    font-weight: 600;
    color: var(--slate-700);
}

/* CTA */
.cta-section {
    padding: 96px 0;
    background: var(--navy-900);
    position: relative;
    overflow: hidden;
}

.cta-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(30, 64, 175, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(30, 64, 175, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.2;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
}

.cta-orb-1 {
    top: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: rgba(34, 211, 238, 0.1);
}

.cta-orb-2 {
    bottom: 0;
    left: 0;
    width: 384px;
    height: 384px;
    background: rgba(59, 130, 246, 0.1);
}

.cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 2.2rem !important;
    color: var(--white);
    margin-bottom: 24px;
}

@media (min-width: 992px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-text {
    color: var(--slate-300);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cyan {
    padding: 14px 20px !important;
    background: var(--cyan-500);
    color: var(--navy-900) !important;
    font-weight: 700;
    font-size: 14px;
    border-radius: 12px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.btn-cyan:hover {
    background: var(--cyan-400);
    color: var(--navy-900) !important;
}

.btn-cyan::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;
}

.btn-cyan:hover::before {
    left: 100%;
}

.btn-outline-light-custom {
    padding: 12px 20px;
    border: 2px solid var(--slate-600);
    color: var(--white) !important;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-light-custom:hover {
    border-color: var(--cyan-500);
    background: rgba(34, 211, 238, 0.1);
    color: var(--white) !important;
}

/************ Footer ************/
.footer-custom {
    background: var(--navy-900);
    color: var(--white);
    padding: 55px 0;
}

.footer-brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.025em;
}

.footer-brand-tagline {
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--slate-400);
    text-transform: uppercase;
}

.footer-desc {
    color: var(--slate-400);
    font-size: 0.815rem;
    line-height: 1.625;
    max-width: 448px;
    margin-bottom: 24px;
}

.footer-motto {
    color: var(--slate-500);
    font-size: 0.775rem;
}

.footer-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
    font-size: 17px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--slate-400);
    font-size: 0.775rem;
    transition: color 0.3s;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--cyan-400);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--slate-400);
    font-size: 0.775rem;
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid var(--navy-800);
    padding-top: 32px;
}

.footer-socials a {
    color: var(--slate-400);
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: var(--cyan-400);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Left Animation */
.fade-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s ease;
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Right Animation */
.fade-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s ease;
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--slate-100);
}

::-webkit-scrollbar-thumb {
    background: var(--eng-blue);
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .why-title {
        font-size: 1.75rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }

    .stat-card,
    .trusted-badge,
    .founder-card {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        top: auto;
        margin-top: 16px;
    }

    .stats-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
    }
}

/* ===== ANIMATED NUMBER COUNTER ===== */
.stat-number,
.stat-value {
    font-variant-numeric: tabular-nums;
}

.stat-number.counting,
.stat-value.counting {
    transition: none;
}

/********************
TEAM-PAGE
*********************/
.meteam-hero {
    position: relative;
    min-height: 55vh;
    padding-top: 70px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--slate-50) 0%, var(--white) 50%, rgba(239, 246, 255, 0.2) 100%);
}

.meteam-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(30, 64, 175, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 64, 175, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.6;
    pointer-events: none;
}

.meteam-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
    pointer-events: none;
}

.meteam-hero-orb-1 {
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: linear-gradient(to bottom left, rgba(34, 211, 238, 0.35), rgba(191, 219, 254, 0.25), transparent);
    animation: meteam-float 6s ease-in-out infinite;
}

.meteam-hero-orb-2 {
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(to top right, rgba(191, 219, 254, 0.25), rgba(34, 211, 238, 0.15), transparent);
    animation: meteam-float 6s ease-in-out infinite;
    animation-delay: -3s;
}

@keyframes meteam-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.meteam-hero-inner {
    position: relative;
    /* z-index: 10; */
    padding: 96px 24px 64px;
    width: 100%;
    justify-content: center;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .meteam-hero-inner {
        padding: 96px 32px 64px;
    }
}

.meteam-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 9999px;
    margin-bottom: 24px;
}

.meteam-hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--cyan-500);
    border-radius: 50%;
    animation: meteam-pulse 2s infinite;
}

@keyframes meteam-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.meteam-hero-badge-text {
    font-size: 12px;
    font-weight: 500;
    color: var(--navy-700);
    letter-spacing: 0.025em;
}

.meteam-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 3.1rem !important;
    line-height: 1.05;
    color: var(--navy-900);
    margin-bottom: 20px;
}

@media (min-width: 1024px) {
    .meteam-hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1280px) {
    .meteam-hero-title {
        font-size: 4rem;
    }
}

.meteam-hero-title-accent {
    background: linear-gradient(to right, var(--cyan-500), var(--eng-blue), var(--navy-900));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.meteam-hero-desc {
    font-size: 14px;
    color: var(--slate-600);
    line-height: 1.75;
    max-width: 640px;
    text-align: center;
    justify-content: center;
    align-items: center;
}

/* ===== METEAM SECTIONS ===== */
.meteam-section {
    padding: 60px 0 !important;
}

.meteam-section-label {
    color: var(--cyan-600);
    font-weight: 600;
    font-size: 0.775rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    /* margin-bottom: 12px; */
    display: block;
}

.meteam-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 2.15rem;
    color: var(--navy-900);
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .meteam-section-title {
        font-size: 3rem;
    }
}

.meteam-section-header {
    margin-bottom: 64px;
}

/* ===== METEAM TEAM DIVIDER ===== */
.meteam-team-section {
    padding: 0 0 80px;
}

.meteam-team-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 65px;
}

.meteam-team-divider-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--navy-900), var(--eng-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.meteam-team-divider-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--navy-900);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.meteam-team-divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan-400), transparent);
    border-radius: 1px;
}

/* ===== METEAM TEAM GRID & CARDS ===== */
.meteam-team-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .meteam-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .meteam-team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.meteam-team-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--slate-100);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding-top: 50px;
}

.meteam-team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -15px rgba(10, 22, 40, 0.12);
    border-color: var(--cyan-400);
}

.meteam-team-card-accent {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--eng-blue), var(--cyan-500));
    border-radius: 16px 0 0 16px;
}

.meteam-team-card-inner {
    padding: 28px 24px 28px 32px;
}

/* Avatar positioned at top center, overlapping the card */
.meteam-team-avatar-wrap {
    position: absolute;
    top: -50px;
    left: 25%;
    transform: translateX(-50%);
    z-index: 10;
}

.meteam-team-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--slate-100), var(--slate-200));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: 0 4px 16px rgba(10, 22, 40, 0.12);
}

.meteam-team-avatar svg {
    color: var(--slate-400);
}

.meteam-team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.meteam-team-info {
    margin-top: 20px;
    text-align: left;
}

.meteam-team-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 14px !important;
    color: var(--navy-900);
    margin-bottom: 4px;
}

.meteam-team-role {
    font-size: 13px !important;
    color: var(--eng-blue);
    font-weight: 500;
    line-height: 1.4;
}

.meteam-team-role-line {
    display: block;
}

.meteam-team-experience {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #eff6ff;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    color: var(--eng-blue);
    margin-top: 16px;
    margin-bottom: 16px;
}

.meteam-team-experience svg {
    width: 14px;
    height: 14px;
}

.meteam-team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.meteam-team-skill {
    font-size: 12px;
    color: var(--slate-600);
    display: flex;
    align-items: center;
    gap: 8px;
}

.meteam-team-skill::after {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--slate-300);
    border-radius: 50%;
}

.meteam-team-skill:last-child::after {
    display: none;
}

/* ===== METEAM BOTTOM BANNER ===== */
.meteam-bottom-banner {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    border-radius: 16px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 64px;
    position: relative;
    overflow: hidden;
}

.meteam-bottom-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(34, 211, 238, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.meteam-banner-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan-400);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.meteam-banner-text {
    font-size: 15px;
    color: var(--white);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.meteam-banner-text strong {
    color: var(--cyan-400);
    font-weight: 600;
}

@media (max-width: 640px) {
    .meteam-bottom-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
}

/* ===== METEAM SCROLL ANIMATIONS ===== */
.meteam-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.meteam-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== METEAM RESPONSIVE ===== */
@media (max-width: 640px) {
    .meteam-hero-title {
        font-size: 2rem;
    }

    .meteam-section-title {
        font-size: 1.75rem;
    }
}

/********************
CONTACT-PAGE
*********************/
.cp-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--slate-50) 0%, var(--white) 50%, rgba(239, 246, 255, 0.3) 100%);
    overflow: hidden;
}

.cp-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(30, 64, 175, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 64, 175, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.6;
}

.cp-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.cp-hero-orb--1 {
    top: -80px;
    right: -50px;
    width: 500px;
    height: 500px;
    background: linear-gradient(to bottom left, rgba(34, 211, 238, 0.34), rgba(191, 219, 254, 0.14), transparent);
}

.cp-hero-orb--2 {
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(to top right, rgba(191, 219, 254, 0.25), rgba(34, 211, 238, 0.15), transparent);
    animation: meteam-float 6s ease-in-out infinite;
    animation-delay: -3s;
}

.cp-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 9999px;
    font-size: 12px !important;
    font-weight: 500;
    margin-bottom: 24px;
}

.cp-hero-label-dot {
    width: 6px;
    height: 6px;
    background: var(--cyan-500);
    border-radius: 50%;
    animation: cp-pulse 2s infinite;
}

@keyframes cp-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.cp-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 3.2rem !important;
    color: var(--navy-900);
    line-height: 1.1;
    margin-bottom: 20px;
}

.cp-hero-desc {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.7;
    max-width: 500px;
}

/* Contact Info Cards */
.cp-info-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--slate-200);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.cp-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cyan-500), var(--navy-900));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.cp-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px -12px rgba(10, 22, 40, 0.12);
    border-color: var(--cyan-400);
}

.cp-info-card:hover::before {
    transform: scaleX(1);
}

.cp-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1rem;
}

.cp-info-icon--email {
    background: linear-gradient(135deg, #dbeafe, #ecfeff);
    color: #1e40af;
}

.cp-info-icon--phone {
    background: linear-gradient(135deg, #cffafe, #eff6ff);
    color: #0891b2;
}

.cp-info-icon--location {
    background: linear-gradient(135deg, #f1f5f9, #dbeafe);
    color: #334155;
}

.cp-info-icon--hours {
    background: linear-gradient(135deg, #ecfeff, #f1f5f9);
    color: #06b6d4;
}

.cp-info-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--navy-900);
    margin-bottom: 8px;
}

.cp-info-text {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.6;
    margin-bottom: 4px;
}

.cp-info-link {
    color: var(--cyan-600);
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cp-info-link:hover {
    color: var(--navy-900);
}

/* Form Section */
.cp-form-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--slate-50) 100%);
    position: relative;
}

.cp-form-card {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    border: 1px solid var(--slate-200);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.cp-form-header {
    margin-bottom: 40px;
    font-size: 12px;
}

.cp-form-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--navy-900);
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cp-form-input,
.cp-form-select,
.cp-form-textarea {
    width: 100%;
    padding: 6px 18px;
    background: var(--slate-50);
    border: 2px solid var(--slate-200);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--navy-900);
    transition: all 0.3s ease;
}

.cp-form-input:focus,
.cp-form-select:focus,
.cp-form-textarea:focus {
    outline: none;
    border-color: var(--cyan-500);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
}

.cp-form-input::placeholder,
.cp-form-textarea::placeholder {
    color: var(--slate-400);
}

.cp-form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

.cp-form-textarea {
    resize: none;
    min-height: 140px;
}

.cp-file-upload {
    border: 2px dashed var(--slate-300);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--slate-50);
}

.cp-file-upload:hover {
    border-color: var(--cyan-500);
    background: rgba(6, 182, 212, 0.03);
}

.cp-file-upload i {
    font-size: 2.5rem;
    color: var(--slate-400);
    margin-bottom: 12px;
    display: block;
}

.cp-file-upload p {
    font-size: 0.9375rem;
    color: var(--slate-600);
    margin-bottom: 4px;
}

.cp-file-upload span {
    color: var(--cyan-600);
    font-weight: 600;
}

.cp-file-upload small {
    display: block;
    font-size: 0.75rem;
    color: var(--slate-400);
    margin-top: 8px;
}

.cp-submit-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 14px !important;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cp-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -8px rgba(10, 22, 40, 0.3);
}

.cp-submit-btn:active {
    transform: translateY(0);
}

/* Sidebar */
.cp-sidebar-card {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    border-radius: 24px;
    padding: 40px;
    color: var(--white);
    height: auto;
    position: relative;
    overflow: hidden;
}

.cp-sidebar-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cp-sidebar-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cp-sidebar-text {
    color: var(--slate-300);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.cp-sidebar-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.cp-sidebar-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--cyan-400);
    flex-shrink: 0;
}

.cp-sidebar-item-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.cp-sidebar-item-text {
    font-size: 12px;
    color: var(--slate-400);
}

.cp-social-links {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    position: relative;
    z-index: 1;
}

.cp-social-link {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.125rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cp-social-link:hover {
    background: var(--cyan-500);
    color: var(--navy-900);
    transform: translateY(-3px);
}

.cp-social-link i {
    font-size: 12px;
}

/* Map Section */
.cp-map-section {
    padding: 0 0 80px;
    background: var(--slate-50);
}

.cp-map-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px -12px rgba(10, 22, 40, 0.1);
    border: 1px solid var(--slate-200);
    height: 400px;
}

.cp-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FAQ Section */
.cp-faq-section {
    padding: 80px 0;
    background: var(--white);
}

.cp-faq-item {
    background: var(--slate-50);
    border-radius: 16px;
    border: 1px solid var(--slate-200);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cp-faq-item:hover {
    border-color: var(--cyan-400);
}

.cp-faq-question {
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--navy-900);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.cp-faq-question i {
    font-size: 1rem;
    color: var(--cyan-600);
    transition: transform 0.3s ease;
}

.cp-faq-question.collapsed i {
    transform: rotate(0deg);
}

.cp-faq-question:not(.collapsed) i {
    transform: rotate(180deg);
}

.cp-faq-answer {
    padding: 0 28px 24px;
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.7;
}

/* Section Header */
.cp-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.cp-section-label {
    display: inline-block;
    color: var(--cyan-600);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.cp-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--navy-900);
    line-height: 1.2;
}

/* Responsive */
@media (max-width: 991px) {
    .cp-hero-title {
        font-size: 2.25rem;
    }

    .cp-form-card {
        padding: 32px;
    }

    .cp-sidebar-card {
        margin-top: 32px;
    }
}

@media (max-width: 576px) {
    .cp-hero {
        padding: 120px 0 60px;
    }

    .cp-hero-title {
        font-size: 1.875rem;
    }

    .cp-form-card {
        padding: 24px;
    }

    .cp-section-title {
        font-size: 1.75rem;
    }
}

/******************
ABOUT-PAGE  
*******************/
.abt-hero {
    position: relative;
    min-height: 50vh;
    padding-top: 70px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--slate-50) 0%, var(--white) 50%, rgba(239, 246, 255, 0.2) 100%);
}

.abt-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(30, 64, 175, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 64, 175, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.6;
}

.abt-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
    pointer-events: none;
}

.abt-hero-orb-1 {
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: linear-gradient(to bottom left, rgba(34, 211, 238, 0.35), rgba(191, 219, 254, 0.25), transparent);
    animation: abt-float 6s ease-in-out infinite;
}

.abt-hero-orb-2 {
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(to top right, rgba(191, 219, 254, 0.25), rgba(34, 211, 238, 0.15), transparent);
    animation: abt-float 6s ease-in-out infinite;
    animation-delay: -3s;
}

@keyframes abt-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.abt-hero-inner {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px 24px 64px;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .abt-hero-inner {
        padding: 96px 32px 64px;
    }
}

.abt-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 9999px;
    margin-bottom: 24px;
}

.abt-hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--cyan-500);
    border-radius: 50%;
    animation: abt-pulse 2s infinite;
}

@keyframes abt-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.abt-hero-badge-text {
    font-size: 12px;
    font-weight: 500;
    color: var(--navy-700);
    letter-spacing: 0.025em;
}

.abt-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 3.2rem !important;
    line-height: 1.05;
    color: var(--navy-900);
    margin-bottom: 20px;
}

@media (min-width: 1024px) {
    .abt-hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1280px) {
    .abt-hero-title {
        font-size: 4rem;
    }
}

.abt-hero-title-accent {
    background: linear-gradient(to right, var(--cyan-500), var(--eng-blue), var(--navy-900));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.abt-hero-desc {
    font-size: 14px;
    color: var(--slate-600);
    line-height: 1.75;
    max-width: 640px;
}

/* Sections */
.abt-section {
    padding: 80px 0;
}

.abt-section-label {
    color: var(--cyan-600);
    font-weight: 600;
    font-size: 12px !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.abt-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 2rem !important;
    color: var(--navy-900);
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .abt-section-title {
        font-size: 3rem;
    }
}

.abt-section-header {
    margin-bottom: 50px;
}

/* Story */


.abt-story-content p {
    color: var(--slate-600);
    line-height: 1.75;
    margin-bottom: 20px;
    font-size: 14px;
}

.abt-story-content .abt-highlight {
    color: var(--navy-900);
    font-weight: 600;
    border-left: 3px solid var(--cyan-500);
    padding-left: 16px;
    margin: 24px 0;
}

/* Stats Strip */
.abt-stats-strip {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    border-radius: 16px;
    padding: 48px 20px;
    margin: 44px 0;
    position: relative;
    overflow: hidden;
}

.abt-stats-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(34, 211, 238, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.abt-stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.abt-stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--cyan-400);
    margin-bottom: 8px;
}

.abt-stat-label {
    font-size: 14px;
    color: var(--slate-400);
}

/* Values Cards */
.abt-value-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--slate-100);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.abt-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -15px rgba(10, 22, 40, 0.12);
    border-color: var(--cyan-400);
}

.abt-value-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.abt-value-icon.abt-blue {
    background: #dbeafe;
    color: var(--navy-900);
}

.abt-value-icon.abt-cyan {
    background: #cffafe;
    color: var(--cyan-700);
}

.abt-value-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--navy-900);
    margin-bottom: 8px;
}

.abt-value-text {
    font-size: 14px;
    color: var(--slate-600);
    line-height: 1.625;
}

/* Differentiators */
.abt-diff-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    height: 110px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--slate-100);
    transition: all 0.3s;
}

.abt-diff-item:hover {
    border-color: var(--cyan-400);
    transform: translateX(4px);
}

.abt-diff-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.abt-diff-icon.abt-blue {
    background: #eff6ff;
    color: var(--navy-900);
}

.abt-diff-icon.abt-cyan {
    background: #ecfeff;
    color: var(--cyan-700);
}

.abt-diff-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--navy-900);
    margin-bottom: 4px;
}

.abt-diff-desc {
    font-size: 14px;
    color: var(--slate-600);
}

.abt-diff-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #eff6ff, var(--slate-100));
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.abt-diff-visual svg {
    color: var(--navy-200);
}

/* CTA Section */
.abt-cta-section {
    padding: 96px 0;
    background: var(--navy-900);
    position: relative;
    overflow: hidden;
}

.abt-cta-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(30, 64, 175, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(30, 64, 175, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.2;
}

.abt-cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
}

.abt-cta-orb-1 {
    top: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: rgba(34, 211, 238, 0.1);
}

.abt-cta-orb-2 {
    bottom: 0;
    left: 0;
    width: 384px;
    height: 384px;
    background: rgba(59, 130, 246, 0.1);
}

.abt-cta-inner {
    position: relative;
    z-index: 10;
    max-width: 896px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.abt-cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 2rem !important;
    color: var(--white);
    margin-bottom: 24px;
}

@media (min-width: 1024px) {
    .abt-cta-title {
        font-size: 3rem;
    }
}

.abt-cta-text {
    color: var(--slate-300);
    font-size: 14px;
    margin-bottom: 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.abt-btn-cyan {
    padding: 14px 20px !important;
    background: var(--cyan-500);
    color: var(--navy-900);
    font-weight: 600;
    font-size: 14px;
    border-radius: 12px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.abt-btn-cyan:hover {
    background: var(--cyan-400);
    color: var(--navy-900);
}

.abt-btn-outline-light {
    padding: 14px 20px !important;
    border: 2px solid var(--slate-600);
    color: var(--white);
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.abt-btn-outline-light:hover {
    border-color: var(--cyan-500);
    background: rgba(34, 211, 238, 0.1);
    color: var(--white);
}

@media (min-width: 768px) {
    .abt-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.abt-footer-copyright {
    color: var(--slate-500);
    font-size: 0.875rem;
    margin: 0;
}

.abt-footer-socials {
    display: flex;
    gap: 24px;
}

.abt-footer-socials a {
    color: var(--slate-400);
    transition: color 0.3s;
}

.abt-footer-socials a:hover {
    color: var(--cyan-400);
}

/* Scroll Animations */
.abt-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.abt-fade-up.abt-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 640px) {
    .abt-hero-title {
        font-size: 2rem;
    }

    .abt-section-title {
        font-size: 1.75rem;
    }

    .abt-stat-number {
        font-size: 2rem;
    }
}

/********************
CAPABILITIES-PAGE
*******************/

.cap-hero {
    position: relative;
    min-height: 55vh;
    padding-top: 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--slate-50) 0%, var(--white) 50%, rgba(239, 246, 255, 0.2) 100%);
}

.cap-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(30, 64, 175, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(30, 64, 175, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.6;
}

.cap-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
    pointer-events: none;
}

.cap-hero-orb-1 {
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: linear-gradient(to bottom left, rgba(34, 211, 238, 0.35), rgba(191, 219, 254, 0.25), transparent);
    animation: cap-float 6s ease-in-out infinite;
}

.cap-hero-orb-2 {
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(to top right, rgba(191, 219, 254, 0.25), rgba(34, 211, 238, 0.15), transparent);
    animation: cap-float 6s ease-in-out infinite;
    animation-delay: -3s;
}

@keyframes cap-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.cap-hero-inner {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 96px 24px 64px;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    flex-direction: column;
}

@media(min-width:1024px) {
    .cap-hero-inner {
        padding: 96px 32px 64px;
    }
}

.cap-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 9999px;
    margin-bottom: 24px;
}

.cap-hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--cyan-500);
    border-radius: 50%;
    animation: cap-pulse 2s infinite;
}

@keyframes cap-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.cap-hero-badge-text {
    font-size: 0.775rem;
    font-weight: 500;
    color: var(--navy-700);
    letter-spacing: 0.025em;
}

.cap-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 3.2rem !important;
    line-height: 1.05;
    color: var(--navy-900);
    margin-bottom: 20px;
}

@media(min-width:1024px) {
    .cap-hero-title {
        font-size: 3.5rem;
    }
}

@media(min-width:1280px) {
    .cap-hero-title {
        font-size: 4rem;
    }
}

.cap-hero-title-accent {
    background: linear-gradient(to right, var(--cyan-500), var(--eng-blue), var(--navy-900));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cap-hero-desc {
    font-size: 14px;
    color: var(--slate-600);
    line-height: 1.75;
    max-width: 640px;
}

/* ===== SECTIONS ===== */
.cap-section {
    padding: 80px 0;
}

.cap-section-label {
    color: var(--cyan-600);
    font-weight: 600;
    font-size: 0.775rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}

.cap-section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 2.15rem !important;
    color: var(--navy-900);
    line-height: 1.2;
}

@media(min-width:1024px) {
    .cap-section-title {
        font-size: 3rem;
    }
}

.cap-section-header {
    margin-bottom: 64px;
}

/* ===== CAPABILITY CARDS (6 cards) ===== */
.cap-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--slate-100);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.cap-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(10, 22, 40, 0.15);
    border-color: var(--cyan-400);
}

.cap-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--cyan-500), var(--eng-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.cap-card:hover::before {
    transform: scaleX(1);
}

.cap-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #eff6ff, #cffafe);
    color: var(--navy-900);
}

.cap-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.01rem;
    color: var(--navy-900);
    margin-bottom: 12px;
}

.cap-card-desc {
    font-size: 0.8375rem;
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.cap-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cap-card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.775rem;
    color: var(--slate-600);
    margin-bottom: 10px;
}

.cap-card-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--cyan-500);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== SOFTWARE & TOOLS (Dark Strip) ===== */
.cap-tools-strip {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
    border-radius: 20px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}

.cap-tools-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(34, 211, 238, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(34, 211, 238, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.cap-tools-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 32px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cap-tool-category {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.cap-tool-category-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.775rem;
    color: var(--cyan-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.cap-tool-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cap-tool-tag {
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    color: var(--slate-300);
    font-size: 0.695rem;
    font-weight: 500;
    transition: all 0.3s;
}

.cap-tool-tag:hover {
    background: rgba(34, 211, 238, 0.15);
    border-color: var(--cyan-500);
    color: var(--cyan-400);
}

/* ===== PROCESS STEPS (4 cards) ===== */
.cap-process-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--slate-100);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.cap-process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(10, 22, 40, 0.12);
    border-color: var(--cyan-400);
}

.cap-process-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cyan-400);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 8px;
}

.cap-process-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.01rem;
    color: var(--navy-900);
    margin-bottom: 8px;
}

.cap-process-desc {
    font-size: 0.795rem;
    color: var(--slate-600);
    line-height: 1.625;
}

/* ===== CTA SECTION ===== */
.cap-cta-section {
    padding: 96px 0;
    background: var(--navy-900);
    position: relative;
    overflow: hidden;
}

.cap-cta-grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(30, 64, 175, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(30, 64, 175, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.2;
}

.cap-cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
}

.cap-cta-orb-1 {
    top: 0;
    right: 0;
    width: 384px;
    height: 384px;
    background: rgba(34, 211, 238, 0.1);
}

.cap-cta-orb-2 {
    bottom: 0;
    left: 0;
    width: 384px;
    height: 384px;
    background: rgba(59, 130, 246, 0.1);
}

.cap-cta-inner {
    position: relative;
    z-index: 10;
    max-width: 896px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.cap-cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 2rem !important;
    color: var(--white);
    margin-bottom: 24px;
}

@media(min-width:1024px) {
    .cap-cta-title {
        font-size: 3rem;
    }
}

.cap-cta-text {
    color: var(--slate-300);
    font-size: 14px;
    margin-bottom: 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.cap-btn-cyan {
    padding: 16px 20px !important;
    background: var(--cyan-500);
    color: var(--navy-900);
    font-weight: 700;
    font-size: 14px;
    border-radius: 12px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.cap-btn-cyan:hover {
    background: var(--cyan-400);
    color: var(--navy-900);
}

.cap-btn-outline-light {
    padding: 14px 20px;
    border: 2px solid var(--slate-600);
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    border-radius: 12px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cap-btn-outline-light:hover {
    border-color: var(--cyan-500);
    background: rgba(34, 211, 238, 0.1);
    color: var(--white);
}

/*********************
PROCESS-PAGE  
**********************/
.project-hero {
    position: relative;
    padding: 110px 0 50px;
    background: linear-gradient(135deg, var(--slate-50) 0%, var(--white) 50%, rgba(239, 246, 255, 0.3) 100%);
    overflow: hidden;
}

.project-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(30, 64, 175, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 64, 175, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.6;
}

.project-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.project-hero-orb--1 {
    top: -80px;
    right: -50px;
    width: 500px;
    height: 500px;
    background: linear-gradient(to bottom left, rgba(34, 211, 238, 0.34), rgba(191, 219, 254, 0.14), transparent);
}

.project-hero-orb--2 {
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(to top right, rgba(191, 219, 254, 0.25), rgba(34, 211, 238, 0.15), transparent);
    animation: meteam-float 6s ease-in-out infinite;
    animation-delay: -3s;
}

.project-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 500;
    /* color: var(--cyan-600); */
    margin-bottom: 24px;
}

.project-hero-label-dot {
    width: 6px;
    height: 6px;
    background: var(--cyan-500);
    border-radius: 50%;
    animation: project-pulse 2s infinite;
}

@keyframes project-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.project-hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 2.6rem;
    color: var(--navy-900);
    line-height: 1.1;
    margin-bottom: 20px;
}

.project-hero-desc {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.7;
    max-width: 500px;
}

.portfolio-filters {
    margin-bottom: 40px;
}

.portfolio-section .card {
    /* margin-bottom: 40px; */
    padding: 5px 5px;
    border-radius: 50px !important;
}

.filter-btn {
    padding: 8px 15px;
    margin: 5px;
    border: 1px solid var(--slate-200);
    border-radius: 50px;
    background: var(--white);
    color: var(--slate-600);
    font-weight: 600;
    font-size: 12px;
    transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--navy-900);
    color: var(--white);
    border-color: var(--navy-900);
}

.project-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--slate-200);
    transition: 0.4s;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.project-info {
    padding: 24px;
}

/* Project Grid Layout */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Card Container */
.pc-card {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid var(--slate-200);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.pc-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgba(10, 22, 40, 0.15);
    border-color: var(--cyan-400);
}

/* Image Wrapper */
.pc-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.pc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pc-card:hover .pc-img-wrap img {
    transform: scale(1.08);
}

/* Overlay Badge */
.pc-badge {
    position: absolute;
    top: 16px;
    left: 95px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cyan-600);
    text-transform: uppercase;
}

/* Content Area */
.pc-content {
    padding: 28px;
}

.pc-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    color: var(--navy-900);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 2.6em;
}

.pc-desc {
    font-size: 14px;
    color: var(--slate-500);
    margin-bottom: 20px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 2.8em;
}

/* Footer Link */
.pc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--slate-100);
    padding-top: 20px;
}

.pc-footer a {
    font-size: 12px;
}

/*******************  
PROJECT DETAIL PAGE
*******************/
.case-study-full .breadcrumb {
    font-size: 12px !important;
}

.case-study-full .project-title {
    font-size: 2rem;
}

.case-study-full .pro-overview {
    font-size: 1.6rem;
}

.pro-overview-desc {
    font-size: 14px !important;
}

.gallery-section-title {
    font-size: 1.9rem;
}