/* ===== CUSTOM FONTS ===== */
@font-face {
    font-family: 'Orbitron';
    src: url('Orbitron-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}


@font-face {
    font-family: 'BrunoAce';
    src: url('BrunoAce-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Blinker';
    src: url('Blinker-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Blinker-SemiBold';
    src: url('Blinker-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    cursor: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #FFFFFF;
    overflow-x: hidden;
    cursor: none;
}

/* ===== LAZY LOADING OPTIMIZATION ===== */
.lazy-image,
.lazy-video {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.lazy-image.loaded,
.lazy-video.loaded {
    opacity: 1;
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
    width: 12px;
    height: 12px;
    background-color: #6AF0C1;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
    mix-blend-mode: difference;
}

.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(1.5);
}

.cursor-blur {
    width: 40px;
    height: 40px;
    background-color: #6AF0C1;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    filter: blur(6px);
    opacity: 0.3;
    transition: transform 0.2s ease;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 28px 72px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    opacity: 0.5;
}

.header:hover {
    opacity: 1 !important;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'BrunoAce', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
    cursor: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-block;
}

.logo:hover {
    transform: translateY(-2px) scale(1.05);
    color: #6AF0C1;
    text-shadow: 0 0 20px rgba(106, 240, 193, 0.5),
                 0 0 30px rgba(106, 240, 193, 0.3);
}

.navigation {
    display: flex;
    gap: 48px;
    align-items: center;
}

.nav-link {
    font-size: 16px;
    letter-spacing: 0.5px;
    color: #E0E0E0;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    cursor: none;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #6AF0C1;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #6AF0C1;
    transform: translateY(-2px) scale(1.05);
}

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

.header-button {
    background: transparent;
    border: 1px solid #2C2C2C;
    color: #FFFFFF;
    border-radius: 40px;
    padding: 12px 24px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    cursor: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    pointer-events: auto;
}

.header-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(106, 240, 193, 0.2), transparent);
    transition: left 0.5s ease;
}

.header-button:hover::before {
    left: 100%;
}

.header-button:hover,
.header-button.button-hover {
    background: rgba(30, 30, 30, 0.9);
    border: 1px solid #6AF0C1;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 30px rgba(106, 240, 193, 0.2);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 1));
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: blur(0.3px);
    transform: scale(1.1);
    transition: transform 0.1s ease-out;
}

.hero-light-source {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center 40%, 
        rgba(106, 240, 193, 0.15) 0%, 
        rgba(106, 240, 193, 0.08) 25%, 
        rgba(255, 255, 255, 0.05) 40%,
        transparent 65%
    );
    pointer-events: none;
    z-index: 3;
    mix-blend-mode: screen;
}

.hero-gradient-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.95) 85%, #000000 100%);
    pointer-events: none;
    z-index: 5;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
}


.hero-heading {
    font-family: 'Orbitron', 'Inter', sans-serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.5px;
    color: #FFFFFF;
    max-width: 900px;
    margin-bottom: 0;
}

.hero-text-part {
    display: inline-block;
    opacity: 0;
    margin-right: 0.25em;
    animation-name: fadeInUp;
    animation-duration: 0.8s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

.hero-text-part:last-child {
    margin-right: 0;
}

.hero-heading .highlight {
    color: #6AF0C1;
}

.effortless-wrapper {
    display: inline-block;
    margin-left: 0.25em;
}

.letter.effortless {
    font-family: 'BrunoAce', 'Inter', sans-serif;
    font-weight: normal;
    font-size: 80px;
    letter-spacing: 0px;
    display: inline-block;
    opacity: 0;
    color: #6AF0C1;
    text-shadow: 0 0 10px rgba(106, 240, 193, 0.8), 
                 0 0 20px rgba(106, 240, 193, 0.6),
                 0 0 30px rgba(106, 240, 193, 0.4),
                 0 0 40px rgba(106, 240, 193, 0.2);
    animation-name: letterReveal;
    animation-duration: 0.4s;
    animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
    animation-fill-mode: forwards;
}

@keyframes letterReveal {
    0% {
        opacity: 0;
        transform: translateY(30px) rotate(-5deg) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotate(0deg) scale(1);
    }
}

.hero-subtext {
    font-family: 'BrunoAce', 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #C8C8C8;
    max-width: 720px;
    margin-top: 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-subtext.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-buttons {
    display: flex;
    gap: 24px;
    margin-top: 52px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.primary-button {
    background: #2BE6A8;
    color: #000000;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    position: relative;
    overflow: hidden;
    pointer-events: auto;
}

.primary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.primary-button:hover::before {
    left: 100%;
}

.primary-button:hover,
.primary-button.button-hover {
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 8px 30px rgba(43, 230, 168, 0.4);
}

.primary-button:active {
    transform: translateY(-1px) scale(1.03);
}

.secondary-button {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(70, 70, 70, 0.6);
    color: #FFFFFF;
    border-radius: 30px;
    padding: 14px 32px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    cursor: none;
    transition: all 0.3s ease;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.secondary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.secondary-button:hover::before {
    left: 100%;
}

.secondary-button:hover {
    transform: translateY(-2px) scale(1.05);
    background: rgba(50, 50, 50, 0.9);
    box-shadow: 0 8px 30px rgba(106, 240, 193, 0.2);
}

.secondary-button:active {
    transform: translateY(-1px) scale(1.03);
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: #A0A0A0;
    opacity: 0.6;
    animation: float 2.5s ease-in-out infinite alternate;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Separate heading animations */
.about-heading-animate {
    opacity: 0;
    transform: translateX(-50px) translateY(20px);
    transition: all 1.2s ease-out;
}

.about-heading-animate.visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.process-heading-animate {
    opacity: 0;
    transform: translateX(50px) translateY(30px);
    transition: all 1.0s ease-out;
}

.process-heading-animate.visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.contact-heading-animate {
    opacity: 0;
    transform: scale(0.8) translateY(40px);
    transition: all 0.6s ease-out;
    transition-delay: 0.2s;
    font-family: 'BrunoAce', 'Inter', sans-serif !important;
    font-weight: 400 !important;
}

.contact-heading-animate.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}

@keyframes aboutHeadingSlide {
    0% {
        opacity: 0;
        transform: translateX(-50px) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes processHeadingSlide {
    0% {
        opacity: 0;
        transform: translateX(50px) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes contactHeadingSlide {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(40px);
    }
    100% {
        opacity: 1 !important;
        transform: scale(1) translateY(0);
    }
}


@keyframes float {
    from {
        transform: translate(-50%, 0);
    }
    to {
        transform: translate(-50%, -10px);
    }
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px;
    background: #000000;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.2s ease, transform 1.2s ease;
    position: relative;
    overflow: hidden;
}

.content-section.dashboard-section {
    background: transparent !important;
    min-height: auto;
    padding: 0;
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ABOUT SECTION VIDEO ===== */
.about-section {
    position: relative;
}

.about-logo {
    position: absolute;
    bottom: 40px;
    right: 40px;
    font-family: 'BrunoAce', 'Inter', sans-serif;
    font-size: 55px;
    font-weight: 400;
    color: #888888;
    text-shadow: 0 0 10px rgba(136, 136, 136, 0.5), 
                 0 0 20px rgba(136, 136, 136, 0.3),
                 0 0 30px rgba(136, 136, 136, 0.2);
    z-index: 10;
    pointer-events: none;
}

.logo-version {
    font-family: 'Blinker', 'Inter', sans-serif;
    font-weight: 200;
}



.about-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 33.33%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.about-video-container-2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 66.66%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.about-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.about-video-2 {
    width: 100%;
    height: 150%;
    object-fit: cover;
    object-position: top;
    opacity: 0.7;
}

.about-neon-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center, 
        rgba(0, 212, 255, 0.125) 0%, 
        rgba(0, 212, 255, 0.075) 30%, 
        rgba(0, 212, 255, 0.04) 50%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: screen;
}

.about-neon-light-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center, 
        rgba(0, 212, 255, 0.125) 0%, 
        rgba(0, 212, 255, 0.075) 30%, 
        rgba(0, 212, 255, 0.04) 50%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 2;
    mix-blend-mode: screen;
}

.about-video-edge-shadow {
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.7) 70%, #000000 100%);
    pointer-events: none;
    z-index: 3;
}

.about-video-edge-shadow-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    background: linear-gradient(to left, transparent 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.7) 70%, #000000 100%);
    pointer-events: none;
    z-index: 3;
}

/* ===== ABOUT CONTENT WRAPPER ===== */
.about-content-wrapper {
    position: relative;
    z-index: 10;
    width: 66.66%;
    margin-left: auto;
    margin-right: 0;
    padding-right: 80px;
    padding-left: 40px;
}

.about-main-title {
    font-family: 'Orbitron', 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 48px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3), 
                 0 0 20px rgba(255, 255, 255, 0.2),
                 0 0 30px rgba(255, 255, 255, 0.1);
}

.about-main-title.title-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ===== ABOUT CARDS CONTAINER ===== */
.about-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

/* ===== GLASSMORPHISM CARDS ===== */
.about-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.6);
    cursor: none;
    opacity: 0;
}

.about-card.hover-enabled {
    transition: transform 0.2s ease-out,
                box-shadow 0.2s ease-out,
                border-color 0.2s ease-out;
}

/* Card 1 - Research: Slide from Left with Rotation */
.card-research {
    opacity: 0;
    transform: translateX(-80px) rotate(-8deg) scale(0.9);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.2s;
    pointer-events: none;
}

.card-research.card-visible {
    opacity: 1;
    transform: translateX(0) rotate(0deg) scale(1);
    pointer-events: auto;
}

/* Card 2 - Design: Scale Up from Bottom */
.card-design {
    opacity: 0;
    transform: translateY(50px) scale(0.85);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.4s;
    pointer-events: none;
}

.card-design.card-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Card 3 - Execution: Slide from Right with Rotation */
.card-execution {
    opacity: 0;
    transform: translateX(80px) rotate(8deg) scale(0.9);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.6s;
    pointer-events: none;
}

.card-execution.card-visible {
    opacity: 1;
    transform: translateX(0) rotate(0deg) scale(1);
    pointer-events: auto;
}

.about-card.hover-enabled:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 12px 60px rgba(0, 0, 0, 0.9),
                0 0 30px rgba(106, 240, 193, 0.4),
                0 0 50px rgba(106, 240, 193, 0.3),
                0 0 80px rgba(106, 240, 193, 0.2),
                inset 0 0 30px rgba(106, 240, 193, 0.1);
    border-color: rgba(106, 240, 193, 0.6);
    background: rgba(106, 240, 193, 0.03);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.2s ease-out;
}

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

.card-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.card-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #BEBEBE;
    margin: 0 0 20px 0;
    max-width: 380px;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #C8C8C8;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 6px 12px;
    transition: all 0.2s ease-out;
}

.about-card.hover-enabled:hover .tag {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.about-section .container {
    position: relative;
    z-index: 10;
    max-width: 66.66%;
    margin-left: auto;
    margin-right: 0;
    text-align: left;
    padding-right: 80px;
}

.about-title {
    font-family: 'Orbitron', 'Inter', sans-serif;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 32px;
}

.about-description {
    font-family: 'Blinker', 'Inter', sans-serif;
    font-size: 25px !important;
    font-weight: 200;
    line-height: 1.8;
    color: #C8C8C8;
    margin: 0;
}

.neon-red-text {
    font-family: 'Blinker-SemiBold', 'Blinker', sans-serif;
    font-weight: 600;
    color: #FF0844;
    text-shadow: 0 0 10px rgba(255, 8, 68, 0.8), 
                 0 0 20px rgba(255, 8, 68, 0.5),
                 0 0 30px rgba(255, 8, 68, 0.3);
}

.neon-turquoise-text {
    font-family: 'Blinker-SemiBold', 'Blinker', sans-serif !important;
    font-weight: 600 !important;
    color: #6AF0C1 !important;
    text-shadow: 0 0 10px rgba(106, 240, 193, 0.8), 
                 0 0 20px rgba(106, 240, 193, 0.5),
                 0 0 30px rgba(106, 240, 193, 0.3) !important;
}

.neon-red-text {
    font-family: 'Blinker-SemiBold', 'Blinker', sans-serif !important;
    font-weight: 600 !important;
    color: #FF4D4D !important;
    text-shadow: 0 0 10px rgba(255, 77, 77, 0.8), 
                 0 0 20px rgba(255, 77, 77, 0.6),
                 0 0 30px rgba(255, 77, 77, 0.4),
                 0 0 40px rgba(255, 77, 77, 0.2) !important;
}


.about-gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background: linear-gradient(to bottom, #000000 0%, rgba(0, 0, 0, 0.95) 15%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    pointer-events: none;
    z-index: 5;
}

.about-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.95) 85%, #000000 100%);
    pointer-events: none;
    z-index: 5;
}

.container {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.section-title {
    font-size: 56px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 24px;
}

.section-description {
    font-size: 18px;
    line-height: 1.6;
    color: #C8C8C8;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    align-items: flex-start;
    padding-top: 150px;
    position: relative;
    overflow: hidden;
}

.process-section.dashboard-section {
    overflow: visible;
    padding-top: 0;
    min-height: auto;
    padding-bottom: 4rem;
}


.process-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
}

.process-light-source {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center 50%, 
        rgba(106, 240, 193, 0.15) 0%, 
        rgba(106, 240, 193, 0.08) 25%, 
        rgba(255, 255, 255, 0.05) 40%,
        transparent 65%
    );
    pointer-events: none;
    z-index: 3;
    mix-blend-mode: screen;
}

.process-gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background: linear-gradient(to bottom, #000000 0%, rgba(0, 0, 0, 0.95) 15%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    pointer-events: none;
    z-index: 5;
}

.process-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.95) 85%, #000000 100%);
    pointer-events: none;
    z-index: 5;
}

.process-container {
    text-align: left;
    max-width: 1400px;
    padding-left: 80px;
    display: flex;
    gap: 60px;
    align-items: stretch;
    position: relative;
    z-index: 10;
}


@media (max-width: 1200px) {
    .about-content-wrapper {
        padding-right: 40px;
        padding-left: 20px;
    }
    
    .about-main-title {
        font-size: 48px;
        margin-bottom: 40px;
    }
    
    .about-cards-container {
        gap: 20px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .card-text {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .about-content-wrapper {
        width: 100%;
        padding: 40px;
    }
    
    .about-main-title {
        font-size: 42px;
        margin-bottom: 36px;
        text-align: center;
    }
    
    .about-cards-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .about-video-container {
        width: 100%;
        height: 300px;
    }
    
    .about-card {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .process-container {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .process-title {
        font-size: 36px;
    }
    
    .process-description {
        font-size: 16px;
        max-width: 100%;
    }
    
    .about-section .container {
        max-width: 100%;
        margin-left: 0;
        padding-right: 24px;
        padding-left: 24px;
        text-align: center;
    }
    
    .about-content-wrapper {
        padding: 24px;
    }
    
    .about-main-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .about-cards-container {
        gap: 20px;
    }
    
    .about-logo {
        font-size: 40px;
        bottom: 20px;
        right: 20px;
    }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
    overflow: visible;
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.contact-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.contact-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    animation: slowPan 25s ease-in-out infinite alternate;
    filter: blur(2px);
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
}

.contact-light-source {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center 50%, 
        rgba(106, 240, 193, 0.15) 0%, 
        rgba(106, 240, 193, 0.08) 25%, 
        rgba(255, 255, 255, 0.05) 40%,
        transparent 65%
    );
    pointer-events: none;
    z-index: 3;
    mix-blend-mode: screen;
}

.contact-gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background: linear-gradient(to bottom, #000000 0%, rgba(0, 0, 0, 0.95) 15%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.3) 70%, transparent 100%);
    pointer-events: none;
    z-index: 5;
}

/* Original contact-gradient-top replacement */
.contact-gradient-top-old {
    display: none;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.18) 35%,
        rgba(0, 0, 0, 0.08) 40%,
        rgba(0, 0, 0, 0.03) 45%,
        transparent 50%
    );
    pointer-events: none;
    z-index: 5;
}

.contact-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.95) 85%, #000000 100%);
    pointer-events: none;
    z-index: 5;
}

@keyframes slowPan {
    0% {
        transform: scale(1.1) translate(0, 0);
    }
    100% {
        transform: scale(1.15) translate(-20px, -20px);
    }
}

@keyframes contactFloat {
    0%, 100% {
        transform: scale(1.1) translateY(0px) translateX(0px);
    }
    25% {
        transform: scale(1.12) translateY(-15px) translateX(10px);
    }
    50% {
        transform: scale(1.13) translateY(-25px) translateX(-5px);
    }
    75% {
        transform: scale(1.12) translateY(-10px) translateX(-15px);
    }
}

.contact-container {
    position: relative;
    z-index: 10;
    width: 80%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.collab-card {
    position: relative;
    background: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(5px) saturate(250%) brightness(1.1);
    -webkit-backdrop-filter: blur(5px) saturate(250%) brightness(1.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: 3.5rem 3rem;
    display: inline-block;
    width: 100%;
    max-width: 750px;
    animation: scaleIn 0.8s ease-out forwards;
    overflow: hidden;
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.collab-tag {
    display: inline-block;
    font-size: 0.85rem;
    color: #cccccc;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 0.4rem 1rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
    animation: fadeInDown 1.4s ease-out 0.3s backwards;
    transition: all 0.3s ease;
    cursor: none;
}

.collab-tag:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.03);
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.collab-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collab-heading.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.collab-text {
    color: rgba(220, 220, 220, 0.85);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2.2rem;
    animation: fadeInUp 1.4s ease-out 0.5s backwards;
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-send-email,
.btn-schedule-call {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    border: none;
    border-radius: 50px;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    cursor: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
    pointer-events: auto;
}

.btn-send-email {
    background: #2BE6A8;
    color: black;
    font-weight: 600;
    animation: fadeInUp 1.4s ease-out 0.6s backwards;
}

.btn-send-email::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-send-email:hover::before {
    left: 100%;
}

.btn-send-email:hover,
.btn-send-email.button-hover {
    transform: translateY(-2px) scale(1.06);
    box-shadow: 0 8px 30px rgba(43, 230, 168, 0.4);
}

.btn-schedule-call {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1.4s ease-out 0.7s backwards;
}

.btn-schedule-call::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-schedule-call:hover::before {
    left: 100%;
}

.btn-schedule-call:hover,
.btn-schedule-call.button-hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.social-links {
    display: flex;
    gap: 1.8rem;
    justify-content: center;
    margin-top: 2rem;
    animation: fadeInUp 1.4s ease-out 0.9s backwards;
}

.social-icon {
    color: #9CA3AF;
    transition: all 0.3s ease;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.social-icon:hover {
    color: white;
    transform: scale(1.1);
}

/* Light Sweep Animation */
.card-light-sweep {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    animation: lightSweep 10s ease-in-out infinite;
    pointer-events: none;
    opacity: 0.1;
    mix-blend-mode: soft-light;
}

@keyframes lightSweep {
    0% {
        transform: translate(-100%, -100%) rotate(45deg);
    }
    100% {
        transform: translate(100%, 100%) rotate(45deg);
    }
}

/* ===== FOOTER BADGE ===== */
.footer-badge {
    position: fixed;
    bottom: 24px;
    right: 24px;
    font-size: 13px;
    color: #B0B0B0;
    background: rgba(20, 20, 20, 0.7);
    border-radius: 8px;
    padding: 6px 10px;
    z-index: 100;
    opacity: 0;
    animation: fadeIn 1.6s ease-out 2s forwards;
    cursor: none;
    transition: filter 0.3s ease;
}

.footer-badge:hover {
    filter: brightness(1.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
/* ===== TABLET LANDSCAPE (1024px) ===== */
@media (max-width: 1024px) {
    .header {
        padding: 24px 48px;
    }
    
    .hero-heading {
        font-size: 56px;
        line-height: 1.2;
    }
    
    .hero-subtext {
        font-size: 18px;
        max-width: 600px;
    }
    
    .navigation {
        gap: 32px;
    }
    
    /* About Section (Our Approach) */
    .about-video-container {
        display: none;
    }
    
    .about-logo {
        display: none;
    }
    
    .about-gradient-top,
    .about-gradient-bottom {
        display: none;
    }
    
    .about-cards-container {
        grid-template-columns: 1fr;
        gap: 24px;
        width: 90%;
        margin: 0 auto;
        padding: 0 24px;
    }
    
    .about-content-wrapper {
        width: 90%;
        margin: 0 auto;
        padding: 0 24px;
    }
    
    .about-main-title {
        font-size: 48px;
        text-align: center;
    }
    
    /* Process Section */
    .process-content {
        min-width: 100%;
        width: 100%;
        padding: 0 24px;
    }
    
    .process-image-container {
        width: 60%;
        opacity: 0.6;
    }
    
    .process-title {
        font-size: 48px;
    }
    
    .process-description {
        font-size: 20px;
        max-width: 100%;
    }
    
    /* Contact Section */
    .collab-card {
        padding: 3rem 2.5rem;
    }
    
    .collab-heading {
        font-size: 2.5rem;
    }
}

/* ===== TABLET PORTRAIT & MOBILE LANDSCAPE (768px) ===== */
@media (max-width: 768px) {
    /* Header */
    .header {
        padding: 20px 24px;
    }
    
    .header-content {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .logo {
        font-size: 20px;
        text-align: center;
    }
    
    .navigation {
        gap: 20px;
        font-size: 14px;
    }
    
    .nav-link {
        padding: 8px 0;
    }
    
    .header-button {
        display: none;
    }
    
    /* Hero Section */
    .hero {
        min-height: 100vh;
        padding: 80px 24px 60px;
    }
    
    .hero-heading {
        font-size: 38px;
        line-height: 1.3;
    }
    
    .hero-text-part {
        display: inline-block;
        white-space: nowrap;
    }
    
    .hero-subtext {
        font-size: 15px;
        max-width: 500px;
        line-height: 1.6;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        align-items: center;
    }
    
    .primary-button {
        width: auto;
        max-width: 300px;
    }
    
    .scroll-hint {
        font-size: 13px;
    }
    
    /* About Section (Our Approach) */
    .about-section {
        padding: 80px 0;
    }
    
    .about-video-container {
        display: none;
    }
    
    .about-logo {
        display: none;
    }
    
    .about-gradient-top,
    .about-gradient-bottom {
        display: none;
    }
    
    .about-cards-container {
        grid-template-columns: 1fr;
        width: 100%;
        padding: 0 24px;
        gap: 20px;
    }
    
    .about-content-wrapper {
        width: 100%;
        padding: 0 24px;
    }
    
    .about-main-title {
        font-size: 36px;
        margin-bottom: 32px;
    }
    
    .about-card {
        padding: 24px 20px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .card-text {
        font-size: 15px;
    }
    
    /* Process Section (About) */
    .process-section {
        padding: 80px 0;
    }
    
    .process-content {
        min-width: 100%;
        width: 100%;
        padding: 0;
    }
    
    .process-image-container {
        width: 100%;
        opacity: 0.3;
        right: -20%;
    }
    
    .process-container {
        padding: 0 24px;
        width: 100%;
        max-width: 100%;
    }
    
    .process-title {
        font-size: 36px;
        line-height: 1.3;
        text-align: center;
    }
    
    .process-description {
        font-size: 16px;
        line-height: 1.6;
        text-align: center;
        padding-right: 0;
        max-width: 100%;
        width: 100%;
    }
    
    /* Dashboard Section Responsive - Hide dashboard, center About */
    .dashboard-section .dashboard-container {
        display: none !important;
    }
    
    .dashboard-section .dashboard-heading-wrapper {
        width: 100% !important;
        max-width: 420px;
        margin: 0 auto;
        text-align: center;
        align-items: center !important;
        padding: 48px 36px !important;
    }
    
    .dashboard-section .dashboard-heading-wrapper .about-main-title {
        text-align: center !important;
        font-size: 42px !important;
        margin-bottom: 20px !important;
    }
    
    .dashboard-section .dashboard-heading-wrapper > p {
        text-align: center !important;
        font-size: 18px !important;
        line-height: 1.6 !important;
    }
    
    /* Fix icon alignment for tablets/phones */
    .dashboard-section .dashboard-heading-wrapper .flex.flex-col {
        align-items: center !important;
        width: 100%;
        gap: 28px !important;
        margin-top: 40px !important;
    }
    
    .dashboard-section .dashboard-heading-wrapper .flex.items-center.gap-5 {
        width: 100%;
        gap: 16px !important;
        justify-content: flex-start;
    }
    
    .dashboard-section .dashboard-heading-wrapper .flex.items-center.gap-5 .p-4 {
        padding: 14px !important;
    }
    
    .dashboard-section .dashboard-heading-wrapper .flex.items-center.gap-5 svg {
        width: 28px !important;
        height: 28px !important;
    }
    
    .dashboard-section .dashboard-heading-wrapper .flex.items-center.gap-5 .text-left {
        text-align: left;
    }
    
    .dashboard-section .dashboard-heading-wrapper .flex.items-center.gap-5 span:first-child {
        font-size: 20px !important;
    }
    
    .dashboard-section .dashboard-heading-wrapper .flex.items-center.gap-5 span.text-gray-500 {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    /* Contact Section */
    .contact-container {
        width: 90%;
        padding: 24px;
    }
    
    .collab-card {
        padding: 2.5rem 2rem;
    }
    
    .collab-tag {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .collab-heading {
        font-size: 2rem;
    }
    
    .collab-text {
        font-size: 15px;
    }
    
    .button-group {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .btn-send-email,
    .btn-schedule-call {
        width: 100%;
        justify-content: center;
    }
    
    .social-links {
        gap: 16px;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 1.5rem 2rem;
    }
    
    .footer-content {
        padding: 2rem;
        gap: 2rem;
    }
}

/* ===== MEDIUM TABLETS/LARGE PHONES (480px - 768px) ===== */
@media (min-width: 480px) and (max-width: 768px) {
    .dashboard-section .dashboard-heading-wrapper {
        max-width: 440px !important;
        padding: 52px 40px !important;
    }
    
    .dashboard-section .dashboard-heading-wrapper .about-main-title {
        font-size: 46px !important;
        margin-bottom: 22px !important;
    }
    
    .dashboard-section .dashboard-heading-wrapper > p {
        font-size: 19px !important;
        line-height: 1.6 !important;
    }
    
    .dashboard-section .dashboard-heading-wrapper .flex.flex-col {
        gap: 30px !important;
        margin-top: 44px !important;
    }
    
    .dashboard-section .dashboard-heading-wrapper .flex.items-center.gap-5 {
        max-width: 100%;
        width: 100%;
        gap: 18px !important;
    }
    
    .dashboard-section .dashboard-heading-wrapper .flex.items-center.gap-5 .p-4 {
        padding: 16px !important;
    }
    
    .dashboard-section .dashboard-heading-wrapper .flex.items-center.gap-5 svg {
        width: 30px !important;
        height: 30px !important;
    }
    
    .dashboard-section .dashboard-heading-wrapper .flex.items-center.gap-5 span:first-child {
        font-size: 22px !important;
    }
    
    .dashboard-section .dashboard-heading-wrapper .flex.items-center.gap-5 span.text-gray-500 {
        font-size: 17px !important;
        line-height: 1.5 !important;
    }
}

/* ===== MEDIUM MOBILE (640px) ===== */
@media (max-width: 640px) {
    /* Hero Section */
    .hero-heading {
        font-size: 34px;
        line-height: 1.4;
    }
    
    .hero-text-part {
        display: inline-block;
        white-space: nowrap;
        font-size: 34px;
    }
    
    .letter.effortless {
        font-size: 34px;
    }
    
    .effortless-wrapper {
        display: inline-block;
        white-space: nowrap;
    }
    
    .hero-subtext {
        font-size: 14px;
    }
    
    /* Dashboard About Section - Icon alignment fix */
    .dashboard-section .dashboard-heading-wrapper {
        padding: 44px 32px !important;
        max-width: 380px;
    }
    
    .dashboard-section .dashboard-heading-wrapper .about-main-title {
        font-size: 38px !important;
        margin-bottom: 18px !important;
    }
    
    .dashboard-section .dashboard-heading-wrapper > p {
        font-size: 17px !important;
        line-height: 1.5 !important;
    }
    
    .dashboard-section .dashboard-heading-wrapper .flex.flex-col {
        gap: 24px !important;
        margin-top: 36px !important;
    }
    
    .dashboard-section .dashboard-heading-wrapper .flex.items-center.gap-5 {
        gap: 14px !important;
    }
    
    .dashboard-section .dashboard-heading-wrapper .flex.items-center.gap-5 .p-4 {
        padding: 12px !important;
    }
    
    .dashboard-section .dashboard-heading-wrapper .flex.items-center.gap-5 svg {
        width: 26px !important;
        height: 26px !important;
    }
    
    .dashboard-section .dashboard-heading-wrapper .flex.items-center.gap-5 span:first-child {
        font-size: 19px !important;
    }
    
    .dashboard-section .dashboard-heading-wrapper .flex.items-center.gap-5 span.text-gray-500 {
        font-size: 15px !important;
        line-height: 1.5 !important;
    }
    
    /* Process Section (About) */
    .process-content {
        min-width: 100%;
        width: 100%;
        padding: 0;
    }
    
    .process-container {
        width: 100%;
        max-width: 100%;
    }
    
    .process-title {
        font-size: 32px;
    }
    
    .process-description {
        font-size: 19px;
        max-width: 100%;
        width: 100%;
        padding: 0 20px;
    }
}

/* ===== MOBILE (480px) ===== */
@media (max-width: 480px) {
    /* Header */
    .header {
        padding: 16px 20px;
    }
    
    .header-content {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .logo {
        font-size: 18px;
        text-align: center;
    }
    
    .navigation {
        width: 100%;
        justify-content: center;
        gap: 14px;
        font-size: 12px;
    }
    
    /* Hero Section */
    .hero {
        padding: 70px 20px 50px;
    }
    
    .hero-heading {
        font-size: 28px;
        line-height: 1.4;
    }
    
    .hero-text-part {
        display: inline-block;
        white-space: nowrap;
        font-size: 28px;
    }
    
    .letter.effortless {
        font-size: 28px;
    }
    
    .effortless-wrapper {
        display: inline-block;
        white-space: nowrap;
    }
    
    .hero-subtext {
        font-size: 14px;
        line-height: 1.6;
        max-width: 100%;
    }
    
    .primary-button {
        width: auto;
        font-size: 15px;
        padding: 12px 28px;
    }
    
    .scroll-hint {
        font-size: 12px;
    }
    
    /* About Section (Our Approach) */
    .about-section {
        padding: 60px 0;
    }
    
    .about-video-container {
        display: none;
    }
    
    .about-logo {
        display: none;
    }
    
    .about-main-title {
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .about-cards-container {
        padding: 0 20px;
        gap: 16px;
    }
    
    .about-content-wrapper {
        padding: 0 20px;
    }
    
    .about-card {
        padding: 20px 16px;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 16px;
    }
    
    .card-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .card-text {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .tag {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    /* Process Section (About) */
    .process-section {
        padding: 60px 0;
        position: relative;
    }
    
    .process-content {
        min-width: 100%;
        width: 100%;
        padding: 0;
    }
    
    .process-image-container {
        display: none;
    }
    
    .process-bg-image {
        display: none;
    }
    
    /* Mobile Background Video */
    .process-mobile-video {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.4;
        filter: blur(0.3px);
        z-index: 1;
    }
    
    .process-container {
        padding: 0 20px;
        width: 80%;
        max-width: 80%;
        margin: 0 auto;
        position: relative;
        z-index: 10;
    }
    
    .process-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 32px;
    }
    
    .process-description {
        font-size: 18px;
        line-height: 1.6;
        max-width: 100%;
        width: 100%;
        padding: 0;
        margin-top: 24px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-container {
        width: 95%;
        padding: 20px;
    }
    
    .collab-card {
        padding: 2rem 1.5rem;
    }
    
    .collab-tag {
        font-size: 11px;
        padding: 6px 14px;
    }
    
    .collab-heading {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .collab-text {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .button-group {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }
    
    .btn-send-email,
    .btn-schedule-call {
        width: 100%;
        justify-content: center;
        font-size: 15px;
        padding: 0.7rem 1.5rem;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    /* Footer */
    .footer {
        padding: 2.5rem 1rem 1.5rem;
    }
    
    .footer-content {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .footer-logo {
        font-size: 20px;
    }
    
    .footer-heading {
        font-size: 16px;
    }
    
    .footer-link,
    .footer-email {
        font-size: 14px;
    }
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    background: #000000;
    padding: 4rem 2rem 2rem;
    overflow: hidden;
}

.footer-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    font-family: 'BrunoAce', 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.footer-tagline {
    font-family: 'Orbitron', 'Inter', sans-serif;
    font-size: 14px;
    color: #C8C8C8;
    line-height: 1.6;
}

.footer-description {
    font-family: 'Blinker', 'Inter', sans-serif;
    font-size: 13px;
    color: #9CA3AF;
    line-height: 1.7;
    margin-top: 12px;
    max-width: 280px;
}

.footer-heading {
    font-family: 'Orbitron', 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #C8C8C8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: none;
    display: inline-block;
}

.footer-link:hover {
    color: #6AF0C1;
    transform: translateX(5px);
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #C8C8C8;
    transition: all 0.3s ease;
    cursor: none;
}

.footer-social-icon:hover {
    background: rgba(106, 240, 193, 0.2);
    color: #6AF0C1;
    transform: translateY(-3px);
}

.footer-email {
    font-size: 14px;
    color: #C8C8C8;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-copyright {
    font-size: 13px;
    color: #9CA3AF;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal-link {
    font-family: 'Blinker', 'Inter', sans-serif;
    font-size: 12px;
    color: #6B7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: #6AF0C1;
}

.footer-legal-separator {
    color: #4B5563;
    font-size: 12px;
}

/* ===== AURORA TEXT STYLING ===== */
.aurora-text {
    font-family: 'BrunoAce', 'Inter', sans-serif;
}

/* ===== ABOUT SECTION ANIMATIONS ===== */
@keyframes growBar {
    0% {
        width: 0%;
    }
    100% {
        width: var(--width, 100%);
    }
}

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

.about-section.dashboard-container {
    opacity: 1 !important;
    transform: none !important;
}

/* Dashboard Section */
.dashboard-section {
    position: relative;
    overflow: visible;
    background: transparent !important;
}

/* Dashboard Metric Animations */
@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes starFill {
    from {
        opacity: 0;
        transform: scaleX(0);
    }
    to {
        opacity: 1;
        transform: scaleX(1);
    }
}

@keyframes progressGrow {
    from {
        width: 0%;
    }
}

.metric-widget {
    transform-origin: center;
}

.metric-widget .counter {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

.metric-widget .progress-bar {
    transition: width 2s ease-out;
}

.metric-widget .star-fill {
    transform-origin: left;
}

.dashboard-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.35) 20%,
        rgba(0, 0, 0, 0.2) 40%,
        rgba(0, 0, 0, 0.1) 60%,
        rgba(0, 0, 0, 0.03) 80%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 5;
}

.dashboard-container {
    position: relative;
    z-index: 1;
    height: auto;
    overflow: hidden;
}

/* Dashboard Gradient Shadows */
.dashboard-gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 25%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 20%, rgba(0, 0, 0, 0.15) 40%, rgba(0, 0, 0, 0.05) 60%, transparent 80%);
    pointer-events: none;
    z-index: 6;
}

.dashboard-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.25) 100%);
    pointer-events: none;
    z-index: 4;
}

.about-section .counter {
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.1em;
}

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

/* ===== HOVER STATES FOR CURSOR ===== */
a, button {
    cursor: none !important;
}

/* ===== DASHBOARD STYLES ===== */
.dashboard-container {
    font-family: 'Inter', 'Monaco', 'Courier New', monospace;
}

.dashboard-widget {
    position: relative;
    overflow: hidden;
}

.dashboard-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 115, 0.1), transparent);
    transition: left 0.5s ease;
}

.dashboard-widget:hover::before {
    left: 100%;
}

.sidebar-icon {
    position: relative;
}

.sidebar-icon::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: #00FF73;
    border-radius: 0 3px 3px 0;
    transition: height 0.3s ease;
}

.sidebar-icon:hover::after {
    height: 60%;
}


@keyframes growBar {
    from {
        width: 0%;
    }
    to {
        width: var(--bar-width, 65%);
    }
}

.event-log::-webkit-scrollbar {
    width: 6px;
}

.event-log::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.event-log::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 115, 0.3);
    border-radius: 3px;
}

.event-log::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 115, 0.5);
}


.live-feed-btn {
    box-shadow: 0 0 15px rgba(0, 255, 115, 0.3);
}

.live-feed-btn:hover {
    box-shadow: 0 0 20px rgba(0, 255, 115, 0.5);
}

/* Dashboard responsive */
@media (max-width: 1024px) {
    .dashboard-main {
        grid-template-columns: 1fr;
    }
    
    .grid-cols-3 {
        grid-template-columns: 1fr;
    }
    
    .grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    /* Hide dashboard container on tablets */
    .dashboard-section .dashboard-container {
        display: none !important;
    }
    
    /* Center the About section */
    .dashboard-section .dashboard-heading-wrapper {
        width: 100% !important;
        max-width: 550px;
        margin: 0 auto;
    }
    
    .dashboard-section .dashboard-heading-wrapper .about-main-title {
        text-align: center !important;
    }
    
    .dashboard-section .dashboard-heading-wrapper > p {
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .dashboard-sidebar {
        width: 60px;
    }
    
    .dashboard-topbar {
        padding: 12px;
        font-size: 12px;
    }
    
    .dashboard-widget {
        padding: 16px;
    }
    
    .text-4xl {
        font-size: 2rem;
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fade-in 0.3s ease-out;
}

