/* =========================================
   DESIGN SYSTEM & VARIABLES
========================================= */
:root {
    /* Colors */
    --bg-dark: #FAFAFA;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F8FAFC;

    /* Using User-provided Logo Gradient for Primary Brand */
    --brand-gradient: linear-gradient(90deg, #00d2ff 0%, #3a47d5 100%);
    --brand-solid: #0ea5e9;
    /* Fallback solid color from gradient mix */

    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;

    --border-color: rgba(0, 0, 0, 0.08);
    --border-focus: rgba(0, 210, 255, 0.5);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Effects */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-glow: 0 0 30px rgba(0, 210, 255, 0.15);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Spacing */
    --container-padding: 2rem;
    --section-padding: 6rem 0;
}

/* =========================================
   RESET & BASE STYLES
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-short);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--section-padding);
    position: relative;
}

.text-gradient {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* =========================================
   BUTTONS
========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    font-family: var(--font-body);
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--brand-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--brand-solid);
    background: rgba(0, 210, 255, 0.05);
    transform: translateY(-2px);
}

/* =========================================
   HEADER & NAVIGATION
========================================= */
.navbar {
    position: fixed;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 1200px;
    z-index: 100;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition-normal);
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.navbar.scrolled {
    top: 0.5rem;
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 0.5rem;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
    background: rgba(0, 0, 0, 0.04);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 101;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    position: absolute;
    left: 0;
    transition: var(--transition-fast);
}

.mobile-menu-btn span:nth-child(1) {
    top: 0;
}

.mobile-menu-btn span:nth-child(2) {
    top: 11px;
}

.mobile-menu-btn span:nth-child(3) {
    top: 22px;
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background-color: var(--dark-bg);
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    /* backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px); */
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    padding-top: 4rem;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-focus);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--brand-solid);
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.1);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-primary);
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 2.5rem 4rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-soft);
    display: inline-flex;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--brand-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
    font-weight: 600;
    margin-top: 0.25rem;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background-color: var(--border-color);
}


/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
    transition: var(--transition-fast);
    z-index: 2;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(20px);
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-primary);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--brand-gradient);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.6s ease-in-out infinite;
}


@keyframes scrollWheel {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    60% {
        transform: translateX(-50%) translateY(16px);
        opacity: 0;
    }

    61% {
        transform: translateX(-50%) translateY(0);
        opacity: 0;
    }

    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

/* =========================================
   ANIMATIONS (For Script.js reveals)
========================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 0.8s forwards;
}

@keyframes revealUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   RESPONSIVE STYLES
========================================= */
@media (max-width: 991px) {
    .nav-links {
        display: none;
        /* Will be toggled by JS */
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
        width: 100%;
        max-width: 300px;
    }

    .stat-divider {
        width: 100%;
        height: 2px;
    }
}

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
    }
}

/* =========================================
   TRUSTED BY SECTION
========================================= */
.trusted-by {
    padding: 4rem 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}

.trusted-title {
    text-align: center;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.logo-marquee-track {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.logo-marquee-inner {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
}

.logo-marquee-inner:hover {
    cursor: default;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: calc(100vw / 8);
    padding: 0 0.5rem;
}

.logo-item img {
    height: 100px;
    width: 100%;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: var(--transition-normal);
}

.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@media (max-width: 768px) {
    .logo-item {
        width: calc(100vw / 3);
    }
}

/* =========================================
   TECH STACK MARQUEE SECTION
========================================= */
.tech-stack {
    padding: 3rem 0;
    overflow: hidden;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.tech-marquee-wrapper {
    text-align: center;
}

.tech-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.tech-marquee {
    overflow: hidden;
    position: relative;
    display: flex;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.tech-track {
    display: flex;
    gap: 2rem;
    align-items: center;
    white-space: nowrap;
    width: max-content;
    flex-shrink: 0;
    padding-right: 2rem;
    animation: techScroll 20s linear infinite;
}

.tech-track span {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--bg-dark);
    /* border: 1px solid var(--border-color); */
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
}

.tech-track span:hover {
    background: rgba(0, 210, 255, 0.06);
    border-color: var(--border-focus);
}

@keyframes techScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* =========================================
   REUSABLE SECTION STYLES
========================================= */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.section-line {
    width: 60px;
    height: 3px;
    background: var(--brand-gradient);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.text-center {
    text-align: center;
}

/* =========================================
   ABOUT SECTION
========================================= */
.lead-text {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    position: relative;
}

.bento-grid-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 210, 255, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.bento-card {
    position: relative;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 210, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    background: var(--bg-card);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    transition: var(--transition-normal);
}

.bento-card:hover::before {
    background: var(--brand-gradient);
}

.bento-content {
    position: relative;
    z-index: 2;
}

.bento-main {
    grid-column: span 8;
}

.bento-main h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.bento-main p {
    margin-bottom: 1.25rem;
}

.bento-main p:last-child {
    margin-bottom: 0;
}

.bento-icon-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 210, 255, 0.1);
    color: var(--brand-solid);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 210, 255, 0.2);
}

.bento-experience {
    grid-column: span 4;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
}

.bento-card-glow.bento-exp-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: var(--brand-gradient);
    filter: blur(60px);
    opacity: 0.15;
    z-index: 0;
}

.experience-badge-new {
    margin-bottom: 1.5rem;
}

.experience-badge-new h4 {
    font-size: 4.5rem;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.experience-badge-new span {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.bento-experience .card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.bento-experience .card-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.bento-vision {
    grid-column: span 6;
}

.bento-mission {
    grid-column: span 6;
}

.bento-icon {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(0, 210, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 210, 255, 0.2);
    transition: var(--transition-normal);
}

.bento-card:hover .bento-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(0, 210, 255, 0.15);
}

.bento-vision h3,
.bento-mission h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.bento-vision p,
.bento-mission p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* =========================================
   SERVICES SECTION
========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    z-index: 1;
}

.service-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 210, 255, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 0;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 210, 255, 0.3);
    background: var(--bg-card);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.service-card:hover .service-glow {
    opacity: 1;
}

.service-content {
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 210, 255, 0.05);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--brand-solid);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 210, 255, 0.15);
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background: var(--brand-gradient);
    color: white;
    transform: scale(1.1) rotate(5deg);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(0, 210, 255, 0.3);
    border: none;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    transition: var(--transition-normal);
}

.service-card:hover h3 {
    color: var(--brand-solid);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}


@media (max-width: 991px) {
    .bento-main {
        grid-column: span 12;
    }

    .bento-experience {
        grid-column: span 12;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .bento-vision,
    .bento-mission {
        grid-column: span 12;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   WHY CHOOSE US
========================================= */
.why-us-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.why-us-grid>* {
    flex: 1 1 50%;
}

.features-list {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.08) 0%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-normal);
}

.feature-item:hover {
    transform: translateY(-5px);
    background: var(--bg-card);
    border-color: rgba(0, 210, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-solid) 0%, #3a47d5 100%);
    color: white;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: 0 8px 15px rgba(0, 210, 255, 0.2);
    transition: var(--transition-normal);
}

.feature-item:hover .feature-icon {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 12px 20px rgba(0, 210, 255, 0.3);
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature-text p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.why-us-visual {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.why-us-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: var(--brand-gradient);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: pulseGlow 4s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes pulseGlow {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.25;
    }
}

.page-glass-panel {
    padding: 3.5rem;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    /* max-width: 420px; */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.panel-header {
    background: rgba(255, 255, 255, 0.5);
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.dots {
    display: flex;
    gap: 0.4rem;
}

.dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
}

.dots span:nth-child(1) {
    background: #ff5f56;
}

.dots span:nth-child(2) {
    background: #ffbd2e;
}

.dots span:nth-child(3) {
    background: #27c93f;
}

.panel-body {
    padding: 2.5rem 2rem;
}

.panel-body h3 {
    margin-bottom: 1.5rem;
    font-size: 1.35rem;
    font-weight: 700;
}

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.industry-tags li {
    background: rgba(255, 255, 255, 0.8);
    padding: 0.6rem 1.25rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
}

.industry-tags li:hover {
    background: white;
    border-color: rgba(0, 210, 255, 0.4);
    color: var(--brand-solid);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.1);
}

.float-panel {
    position: absolute;
    bottom: 25px;
    right: -30px;
    width: auto;
    max-width: none;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 16px;
    animation: float 6s ease-in-out infinite;
    z-index: 3;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.stat-circle {
    width: 65px;
    height: 65px;
}

.circular-chart {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.circle-bg {
    fill: none;
    stroke: rgba(0, 0, 0, 0.05);
    stroke-width: 3.8;
}

.circle {
    fill: none;
    stroke: var(--brand-solid);
    stroke-width: 2.8;
    stroke-linecap: round;
    animation: progress 2.5s ease-out forwards;
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

.percentage {
    fill: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 10px;
    text-anchor: middle;
    font-weight: 800;
}

.float-panel>div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.float-panel h4 {
    font-size: 1.15rem;
    margin-bottom: 0.15rem;
    font-weight: 700;
}

.float-panel p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    max-width: 180px;
    line-height: 1.4;
    margin: 0;
}

/* =========================================
   PORTFOLIO HIGHLIGHTS
========================================= */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.portfolio-card {
    position: relative;
    border-radius: 24px;
    height: 420px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateZ(0);
    /* Hardware acceleration */
}

.portfolio-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 1;
}

.portfolio-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
    transition: background 0.4s ease;
}

.portfolio-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem 2rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.portfolio-tag {
    display: inline-block;
    align-self: flex-start;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    margin-bottom: 1rem;
    transition: transform 0.4s ease;
}

.portfolio-card-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    transition: transform 0.4s ease;
}

.portfolio-card-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.portfolio-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-solid);
    font-weight: 600;
    font-size: 1rem;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease;
}

.portfolio-action svg {
    transition: transform 0.3s ease;
}

/* Hover Effects */
.portfolio-card:hover .portfolio-card-bg {
    transform: scale(1.08);
    /* Zoom effect */
}

.portfolio-card:hover .portfolio-card-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.95) 100%);
}

.portfolio-card:hover .portfolio-tag,
.portfolio-card:hover .portfolio-card-content h3,
.portfolio-card:hover .portfolio-card-content p {
    transform: translateY(-8px);
}

.portfolio-card:hover .portfolio-card-content p {
    opacity: 1;
}

.portfolio-card:hover .portfolio-action {
    transform: translateY(-8px);
    opacity: 1;
}

.portfolio-action:hover svg {
    transform: translateX(5px);
    /* Arrow slides right on hover */
}

.mt-4 {
    margin-top: 2rem;
}

/* =========================================
   OUR PROCESS
========================================= */
.process-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

/* The vertical line centered on desktop */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(0, 210, 255, 0.4), var(--brand-solid), rgba(0, 210, 255, 0.4), transparent);
    z-index: 0;
}

.process-step {
    position: relative;
    width: 50%;
    margin-bottom: 4rem;
    z-index: 1;
}

.process-step:last-child {
    margin-bottom: 0;
}

/* Left side steps */
.process-step:nth-child(odd) {
    left: 0;
    padding-right: 3rem;
    text-align: right;
}

/* Right side steps */
.process-step:nth-child(even) {
    left: 50%;
    padding-left: 3rem;
}

/* The number dot */
.step-number {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 3px solid var(--brand-solid);
    color: var(--brand-solid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
    transition: var(--transition-normal);
}

.process-step:nth-child(odd) .step-number {
    right: -25px;
}

.process-step:nth-child(even) .step-number {
    left: -25px;
}

.process-step:hover .step-number {
    background: var(--brand-gradient);
    color: white;
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.step-content {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.1) 0%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-normal);
}

.step-content:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 210, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.1);
}

.process-step:nth-child(odd):hover .step-content {
    transform: translateX(-10px);
}

.process-step:nth-child(even):hover .step-content {
    transform: translateX(10px);
}

.step-content:hover::before {
    opacity: 1;
}

.step-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    color: var(--text-primary);
    transition: var(--transition-short);
}

.process-step:hover h3 {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive updates for new sections */
@media (max-width: 991px) {
    .why-us-grid {
        flex-direction: column;
    }

    .float-panel {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .process-timeline::before {
        left: 30px;
        transform: none;
    }

    .process-step {
        width: 100%;
        padding-left: 80px !important;
        padding-right: 0 !important;
        text-align: left !important;
        left: 0 !important;
        margin-bottom: 2.5rem;
    }

    .step-number {
        left: 10px !important;
        right: auto !important;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .process-step:hover .step-content {
        transform: translateX(5px) !important;
    }
}

/* =========================================
   FOUNDER SECTION
========================================= */
.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    padding: 2rem 0;
}

.portrait {
    /* height: 550px; */
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
}

.why-us-visual:hover .portrait {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 25px 60px rgba(0, 210, 255, 0.2);
}

.founder-content {
    position: relative;
    z-index: 2;
}

.founder-card {
    padding: 3.5rem;
    border-radius: 20px;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    color: var(--brand-solid);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(0, 210, 255, 0.4);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-content h2 {
    font-size: 3rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.founder-role-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.role {
    font-size: 1.15rem;
    color: var(--brand-solid);
    font-weight: 600;
    margin: 0;
}

.founder-website {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition-fast);
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.founder-website:hover {
    color: var(--brand-solid);
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.15);
}

.founder-bio p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.expertise-area {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.expertise-area h3 {
    margin-bottom: 1.5rem;
    font-size: 1.35rem;
    color: var(--text-primary);
}

.expertise-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.expertise-list li {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.6rem 1.25rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-fast);
}

.expertise-list li:hover {
    background: white;
    border-color: rgba(0, 210, 255, 0.4);
    color: var(--brand-solid);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.1);
}

/* =========================================
   FOOTER
========================================= */
.footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-desc {
    margin: 1.5rem 0 2rem;
    color: var(--text-secondary);
    max-width: 400px;
}

.team-structure h4 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.team-structure p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    max-width: 400px;
}

.footer-col h3 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--brand-solid);
    transform: translateX(5px);
    display: inline-block;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.contact-info a {
    transition: var(--transition-fast);
}

.contact-info a:hover {
    color: var(--text-primary);
}

.icon {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--text-primary);
}

@media (max-width: 991px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .portrait {
        height: 400px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}


/* =========================================
   TESTIMONIALS SECTION
========================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: var(--transition-normal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    z-index: 2;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.08) 0%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 210, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.1);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--brand-solid);
    opacity: 0.1;
    transition: var(--transition-normal);
}

.quote-icon svg {
    width: 60px;
    height: 60px;
}

.testimonial-card:hover .quote-icon {
    opacity: 0.2;
    transform: scale(1.1) rotate(5deg);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    font-style: italic;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-solid) 0%, #3a47d5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    font-family: var(--font-heading);
    box-shadow: 0 8px 20px rgba(0, 210, 255, 0.25);
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.author-info h4 {
    font-size: 1.05rem;
    margin-bottom: 0.15rem;
    font-weight: 700;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =========================================
   FAQ SECTION
========================================= */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-normal);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    z-index: 1;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.08) 0%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-normal);
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 210, 255, 0.2);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-header h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
    transition: var(--transition-short);
}

.faq-item:hover .faq-header h4 {
    color: var(--brand-solid);
}

.faq-icon-wrapper {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: rgba(0, 210, 255, 0.1);
    color: var(--brand-solid);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 210, 255, 0.2);
    transition: var(--transition-normal);
}

.faq-item:hover .faq-icon-wrapper {
    background: var(--brand-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(0, 210, 255, 0.3);
}

.faq-icon {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1;
    transition: transform 0.3s ease;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
    padding: 0 2rem;
}

.faq-body p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Active State */
.faq-item.active {
    border-color: rgba(0, 210, 255, 0.3);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 35px rgba(0, 210, 255, 0.08);
}

.faq-item.active::before {
    opacity: 1;
}

.faq-item.active .faq-header h4 {
    color: var(--brand-solid);
}

.faq-item.active .faq-icon-wrapper {
    background: var(--brand-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(0, 210, 255, 0.3);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-body {
    max-height: 500px;
    /* arbitrary large value */
    padding: 0 2rem 1.5rem;
}

@media (max-width: 991px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* =========================================
   CONTACT FORM SECTION
========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-panel h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.contact-info-panel p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.2);
    color: var(--brand-solid);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.contact-item:hover .icon-circle {
    background: var(--brand-gradient);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(0, 210, 255, 0.3);
    transform: scale(1.05);
    border: none;
}

.contact-item h5 {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.contact-item a,
.contact-item span {
    font-size: 1.125rem;
    color: var(--text-primary);
    font-weight: 500;
}

/* Form Styles */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.contact-form {
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: var(--text-primary);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(0, 210, 255, 0.6);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(0, 210, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    justify-content: center;
    font-size: 1.125rem;
    padding: 1.2rem;
    margin-top: 1rem;
    border-radius: 12px;
}

.form-result {
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    text-align: center;
    font-weight: 500;
}

.form-result.success {
    background: rgba(46, 213, 115, 0.1);
    color: #2ed573;
    border: 1px solid rgba(46, 213, 115, 0.2);
}

.form-result.error {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
    border: 1px solid rgba(255, 71, 87, 0.2);
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .why-us-grid>* {
        flex: 1 1 100%;
    }

    .why-us-visual {
        flex-direction: column;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

.dots::after {
    display: none;
}

/* Base Responsive Fixes for Small Screens */
@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .page-glass-panel,
    .founder-card {
        padding: 1.5rem;
    }

    .portfolio-card {
        height: 340px;
    }

    .portfolio-card-content {
        padding: 1.5rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .tech-track {
        gap: 1.5rem;
        padding-right: 1.5rem;
    }
}