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

            :root {
                /* Netflix Color Palette */
                --netflix-red: #e50914;
                --netflix-dark-red: #b20710;
                --netflix-black: #141414;
                --netflix-dark-gray: #181818;
                --netflix-gray: #2F2F2F;
                --netflix-light-gray: #808080;
                --netflix-white: #FFFFFF;

                /* Gradients */
                --gradient-red: linear-gradient(135deg, #e50914 0%, #ff3a2d 100%);
                --gradient-dark: linear-gradient(135deg, #141414 0%, #2F2F2F 100%);
                --gradient-gold: linear-gradient(135deg, #ffb347 0%, #ffcc33 100%);

                /* Shadows */
                --shadow-netflix: 0 10px 30px rgba(229, 9, 20, 0.3);
                --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.5);
                --shadow-light: 0 5px 15px rgba(255, 255, 255, 0.1);

                /* Transitions */
                --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                --transition-medium: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);

                /* Border Radius */
                --radius-sm: 4px;
                --radius-md: 8px;
                --radius-lg: 16px;
                --radius-xl: 24px;

                /* Spacing */
                --space-xs: 4px;
                --space-sm: 8px;
                --space-md: 16px;
                --space-lg: 32px;
                --space-xl: 64px;
            }

            html {
                scroll-behavior: smooth;
                scroll-padding-top: 100px;
            }

            body {
                font-family: 'Netflix Sans', 'Roboto', sans-serif;
                background-color: var(--netflix-black);
                color: var(--netflix-white);
                line-height: 1.6;
                overflow-x: hidden;
                min-height: 100vh;
                background-image:
                    radial-gradient(circle at 20% 80%, rgba(229, 9, 20, 0.1) 0%, transparent 20%),
                    radial-gradient(circle at 80% 20%, rgba(229, 9, 20, 0.05) 0%, transparent 20%);
            }

            .container {
                max-width: 1400px;
                margin: 0 auto;
                padding: 0 var(--space-lg);
            }

            .section {
                padding: var(--space-xl) 0;
                position: relative;
            }

            .section-title {
                font-size: 3.5rem;
                font-weight: 900;
                margin-bottom: var(--space-md);
                position: relative;
                display: inline-block;
            }

            .section-title::after {
                content: '';
                position: absolute;
                bottom: -10px;
                left: 0;
                width: 80px;
                height: 4px;
                background: var(--gradient-red);
                border-radius: 2px;
            }

            .section-subtitle {
                font-size: 1.2rem;
                color: var(--netflix-light-gray);
                max-width: 800px;
                margin-bottom: var(--space-xl);
            }

            .text-gradient {
                background: var(--gradient-red);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }

            .text-glow {
                text-shadow: 0 0 20px rgba(229, 9, 20, 0.7);
            }

            /* ========== MATRIX BACKGROUND ========== */
            .matrix-bg {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                z-index: -100;
                opacity: 0.03;
                pointer-events: none;
            }

            /* ========== 3D ORBITAL NAVIGATION STYLES ========== */
            header {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                z-index: 10000;
                transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
                padding: 20px 0;
                background: rgba(20, 20, 20, 0);
                backdrop-filter: blur(0px);
                -webkit-backdrop-filter: blur(0px);
                box-shadow: 0 0 0 rgba(0, 0, 0, 0);
                border-bottom: 1px solid rgba(229, 9, 20, 0);
            }

            header.scrolled {
                background: rgba(20, 20, 20, 0.98);
                backdrop-filter: blur(30px);
                -webkit-backdrop-filter: blur(30px);
                box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
                padding: 8px 0;
                border-bottom: 1px solid rgba(229, 9, 20, 0.2);
            }

            .nav-super-container {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 0 20px;
                position: relative;
            }

            .logo-mega {
                display: flex;
                align-items: center;
                z-index: 10001;
                gap: 12px;
            }

            .logo-image-container {
                position: relative;
            }

            .logo-image-wrapper {
                position: relative;
                width: 70px;
                height: 50px;
                background: linear-gradient(135deg, #141414, #2F2F2F);
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
                transition: all 0.3s ease;
                cursor: pointer;
                overflow: hidden;
                border: 2px solid rgba(229, 9, 20, 0.4);
            }

            .logo-image-wrapper:hover {
                transform: translateY(-2px) scale(1.05);
                box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
                border-color: var(--netflix-red);
            }

            .logo-img {
                width: 60px;
                height: 40px;
                object-fit: contain;
                border-radius: 8px;
                transition: all 0.3s ease;
            }

            .logo-image-wrapper:hover .logo-img {
                transform: scale(1.1);
            }

            .fallback-icon {
                display: none;
                font-size: 1.5rem;
                color: #808080;
                transition: all 0.3s ease;
            }

            .logo-image-wrapper:hover .fallback-icon {
                color: var(--netflix-red);
                transform: scale(1.1);
            }

            .logo-hover-effect {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(47, 47, 47, 0.9));
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                opacity: 0;
                transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
                border-radius: 12px;
                color: white;
                text-align: center;
                transform: scale(0.9);
            }

            .logo-hover-effect i {
                font-size: 1rem;
                margin-bottom: 4px;
                color: var(--netflix-red);
                transition: all 0.3s ease;
            }

            .logo-hover-effect span {
                font-size: 0.65rem;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.8px;
            }

            .logo-image-wrapper:hover .logo-hover-effect {
                opacity: 1;
                transform: scale(1);
            }

            .logo-text-mega {
                display: flex;
                flex-direction: column;
            }

            .logo-main {
                color: white;
                font-family: 'Montserrat', sans-serif;
                font-weight: 900;
                font-size: 1.4rem;
                line-height: 1;
                letter-spacing: 0.8px;
            }

            .logo-sub {
                color: #808080;
                font-size: 0.65rem;
                letter-spacing: 1.5px;
                margin-top: 2px;
                font-weight: 600;
                text-transform: uppercase;
            }

            .nav-orbital {
                position: relative;
                z-index: 10000;
            }

            .nav-trigger {
                width: 48px;
                height: 48px;
                background: linear-gradient(135deg, #141414, #2F2F2F);
                border-radius: 12px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
                transition: all 0.3s ease;
                position: relative;
                z-index: 10002;
                border: 2px solid rgba(229, 9, 20, 0.4);
            }

            .nav-trigger span {
                display: block;
                width: 22px;
                height: 2.5px;
                background: white;
                margin: 2.5px 0;
                transition: all 0.3s ease;
                border-radius: 2px;
            }

            .nav-trigger.active {
                transform: rotate(180deg);
                background: linear-gradient(135deg, var(--netflix-red), #ff3a2d);
                border-color: var(--netflix-red);
            }

            .nav-trigger.active span {
                background: #141414;
            }

            .nav-trigger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .nav-trigger.active span:nth-child(2) {
                opacity: 0;
            }

            .nav-trigger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(5px, -5px);
            }

            .nav-trigger:hover {
                transform: translateY(-2px);
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
            }

            .orbital-menu {
                position: fixed;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 10001;
                pointer-events: none;
            }

            .orbital-menu.active {
                opacity: 1;
                visibility: visible;
                pointer-events: all;
            }

            .orbital-backdrop {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(20, 20, 20, 0.95);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
            }

            .orbital-items {
                position: relative;
                width: 320px;
                height: 320px;
            }

            .orbital-item {
                position: absolute;
                top: 50%;
                left: 50%;
                width: 65px;
                height: 65px;
                background: linear-gradient(135deg, #141414, #2F2F2F);
                border-radius: 50%;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                color: white;
                text-decoration: none;
                transition: all 0.3s ease;
                box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
                opacity: 0;
                text-align: center;
                border: 2px solid rgba(229, 9, 20, 0.4);
                transform: translate(-50%, -50%) scale(0.8);
                z-index: 10;
            }

            .orbital-menu.active .orbital-item {
                opacity: 1;
            }

            .orbital-item i {
                font-size: 1.2rem;
                margin-bottom: 4px;
                transition: all 0.3s ease;
            }

            .orbital-item span {
                font-size: 0.6rem;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.6px;
            }

            .orbital-item:hover {
                transform: translate(-50%, -50%) scale(1.15);
                background: linear-gradient(135deg, var(--netflix-red), #ff3a2d);
                box-shadow: 0 0 25px rgba(229, 9, 20, 0.8);
                color: #141414;
                border-color: var(--netflix-red);
                z-index: 20;
            }

            .orbital-item:hover i {
                transform: scale(1.1);
                color: #141414;
            }

            .orbital-center {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 100px;
                height: 100px;
                background: linear-gradient(135deg, var(--netflix-red), #ff3a2d);
                border-radius: 50%;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                color: #141414;
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
                z-index: 15;
                border: 2px solid rgba(255, 255, 255, 0.3);
                transition: all 0.3s ease;
            }

            .orbital-center i {
                font-size: 1.8rem;
                margin-bottom: 6px;
                transition: all 0.3s ease;
            }

            .orbital-center span {
                font-size: 0.7rem;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 1px;
            }

            .orbital-center:hover {
                transform: translate(-50%, -50%) scale(1.05);
                box-shadow: 0 0 30px rgba(229, 9, 20, 0.6);
            }

            .orbital-center:hover i {
                transform: rotate(15deg);
            }

            /* ========== PROFESSIONAL NETFLIX LOGO MODAL ========== */
            .logo-modal {
                position: fixed;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
                opacity: 0;
                visibility: hidden;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 10004;
                pointer-events: none;
            }

            .logo-modal.active {
                opacity: 1;
                visibility: visible;
                pointer-events: all;
            }

            .logo-modal-backdrop {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.92);
                backdrop-filter: blur(15px);
                -webkit-backdrop-filter: blur(15px);
                cursor: pointer;
            }

            .logo-modal-content {
                position: relative;
                background: #141414;
                border-radius: 12px;
                padding: 0;
                width: 600px;
                max-width: 90vw;
                max-height: 90vh;
                box-shadow:
                    0 25px 50px rgba(0, 0, 0, 0.5),
                    0 0 100px rgba(229, 9, 20, 0.15);
                transform: scale(0.95) translateY(20px);
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                overflow: hidden;
                border: 1px solid rgba(229, 9, 20, 0.2);
            }

            .logo-modal.active .logo-modal-content {
                transform: scale(1) translateY(0);
            }

            /* Netflix red border accent */
            .logo-modal-content::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 4px;
                background: linear-gradient(90deg,
                    #e50914 0%,
                    #ff3a2d 50%,
                    #e50914 100%);
                z-index: 2;
                box-shadow: 0 2px 10px rgba(229, 9, 20, 0.3);
            }

            .logo-modal-close {
                position: absolute;
                top: 20px;
                right: 20px;
                width: 40px;
                height: 40px;
                background: rgba(229, 9, 20, 0.15);
                border: 1px solid rgba(229, 9, 20, 0.4);
                border-radius: 50%;
                color: #e50914;
                font-size: 1.1rem;
                cursor: pointer;
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                display: flex;
                align-items: center;
                justify-content: center;
                z-index: 10;
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
            }

            .logo-modal-close:hover {
                background: #e50914;
                border-color: #e50914;
                color: white;
                transform: rotate(90deg);
                box-shadow: 0 0 20px rgba(229, 9, 20, 0.4);
            }

            .logo-modal-image {
                width: 100%;
                height: 400px;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 60px;
                background: rgba(10, 10, 10, 0.8);
                position: relative;
                overflow: hidden;
            }

            /* Netflix pattern in background */
            .logo-modal-image::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-image:
                    linear-gradient(rgba(229, 9, 20, 0.08) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(229, 9, 20, 0.08) 1px, transparent 1px);
                background-size: 30px 30px;
                opacity: 0.3;
            }

            .logo-modal-img {
                width: 100%;
                height: 100%;
                object-fit: contain;
                filter: drop-shadow(0 10px 30px rgba(229, 9, 20, 0.1));
                position: relative;
                z-index: 1;
                transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .logo-modal-image:hover .logo-modal-img {
                transform: scale(1.02);
            }

            .logo-modal-info {
                padding: 40px;
                text-align: center;
                background: #0f0f0f;
                border-top: 1px solid rgba(229, 9, 20, 0.1);
            }

            /* Netflix red titles */
            .logo-modal-info h3 {
                color: #e50914;
                font-size: 2.5rem;
                margin-bottom: 12px;
                font-weight: 900;
                letter-spacing: 2px;
                text-transform: uppercase;
                text-shadow: 0 2px 10px rgba(229, 9, 20, 0.3);
                position: relative;
                display: inline-block;
            }

            .logo-modal-info h3::after {
                content: '';
                position: absolute;
                bottom: -8px;
                left: 50%;
                transform: translateX(-50%);
                width: 80px;
                height: 3px;
                background: linear-gradient(90deg,
                    transparent,
                    #e50914,
                    transparent);
                border-radius: 2px;
            }

            /* Subtle red accents for text */
            .logo-modal-info p {
                color: rgba(255, 255, 255, 0.85);
                font-size: 1.1rem;
                margin-bottom: 10px;
                font-weight: 400;
                letter-spacing: 0.5px;
                transition: color 0.3s ease;
            }

            .logo-modal-info p:hover {
                color: #e50914;
            }

            .logo-modal-info p:last-child {
                margin-bottom: 0;
                color: rgba(255, 255, 255, 0.6);
                font-size: 0.95rem;
                font-style: italic;
            }

            /* Netflix badge */
            .logo-modal-badge {
                display: inline-block;
                background: rgba(229, 9, 20, 0.1);
                color: #e50914;
                padding: 8px 20px;
                border-radius: 20px;
                font-size: 0.9rem;
                font-weight: 600;
                letter-spacing: 1px;
                margin-top: 15px;
                border: 1px solid rgba(229, 9, 20, 0.3);
                transition: all 0.3s ease;
            }

            .logo-modal-badge:hover {
                background: rgba(229, 9, 20, 0.2);
                border-color: rgba(229, 9, 20, 0.6);
                transform: translateY(-2px);
            }

            /* Emoji version for placeholder - Netflix style */
            .logo-modal-emoji {
                font-size: 12rem;
                line-height: 1;
                filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
                animation: netflixFloat 6s ease-in-out infinite;
                color: #e50914;
            }

            @keyframes netflixFloat {
                0%, 100% {
                    transform: translateY(0) scale(1);
                    text-shadow: 0 5px 15px rgba(229, 9, 20, 0.2);
                }
                50% {
                    transform: translateY(-15px) scale(1.05);
                    text-shadow: 0 10px 25px rgba(229, 9, 20, 0.4);
                }
            }

            /* Netflix loading animation */
            .logo-modal-loading {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 3px;
                background: linear-gradient(90deg,
                    transparent,
                    #e50914,
                    #ff3a2d,
                    #e50914,
                    transparent);
                transform: translateX(-100%);
                animation: netflixLoading 2s ease-in-out infinite;
            }

            @keyframes netflixLoading {
                0% {
                    transform: translateX(-100%);
                }
                100% {
                    transform: translateX(100%);
                }
            }

            /* Responsive */
            @media (max-width: 768px) {
                .logo-modal-content {
                    width: 90vw;
                }

                .logo-modal-image {
                    height: 300px;
                    padding: 40px;
                }

                .logo-modal-emoji {
                    font-size: 8rem;
                }

                .logo-modal-info {
                    padding: 30px 20px;
                }

                .logo-modal-info h3 {
                    font-size: 2rem;
                }

                .logo-modal-badge {
                    padding: 6px 15px;
                    font-size: 0.85rem;
                }
            }

            @media (max-width: 480px) {
                .logo-modal-image {
                    height: 250px;
                    padding: 30px;
                }

                .logo-modal-emoji {
                    font-size: 6rem;
                }

                .logo-modal-info h3 {
                    font-size: 1.7rem;
                    letter-spacing: 1px;
                }

                .logo-modal-info p {
                    font-size: 1rem;
                }

                .logo-modal-info h3::after {
                    width: 60px;
                }
            }

            /* Dark mode enhancement */
            @media (prefers-color-scheme: dark) {
                .logo-modal-content {
                    background: #0a0a0a;
                }

                .logo-modal-info {
                    background: #080808;
                }
            }

            /* Print styles - keep Netflix red */
            @media print {
                .logo-modal-backdrop {
                    background: white;
                }

                .logo-modal-content {
                    box-shadow: none;
                    border: 3px solid #e50914;
                    background: white;
                }

                .logo-modal-close {
                    display: none;
                }

                .logo-modal-info h3 {
                    color: #e50914;
                    -webkit-text-fill-color: #e50914;
                }

                .logo-modal-info p {
                    color: #333;
                }
            }
            /* Samsung S8+ Perfect Fit (360px) */
            @media (max-width: 360px) {
                .nav-super-container {
                    padding: 0 10px;
                }

                .nav-trigger {
                    width: 35px;
                    height: 35px;
                }

                .nav-trigger span {
                    width: 16px;
                    height: 2px;
                    margin: 2px 0;
                }

                .logo-mega {
                    gap: 6px;
                }

                .logo-image-wrapper {
                    width: 40px;
                    height: 30px;
                }

                .logo-img {
                    width: 30px;
                    height: 20px;
                }

                .logo-main {
                    font-size: 0.8rem;
                }

                .logo-sub {
                    font-size: 0.4rem;
                }

                .orbital-items {
                    width: 280px;
                    height: 280px;
                }

                .orbital-item {
                    width: 45px;
                    height: 45px;
                }

                .orbital-item i {
                    font-size: 0.8rem;
                }

                .orbital-item span {
                    font-size: 0.4rem;
                }

                .orbital-center {
                    width: 60px;
                    height: 60px;
                }

                .orbital-center i {
                    font-size: 1.2rem;
                }

                .orbital-center span {
                    font-size: 0.5rem;
                }

                .logo-modal-content {
                    padding: 15px;
                    width: 280px;
                }

                .logo-modal-img {
                    max-width: 150px;
                }

                .logo-modal-info h3 {
                    font-size: 1.1rem;
                }

                .logo-modal-info p {
                    font-size: 0.7rem;
                }
            }

            /* Small Phones (361px - 399px) */
            @media (min-width: 361px) and (max-width: 399px) {
                .nav-super-container {
                    padding: 0 15px;
                }

                .logo-image-wrapper {
                    width: 56px;
                    height: 44px;
                }

                .logo-img {
                    width: 46px;
                    height: 34px;
                }

                .logo-main {
                    font-size: 1.1rem;
                }

                .logo-sub {
                    font-size: 0.56rem;
                }

                .nav-trigger {
                    width: 42px;
                    height: 42px;
                }

                .orbital-items {
                    width: 280px;
                    height: 280px;
                }

                .orbital-item {
                    width: 52px;
                    height: 52px;
                }

                .orbital-item i {
                    font-size: 1rem;
                }

                .orbital-item span {
                    font-size: 0.52rem;
                }

                .orbital-center {
                    width: 80px;
                    height: 80px;
                }

                .orbital-center i {
                    font-size: 1.4rem;
                }

                .orbital-center span {
                    font-size: 0.62rem;
                }

                .logo-modal-content {
                    padding: 25px;
                    width: 320px;
                }

                .logo-modal-info h3 {
                    font-size: 1.5rem;
                }
            }

            /* Medium Phones (400px - 480px) */
            @media (min-width: 400px) and (max-width: 480px) {
                .nav-super-container {
                    padding: 0 18px;
                }

                .logo-image-wrapper {
                    width: 60px;
                    height: 45px;
                }

                .logo-img {
                    width: 50px;
                    height: 35px;
                }

                .logo-main {
                    font-size: 1.2rem;
                }

                .logo-sub {
                    font-size: 0.6rem;
                }

                .nav-trigger {
                    width: 44px;
                    height: 44px;
                }

                .orbital-items {
                    width: 300px;
                    height: 300px;
                }

                .orbital-item {
                    width: 55px;
                    height: 55px;
                }

                .orbital-item i {
                    font-size: 1.1rem;
                }

                .orbital-item span {
                    font-size: 0.55rem;
                }

                .orbital-center {
                    width: 85px;
                    height: 85px;
                }

                .orbital-center i {
                    font-size: 1.5rem;
                }

                .orbital-center span {
                    font-size: 0.65rem;
                }

                .logo-modal-content {
                    padding: 30px;
                    width: 340px;
                }

                .logo-modal-info h3 {
                    font-size: 1.7rem;
                }

                .logo-modal-info p {
                    font-size: 1rem;
                }
            }

            /* Small Tablets (481px - 767px) */
            @media (min-width: 481px) and (max-width: 767px) {
                .nav-super-container {
                    padding: 0 20px;
                }

                .logo-image-wrapper {
                    width: 75px;
                    height: 55px;
                }

                .logo-img {
                    width: 65px;
                    height: 45px;
                }

                .logo-main {
                    font-size: 1.5rem;
                }

                .logo-sub {
                    font-size: 0.7rem;
                }

                .nav-trigger {
                    width: 50px;
                    height: 50px;
                }

                .orbital-items {
                    width: 350px;
                    height: 350px;
                }

                .orbital-item {
                    width: 70px;
                    height: 70px;
                }

                .orbital-item i {
                    font-size: 1.3rem;
                }

                .orbital-item span {
                    font-size: 0.65rem;
                }

                .orbital-center {
                    width: 110px;
                    height: 110px;
                }

                .orbital-center i {
                    font-size: 2rem;
                }

                .orbital-center span {
                    font-size: 0.8rem;
                }

                .logo-modal-content {
                    width: 420px;
                    padding: 35px;
                }

                .logo-modal-info h3 {
                    font-size: 2rem;
                }
            }

            /* Tablets (768px - 1023px) */
            @media (min-width: 768px) and (max-width: 1023px) {
                .nav-super-container {
                    padding: 0 25px;
                }

                .logo-image-wrapper {
                    width: 85px;
                    height: 65px;
                }

                .logo-img {
                    width: 75px;
                    height: 55px;
                }

                .logo-main {
                    font-size: 1.7rem;
                }

                .logo-sub {
                    font-size: 0.8rem;
                }

                .nav-trigger {
                    width: 55px;
                    height: 55px;
                }

                .orbital-items {
                    width: 450px;
                    height: 450px;
                }

                .orbital-item {
                    width: 85px;
                    height: 85px;
                }

                .orbital-item i {
                    font-size: 1.5rem;
                }

                .orbital-item span {
                    font-size: 0.7rem;
                }

                .orbital-center {
                    width: 130px;
                    height: 130px;
                }

                .orbital-center i {
                    font-size: 2.3rem;
                }

                .orbital-center span {
                    font-size: 0.85rem;
                }

                .logo-modal-content {
                    width: 500px;
                    padding: 45px;
                }

                .logo-modal-info h3 {
                    font-size: 2.3rem;
                }
            }

            /* Desktops (1024px - 1439px) */
            @media (min-width: 1024px) {
                .nav-super-container {
                    padding: 0 30px;
                }

                .logo-image-wrapper {
                    width: 90px;
                    height: 70px;
                }

                .logo-img {
                    width: 80px;
                    height: 60px;
                }

                .logo-main {
                    font-size: 1.8rem;
                }

                .logo-sub {
                    font-size: 0.85rem;
                }

                .nav-trigger {
                    width: 58px;
                    height: 58px;
                }

                .orbital-items {
                    width: 500px;
                    height: 500px;
                }

                .orbital-item {
                    width: 95px;
                    height: 95px;
                }

                .orbital-item i {
                    font-size: 1.6rem;
                }

                .orbital-item span {
                    font-size: 0.75rem;
                }

                .orbital-center {
                    width: 140px;
                    height: 140px;
                }

                .orbital-center i {
                    font-size: 2.5rem;
                }

                .orbital-center span {
                    font-size: 0.9rem;
                }

                .logo-modal-content {
                    width: 550px;
                    padding: 50px;
                }

                .logo-modal-info h3 {
                    font-size: 2.5rem;
                }
            }

            /* Large Desktops (1440px and above) */
            @media (min-width: 1440px) {
                .orbital-items {
                    width: 550px;
                    height: 550px;
                }

                .orbital-item {
                    width: 100px;
                    height: 100px;
                }

                .orbital-item i {
                    font-size: 1.7rem;
                }

                .logo-modal-content {
                    width: 600px;
                }
            }

            /* Touch devices */
            @media (hover: none) {
                .orbital-item:hover {
                    transform: translate(-50%, -50%) scale(1) !important;
                }

                .orbital-item:active {
                    transform: translate(-50%, -50%) scale(1.1) !important;
                }
            }

    /* ========== HERO SECTION ========== */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        padding-top: 100px;
        overflow: hidden;
        background: radial-gradient(ellipse at center,
            rgba(229, 9, 20, 0.2) 0%,
            rgba(20, 20, 20, 0) 70%);
    }

    /* Matrix Canvas Background */
    #matrixCanvas {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        pointer-events: none;
    }

    /* Lazy Bubble Trail */
    .bubble-trail {
        position: fixed;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(229, 9, 20, 0.15), rgba(229, 9, 20, 0.05));
        border: 2px solid rgba(229, 9, 20, 0.3);
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: width 0.3s ease-out, height 0.3s ease-out, opacity 0.3s;
        opacity: 0;
        backdrop-filter: blur(1px);
        box-shadow:
            0 0 15px rgba(229, 9, 20, 0.4),
            inset 0 0 10px rgba(255, 255, 255, 0.1);
    }

    .bubble-trail.active {
        opacity: 1;
        width: 40px;
        height: 40px;
    }

    .bubble-trail.hover {
        width: 50px;
        height: 50px;
        background: radial-gradient(circle, rgba(229, 9, 20, 0.25), rgba(229, 9, 20, 0.1));
        border-color: rgba(229, 9, 20, 0.5);
    }

    .hero-content {
        text-align: center;
        max-width: 1200px;
        padding: var(--space-xl);
        position: relative;
        z-index: 2;
    }

    .hero-title {
        font-size: 5rem;
        font-weight: 900;
        margin-bottom: var(--space-lg);
        background: linear-gradient(45deg,
            #e50914 0%,
            #ffffff 25%,
            #e50914 50%,
            #ffffff 75%,
            #e50914 100%);
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: shine 3s linear infinite;
        text-shadow: 0 10px 30px rgba(229, 9, 20, 0.3);
    }

    @keyframes shine {
        to {
            background-position: 200% center;
        }
    }

    /* Clean Typing Animation */
    .typing-container {
        margin: var(--space-xl) auto;
        max-width: 800px;
        min-height: 60px;
    }

    .typing-text {
        font-size: 2rem;
        color: #ffffff;
        font-weight: 400;
        letter-spacing: 1px;
        text-shadow: 0 2px 10px rgba(229, 9, 20, 0.3);
        position: relative;
        display: inline-block;
    }

    .typing-text::after {
        content: '|';
        position: absolute;
        right: -8px;
        color: #e50914;
        animation: blink 0.7s infinite;
    }

    @keyframes blink {
        0%, 50% { opacity: 1; }
        51%, 100% { opacity: 0; }
    }

    /* Hero Buttons - Professional Size */
    .hero-buttons {
        display: flex;
        gap: var(--space-lg);
        justify-content: center;
        margin-top: var(--space-xl);
        flex-wrap: wrap;
    }

    .btn {
        padding: 0.8rem 1.8rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        transition: var(--transition-medium);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: var(--space-sm);
        position: relative;
        overflow: hidden;
        border: none;
        cursor: pointer;
        letter-spacing: 0.5px;
        min-width: 160px;
    }

    .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
        transition: var(--transition-medium);
    }

    .btn:hover::before {
        left: 100%;
    }

    .btn-gradient {
        background: var(--gradient-red);
        color: var(--netflix-white);
        box-shadow: 0 4px 15px rgba(229, 9, 20, 0.3);
    }

    .btn-gradient:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(229, 9, 20, 0.4);
    }

    .btn-outline {
        background: transparent;
        color: var(--netflix-white);
        border: 1.5px solid var(--netflix-red);
    }

    .btn-outline:hover {
        background: var(--netflix-red);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(229, 9, 20, 0.4);
    }

    .btn-icon {
        font-size: 1rem;
    }

    /* Hero Scroll Indicator */
    .hero-scroll {
        position: absolute;
        bottom: var(--space-xl);
        left: 50%;
        transform: translateX(-50%);
        color: var(--netflix-red);
        font-size: 1.8rem;
        animation: bounce 2s infinite;
        text-decoration: none;
        z-index: 2;
        opacity: 0.8;
    }

    .hero-scroll:hover {
        opacity: 1;
    }

    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
        40% { transform: translateX(-50%) translateY(-10px); }
        60% { transform: translateX(-50%) translateY(-5px); }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .hero-title {
            font-size: 3.5rem;
        }

        .typing-text {
            font-size: 1.5rem;
        }

        .btn {
            padding: 0.7rem 1.5rem;
            min-width: 140px;
            font-size: 0.9rem;
        }

        .bubble-trail {
            display: none; /* Hide on mobile for better performance */
        }
    }

    @media (max-width: 480px) {
        .hero-title {
            font-size: 2.8rem;
        }

        .typing-text {
            font-size: 1.2rem;
        }

        .hero-buttons {
            flex-direction: column;
            align-items: center;
        }

        .btn {
            width: 100%;
            max-width: 220px;
        }
    }

        /* ========== ABOUT SECTION ========== */
        .about {
            background: #0a0a0a; /* Netflix pure black background */
            position: relative;
            overflow: hidden;
        }

        /* Optional: Add subtle red gradient overlay */
        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg,
                transparent,
                rgba(229, 9, 20, 0.3),
                transparent);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1.8fr;
            gap: var(--space-xl);
            align-items: start;
        }

        .about-image {
            position: relative;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-dark);
            transform-style: preserve-3d;
            height: 100%;
            width: 100%;
            align-self: stretch;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-red);
            opacity: 0;
            transition: var(--transition-medium);
            z-index: 1;
        }

        .about-image:hover::before {
            opacity: 0.3;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Fill the container while maintaining aspect ratio */
            display: block;
            transition: var(--transition-medium);
        }

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

        .about-text h3 {
            font-size: 2.5rem;
            margin-bottom: var(--space-lg);
            color: #ffffff; /* Netflix white */
            text-shadow: 0 2px 10px rgba(229, 9, 20, 0.2);
        }

        .about-text p {
            margin-bottom: var(--space-lg);
            font-size: 1.1rem;
            color: #b3b3b3; /* Netflix light gray */
            line-height: 1.8;
        }

        /* Skills Container */
        .skills-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Reduced from 340px */
            gap: var(--space-md); /* Reduced from space-lg */
            margin-top: var(--space-xl);
        }

        /* SLIM Skills Cards */
        .skills-category {
            background: #141414; /* Netflix card black */
            border-radius: 10px; /* Reduced from 12px */
            padding: var(--space-md); /* Reduced from space-lg */
            border: 1px solid rgba(229, 9, 20, 0.2);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .skills-category::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--gradient-red);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .skills-category:hover::before {
            transform: scaleX(1);
        }

        .skills-category:hover {
            border-color: rgba(229, 9, 20, 0.6);
            transform: translateY(-4px); /* Reduced from -5px */
            box-shadow: 0 8px 25px rgba(229, 9, 20, 0.2); /* Reduced shadow */
        }

        /* Category Header */
        .category-header {
            margin-bottom: var(--space-md); /* Reduced from space-lg */
            position: relative;
        }

        .category-header h4 {
            font-size: 1.3rem; /* Reduced from 1.4rem */
            margin-bottom: 0;
            color: #ffffff;
            display: flex;
            align-items: center;
            gap: var(--space-sm);
        }

        .category-header h4 i {
            color: #e50914;
        }

        /* Skills List - SLIMMER */
        .skills-list {
            display: flex;
            flex-direction: column;
            gap: 10px; /* Reduced from 12px */
        }

        .skill-item {
            display: flex;
            align-items: center;
            gap: 12px; /* Reduced from 15px */
            padding: 10px 12px; /* Reduced padding */
            background: rgba(40, 40, 40, 0.8);
            border-radius: 6px; /* Reduced from 8px */
            border: 1px solid transparent;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .skill-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px; /* Reduced from 4px */
            height: 100%;
            background: #e50914;
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.3s ease;
        }

        .skill-item:hover {
            background: rgba(229, 9, 20, 0.05);
            border-color: rgba(229, 9, 20, 0.3);
            transform: translateX(6px); /* Reduced from 8px */
            box-shadow: 0 4px 12px rgba(229, 9, 20, 0.1); /* Reduced shadow */
        }

        .skill-item:hover::before {
            transform: scaleY(1);
        }

        .skill-icon {
            width: 36px; /* Reduced from 42px */
            height: 36px; /* Reduced from 42px */
            min-width: 36px; /* Reduced from 42px */
            background: rgba(229, 9, 20, 0.1);
            border-radius: 8px; /* Reduced from 10px */
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem; /* Reduced from 1.2rem */
            color: #e50914;
            transition: all 0.3s ease;
            border: 1px solid rgba(229, 9, 20, 0.2);
        }

        .skill-item:hover .skill-icon {
            background: #e50914;
            color: white;
            transform: rotate(15deg) scale(1.08); /* Reduced scale */
            box-shadow: 0 0 12px rgba(229, 9, 20, 0.4); /* Reduced shadow */
        }

        .skill-info {
            flex: 1;
            min-width: 0;
        }

        .skill-info h5 {
            font-size: 1rem; /* Reduced from 1.1rem */
            margin-bottom: 4px;
            color: #ffffff;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .skill-info p {
            font-size: 0.8rem; /* Reduced from 0.85rem */
            color: #b3b3b3;
            margin-bottom: 6px; /* Reduced from 8px */
            line-height: 1.4;
            opacity: 0.9;
        }

        .skill-level {
            height: 3px; /* Reduced from 4px */
            background: rgba(40, 40, 40, 0.8);
            border-radius: 1.5px; /* Reduced from 2px */
            overflow: hidden;
            position: relative;
        }

        .skill-level-bar {
            height: 100%;
            background: linear-gradient(90deg, #e50914, #ff3333);
            border-radius: 1.5px; /* Reduced from 2px */
            width: 0;
            transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .skill-level-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg,
                transparent,
                rgba(255, 255, 255, 0.4),
                transparent);
            animation: levelShine 2s infinite;
        }

        @keyframes levelShine {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* Programming Card Hover Effect */
        .programming-card:hover {
            background: linear-gradient(145deg, #141414, #0a0505);
        }

        /* Engineering Card Hover Effect */
        .engineering-card:hover {
            background: linear-gradient(145deg, #141414, #05050a);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
                gap: var(--space-xl);
            }

            .about-image {
                max-width: 450px; /* Increased width */
                height: 600px; /* Taller on tablet */
                margin: 0 auto;
                width: 100%;
            }

            .skills-container {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .skills-container {
                grid-template-columns: 1fr;
                gap: var(--space-sm);
            }

            .skills-category {
                padding: var(--space-sm);
            }

            .about-text h3 {
                font-size: 2rem;
            }

            .about-text p {
                font-size: 1rem;
            }

            .about-image {
                height: 500px;
                max-width: 350px;
            }
        }

        @media (max-width: 480px) {
            .about-image {
                height: 400px;
                max-width: 280px;
            }

            .skill-item {
                padding: 8px 10px;
                gap: 10px;
            }

            .skill-icon {
                width: 32px;
                height: 32px;
                min-width: 32px;
                font-size: 1rem;
            }

            .skill-info h5 {
                font-size: 0.95rem;
            }

            .skill-info p {
                font-size: 0.75rem;
            }
        }

        /* ========== STATS SECTION ========== */
        .stats {
            background: #000000;
            position: relative;
            overflow: hidden;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg,
                transparent,
                rgba(229, 9, 20, 0.3),
                transparent);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--space-lg);
            margin-top: var(--space-xl);
        }

        .stat-card {
            background: #0a0a0a;
            border-radius: var(--radius-lg);
            padding: var(--space-xl);
            text-align: center;
            border: 1px solid #1a1a1a;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            min-height: 280px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 1;
        }

        /* Hover Effect: Red Glow Background */
        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(
                circle at center,
                rgba(229, 9, 20, 0.1) 0%,
                rgba(229, 9, 20, 0.05) 30%,
                transparent 70%
            );
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

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

        /* Hover Effect: Animated Border */
        .stat-card::after {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg,
                transparent,
                #e50914,
                transparent,
                #e50914,
                transparent);
            background-size: 300% 300%;
            border-radius: calc(var(--radius-lg) + 2px);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
            animation: borderFlow 3s linear infinite paused;
        }

        @keyframes borderFlow {
            0% {
                background-position: 0% 50%;
            }
            100% {
                background-position: 300% 50%;
            }
        }

        .stat-card:hover::after {
            opacity: 1;
            animation-play-state: running;
        }

        /* Hover Effect: 3D Lift with Shadow */
        .stat-card:hover {
            border-color: #e50914;
            transform: translateY(-12px) scale(1.02);
            box-shadow:
                0 20px 40px rgba(0, 0, 0, 0.8),
                0 0 60px rgba(229, 9, 20, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .stat-icon-wrapper {
            width: 80px;
            height: 80px;
            background: rgba(20, 20, 20, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: var(--space-lg);
            border: 2px solid #2a2a2a;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .stat-card:hover .stat-icon-wrapper {
            background: rgba(229, 9, 20, 0.1);
            border-color: #e50914;
            transform: scale(1.15);
            box-shadow:
                0 0 25px rgba(229, 9, 20, 0.4),
                inset 0 0 15px rgba(229, 9, 20, 0.1);
        }

        .stat-icon-wrapper::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                45deg,
                transparent,
                rgba(229, 9, 20, 0.2),
                transparent
            );
            transform: rotate(45deg);
            transition: all 0.6s ease;
            opacity: 0;
        }

        .stat-card:hover .stat-icon-wrapper::before {
            opacity: 1;
            transform: rotate(405deg);
        }

        .stat-icon {
            font-size: 2.5rem;
            color: #e50914;
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }

        .stat-card:hover .stat-icon {
            color: #fff;
            transform: scale(1.2);
            text-shadow: 0 0 15px rgba(229, 9, 20, 0.8);
        }

        .stat-number {
            font-size: 4rem;
            font-weight: 900;
            color: #fff;
            margin-bottom: var(--space-sm);
            line-height: 1;
            position: relative;
            transition: all 0.4s ease;
        }

        .stat-card:hover .stat-number {
            color: #e50914;
            text-shadow:
                0 0 20px rgba(229, 9, 20, 0.6),
                0 0 40px rgba(229, 9, 20, 0.3);
        }

        .stat-number::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 60px;
            height: 3px;
            background: #e50914;
            border-radius: 2px;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .stat-card:hover .stat-number::after {
            transform: translateX(-50%) scaleX(1);
        }

        .stat-text {
            font-size: 1.1rem;
            color: #808080;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-top: var(--space-sm);
            transition: all 0.4s ease;
        }

        .stat-card:hover .stat-text {
            color: #fff;
            letter-spacing: 2px;
        }

        /* Hover Effect: Red Pulse Wave */
        .stat-hover-effect {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .stat-card:hover .stat-hover-effect {
            opacity: 1;
        }

        .stat-hover-effect::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(229, 9, 20, 0.1);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: pulseWave 1.2s ease-out;
        }

        @keyframes pulseWave {
            0% {
                width: 0;
                height: 0;
                opacity: 0.8;
            }
            100% {
                width: 300px;
                height: 300px;
                opacity: 0;
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: var(--space-md);
            }

            .stat-card {
                min-height: 250px;
                padding: var(--space-lg);
            }

            .stat-number {
                font-size: 3.5rem;
            }

            .stat-icon-wrapper {
                width: 70px;
                height: 70px;
                margin-bottom: var(--space-md);
            }

            .stat-icon {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 576px) {
            .stats-grid {
                grid-template-columns: 1fr;
                gap: var(--space-md);
            }

            .stat-card {
                max-width: 320px;
                margin: 0 auto;
                min-height: 230px;
                padding: var(--space-md);
            }

            .stat-number {
                font-size: 3rem;
            }

            .stat-text {
                font-size: 1rem;
            }
        }



        /* ========== PROJECTS SECTION ========== */
        #projects {
            background: #000000;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        /* Section Header - Left Aligned */
        #projects .section-header {
            text-align: left;
            margin-bottom: 50px;
            max-width: 1400px;
            margin: 0 auto 50px;
            padding: 0 40px;
        }

        #projects .section-title {
            font-size: 4.0rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 15px;
            letter-spacing: -1px;
            text-align: left;
            position: relative;
            display: inline-block;
        }

        /* FIXED: Projects word should be Netflix red */
        #projects .text-gradient {
            background: linear-gradient(90deg, #e50914, #ff3333);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        #projects .section-subtitle {
            font-size: 1.2rem;
            color: #b3b3b3;
            text-align: left;
            max-width: 600px;
            line-height: 1.6;
            margin: 0;
        }

        /* Filter Container - Left Aligned */
        #projects .filter-container {
            max-width: 1400px;
            margin: 0 auto 40px;
            padding: 0 40px;
        }

        #projects .filter-wrapper {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        #projects .filter-btn {
            padding: 12px 24px;
            background: rgba(20, 20, 20, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: #b3b3b3;
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        #projects .filter-btn:hover {
            color: #ffffff;
            border-color: rgba(229, 9, 20, 0.3);
            transform: translateY(-2px);
        }

        #projects .filter-btn.active {
            background: rgba(229, 9, 20, 0.1);
            color: #e50914;
            border-color: rgba(229, 9, 20, 0.3);
            transform: translateY(-2px);
        }

        /* Projects Grid */
        #projects .projects-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Project Card - Fixed Height */
        #projects .project-card {
            background: #141414;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 500px;
            display: flex;
            flex-direction: column;
        }

        /* Project Image */
        #projects .project-image {
            height: 200px;
            flex-shrink: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            overflow: hidden;
            position: relative;
        }

        #projects .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        /* Project Badge */
        #projects .project-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #e50914;
            color: #ffffff;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            z-index: 2;
        }

        /* Project Content */
        #projects .project-content {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        #projects .project-title {
            font-size: 1.3rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        #projects .project-description {
            font-size: 0.9rem;
            color: #b3b3b3;
            line-height: 1.5;
            margin-bottom: 15px;
            flex: 1;
            overflow: hidden;
        }

        /* Project Tags */
        #projects .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        #projects .project-tag {
            background: rgba(229, 9, 20, 0.1);
            color: #e50914;
            padding: 5px 10px;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 500;
            border: 1px solid rgba(229, 9, 20, 0.2);
        }

        /* Project Links */
        #projects .project-links {
            display: flex;
            gap: 10px;
            padding-top: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        #projects .project-links a {
            flex: 1;
            padding: 10px 15px;
            background: rgba(20, 20, 20, 0.8);
            color: #b3b3b3;
            text-decoration: none;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        #projects .project-links a:hover {
            background: #e50914;
            color: #ffffff;
            transform: translateY(-2px);
        }

        /* Hover Effects */
        #projects .project-card:hover {
            border-color: #e50914;
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(229, 9, 20, 0.15);
        }

        #projects .project-card:hover .project-image img {
            transform: scale(1.05);
        }

        /* Loading Spinner */
        #projects .loading-spinner {
            display: none;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            margin: 50px 0;
        }

        #projects .loading-spinner.active {
            display: flex;
        }

        #projects .spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(229, 9, 20, 0.1);
            border-top-color: #e50914;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        #projects .loading-spinner p {
            color: #b3b3b3;
            font-size: 1rem;
        }

        /* Load More Container */
        #projects .load-more-container {
            max-width: 1400px;
            margin: 50px auto 0;
            padding: 0 40px;
            text-align: left;
        }

        #projects .load-more-btn {
            padding: 15px 40px;
            background: transparent;
            color: #e50914;
            border: 2px solid #e50914;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        #projects .load-more-btn:hover {
            background: #e50914;
            color: #ffffff;
            transform: translateY(-3px);
        }

        #projects .projects-count {
            color: #b3b3b3;
            font-size: 0.9rem;
            margin-top: 15px;
        }

        #projects .projects-count span {
            color: #e50914;
            font-weight: 600;
        }

        /* Responsive Design */
        @media (max-width: 1400px) {
            #projects .projects-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 1024px) {
            #projects .projects-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            #projects .section-title {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            #projects .projects-grid {
                grid-template-columns: 1fr;
                padding: 0 20px;
            }

            #projects .section-header,
            #projects .filter-container,
            #projects .load-more-container {
                padding: 0 20px;
            }

            #projects .section-title {
                font-size: 2.5rem;
            }

            #projects .project-card {
                height: auto;
                min-height: 480px;
            }
        }

        @media (max-width: 480px) {
            #projects .filter-wrapper {
                justify-content: center;
            }

            #projects .load-more-btn {
                width: 100%;
                justify-content: center;
            }

            #projects .section-title {
                font-size: 2rem;
            }

            #projects .project-card {
                height: auto;
                min-height: 450px;
            }
        }

        /* ========== SERVICES SECTION ========== */
        .services {
            background: #000000;
            padding: 100px 0;
            position: relative;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg,
                transparent,
                rgba(229, 9, 20, 0.4),
                transparent);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 35px;
            margin-top: 50px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 40px;
        }

        .service-card {
            background: #141414;
            border-radius: 18px;
            padding: 35px;
            border: 1px solid rgba(40, 40, 40, 1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            height: 420px; /* INCREASED FROM 320px */
            display: flex;
            flex-direction: column;
            box-shadow:
                0 8px 25px rgba(0, 0, 0, 0.4);
        }

        /* Strong red gradient border on hover */
        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 2px solid transparent;
            border-radius: 18px;
            background: linear-gradient(#141414, #141414) padding-box,
                        linear-gradient(45deg, #e50914, #ff3333, #e50914) border-box;
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
            z-index: 1;
        }

        .service-card:hover::after {
            opacity: 1;
        }

        /* Strong lift and shadow */
        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            border-color: transparent;
            box-shadow:
                0 25px 50px rgba(229, 9, 20, 0.25),
                0 15px 35px rgba(0, 0, 0, 0.5),
                inset 0 0 50px rgba(229, 9, 20, 0.05);
        }

        /* Icon gets prominent animation */
        .service-icon {
            font-size: 2.8rem;
            color: #e50914;
            margin-bottom: 25px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            width: 85px;
            height: 85px;
            background: rgba(229, 9, 20, 0.05);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(229, 9, 20, 0.1);
            position: relative;
            z-index: 2;
        }

        .service-card:hover .service-icon {
            transform: scale(1.15) rotate(10deg);
            background: rgba(229, 9, 20, 0.15);
            border-color: rgba(229, 9, 20, 0.4);
            box-shadow:
                0 15px 30px rgba(229, 9, 20, 0.2),
                0 0 20px rgba(229, 9, 20, 0.1);
            color: #ff3333;
        }

        /* Title gets noticeable effect */
        .service-title {
            font-size: 1.7rem;
            margin-bottom: 18px;
            color: #ffffff;
            font-weight: 700;
            line-height: 1.3;
            position: relative;
            z-index: 2;
            transition: color 0.3s ease;
            min-height: 45px;
            display: flex;
            align-items: center;
        }

        /* Strong underline animation */
        .service-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #e50914, #ff3333);
            border-radius: 2px;
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover .service-title::after {
            width: 70px;
        }

        /* Description gets subtle glow - REMOVED LINE CLAMP */
        .service-description {
            color: #b3b3b3;
            margin-bottom: 25px;
            line-height: 1.7;
            font-size: 1.05rem;
            flex: 1;
            overflow: visible; /* CHANGED FROM hidden */
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
            padding-right: 10px;
        }

        /* Show more lines in description */
        .service-description {
            display: -webkit-box;
            -webkit-line-clamp: 5; /* INCREASED FROM 3 */
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .service-card:hover .service-description {
            color: #ffffff;
            text-shadow: 0 0 10px rgba(229, 9, 20, 0.3);
            -webkit-line-clamp: 6; /* Show even more on hover */
        }

        /* Price gets prominent animation */
        .service-price {
            font-size: 1.5rem;
            font-weight: 800;
            color: #e50914;
            margin-top: auto;
            padding-top: 25px;
            border-top: 2px solid rgba(40, 40, 40, 1);
            display: flex;
            align-items: center;
            gap: 12px;
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
            min-height: 40px;
        }

        .service-card:hover .service-price {
            color: #ff3333;
            border-top-color: rgba(229, 9, 20, 0.4);
            padding-left: 18px;
        }

        /* Arrow animation */
        .service-price::before {
            content: '→';
            font-size: 1.4rem;
            opacity: 0;
            transform: translateX(-12px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover .service-price::before {
            opacity: 1;
            transform: translateX(5px);
            animation: arrowBounce 1s ease-in-out infinite;
        }

        @keyframes arrowBounce {
            0%, 100% { transform: translateX(5px); }
            50% { transform: translateX(12px); }
        }

        /* Badge - more prominent */
        .service-badge {
            position: absolute;
            top: 30px;
            right: 30px;
            background: linear-gradient(45deg, #e50914, #ff3333);
            color: #ffffff;
            padding: 10px 18px;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            opacity: 0;
            transform: translateY(-20px) scale(0.8);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 3;
            box-shadow: 0 8px 20px rgba(229, 9, 20, 0.3);
        }

        .service-card:hover .service-badge {
            opacity: 1;
            transform: translateY(0) scale(1);
            animation: badgePulse 2s ease-in-out infinite;
        }

        @keyframes badgePulse {
            0%, 100% { box-shadow: 0 8px 20px rgba(229, 9, 20, 0.3); }
            50% { box-shadow: 0 8px 25px rgba(229, 9, 20, 0.5); }
        }

        /* Subtly red glow background */
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(
                circle at 50% 0%,
                rgba(229, 9, 20, 0.1) 0%,
                transparent 70%
            );
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
            z-index: 1;
        }

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

        /* Number indicator */
        .service-number {
            position: absolute;
            bottom: 30px;
            right: 30px;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.05);
            font-weight: 900;
            transition: all 0.4s ease;
            z-index: 1;
        }

        .service-card:hover .service-number {
            color: rgba(229, 9, 20, 0.2);
            transform: scale(1.2);
        }

        /* Service Features List */
        .service-features {
            margin: 15px 0;
            padding-left: 20px;
        }

        .service-features li {
            color: #b3b3b3;
            margin-bottom: 8px;
            font-size: 0.95rem;
            line-height: 1.5;
            position: relative;
        }

        .service-features li::before {
            content: '▸';
            color: #e50914;
            position: absolute;
            left: -18px;
            font-size: 0.9rem;
        }

        .service-card:hover .service-features li {
            color: #ffffff;
        }

        /* Responsive design */
        @media (max-width: 1200px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .service-card {
                height: 400px;
            }
        }

        @media (max-width: 992px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }

            .service-card {
                height: 380px;
                padding: 30px;
            }

            .service-description {
                -webkit-line-clamp: 4;
            }

            .service-card:hover .service-description {
                -webkit-line-clamp: 5;
            }
        }

        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
                padding: 0 20px;
                gap: 25px;
            }

            .service-card {
                height: auto;
                min-height: 360px;
                padding: 25px;
            }

            .service-icon {
                width: 75px;
                height: 75px;
                font-size: 2.2rem;
            }

            .service-title {
                font-size: 1.5rem;
                min-height: 40px;
            }

            .service-description {
                font-size: 1rem;
                -webkit-line-clamp: 4;
            }

            .service-card:hover .service-description {
                -webkit-line-clamp: 5;
            }

            .service-price {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 480px) {
            .services {
                padding: 80px 0;
            }

            .service-card {
                padding: 20px;
                min-height: 340px;
            }

            .service-icon {
                width: 65px;
                height: 65px;
                font-size: 2rem;
            }

            .service-title {
                font-size: 1.4rem;
                min-height: 35px;
            }

            .service-description {
                font-size: 0.95rem;
                -webkit-line-clamp: 3;
            }

            .service-card:hover .service-description {
                -webkit-line-clamp: 4;
            }

            .service-price {
                font-size: 1.3rem;
            }
        }

        /* Extra small screens */
        @media (max-width: 360px) {
            .services-grid {
                padding: 0 15px;
            }

            .service-card {
                min-height: 320px;
                padding: 18px;
            }

            .service-title {
                font-size: 1.3rem;
            }

            .service-description {
                font-size: 0.9rem;
                -webkit-line-clamp: 3;
            }
        }





            /* ========== TESTIMONIALS SECTION ========== */
            #testimonials {
                background: #000000;
                position: relative;
                overflow: hidden;
                padding: 120px 0;
            }

            /* Netflix-style gradient overlay */
            #testimonials::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background:
                    radial-gradient(circle at 20% 30%, rgba(229, 9, 20, 0.05) 0%, transparent 40%),
                    radial-gradient(circle at 80% 70%, rgba(229, 9, 20, 0.05) 0%, transparent 40%);
                pointer-events: none;
            }

            /* Subtle grid background */
            #testimonials::after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-image:
                    linear-gradient(rgba(229, 9, 20, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(229, 9, 20, 0.02) 1px, transparent 1px);
                background-size: 80px 80px;
                opacity: 0.3;
                pointer-events: none;
            }

            /* FIXED: Title left aligned */
            #testimonials .section-title {
                text-align: left; /* Changed from center */
                font-size: 3.5rem;
                font-weight: 800;
                color: #ffffff;
                margin-bottom: 15px;
                letter-spacing: -1px;
                position: relative;
                display: block;
                max-width: 1400px;
                margin: 0 auto 60px; /* Keep center margin for container, but left text */
                padding: 0 40px;
            }

            #testimonials .text-gradient {
                background: linear-gradient(90deg, #e50914, #ff3333);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
            }

            /* FIXED: Subtitle left aligned */
            #testimonials .section-subtitle {
                font-size: 1.2rem;
                color: #b3b3b3;
                text-align: left; /* Changed from center */
                max-width: 600px;
                margin: 0 0 60px; /* Removed auto, added left margin */
                line-height: 1.6;
                padding: 0 40px;
            }

            /* Testimonials Grid */
            #testimonials .testimonials-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
                max-width: 1400px;
                margin: 0 auto;
                padding: 0 40px;
                position: relative;
                z-index: 2;
            }

            /* ========== STUNNING TESTIMONIAL CARDS ========== */
            #testimonials .testimonial-card {
                background: linear-gradient(145deg, #141414, #0a0a0a);
                border-radius: 16px;
                padding: 35px;
                border: 1px solid rgba(40, 40, 40, 1);
                transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                position: relative;
                overflow: hidden;
                box-shadow:
                    0 10px 30px rgba(0, 0, 0, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.05);
                backdrop-filter: blur(10px);
                height: 100%;
                display: flex;
                flex-direction: column;
            }

            /* Card glow effect */
            #testimonials .testimonial-card::before {
                content: '';
                position: absolute;
                top: -2px;
                left: -2px;
                right: -2px;
                bottom: -2px;
                background: linear-gradient(45deg,
                    rgba(229, 9, 20, 0),
                    rgba(229, 9, 20, 0.3),
                    rgba(229, 9, 20, 0));
                border-radius: 18px;
                z-index: -1;
                opacity: 0;
                transition: opacity 0.6s ease;
                filter: blur(10px);
            }

            #testimonials .testimonial-card:hover::before {
                opacity: 1;
                animation: cardGlow 2s ease-in-out infinite;
            }

            @keyframes cardGlow {
                0%, 100% { opacity: 0.5; }
                50% { opacity: 0.8; }
            }

            /* Card inner shine */
            #testimonials .testimonial-card::after {
                content: '';
                position: absolute;
                top: 0;
                left: -100%;
                width: 50%;
                height: 100%;
                background: linear-gradient(
                    to right,
                    transparent,
                    rgba(255, 255, 255, 0.03),
                    transparent
                );
                transform: skewX(-15deg);
                transition: left 0.7s ease;
            }

            #testimonials .testimonial-card:hover::after {
                left: 200%;
            }

            #testimonials .testimonial-card:hover {
                border-color: rgba(229, 9, 20, 0.5);
                transform: translateY(-15px) scale(1.02);
                box-shadow:
                    0 25px 50px rgba(229, 9, 20, 0.2),
                    0 15px 35px rgba(0, 0, 0, 0.6),
                    inset 0 0 50px rgba(229, 9, 20, 0.05);
            }

            /* Testimonial Header */
            #testimonials .testimonial-header {
                display: flex;
                align-items: center;
                gap: 20px;
                margin-bottom: 25px;
                position: relative;
            }

            #testimonials .testimonial-avatar {
                width: 70px;
                height: 70px;
                border-radius: 50%;
                object-fit: cover;
                border: 3px solid #e50914;
                padding: 3px;
                background: #0a0a0a;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                position: relative;
                z-index: 2;
            }

            #testimonials .testimonial-card:hover .testimonial-avatar {
                transform: scale(1.1) rotate(5deg);
                border-color: #ff3333;
                box-shadow: 0 0 20px rgba(229, 9, 20, 0.5);
            }

            /* Avatar glow effect */
            #testimonials .testimonial-avatar::after {
                content: '';
                position: absolute;
                top: -5px;
                left: -5px;
                right: -5px;
                bottom: -5px;
                border-radius: 50%;
                background: radial-gradient(circle, rgba(229, 9, 20, 0.3), transparent 70%);
                opacity: 0;
                transition: opacity 0.4s ease;
                z-index: 1;
            }

            #testimonials .testimonial-card:hover .testimonial-avatar::after {
                opacity: 1;
            }

            #testimonials .testimonial-author-info {
                flex: 1;
            }

            #testimonials .testimonial-author {
                font-size: 1.3rem;
                color: #ffffff;
                margin-bottom: 5px;
                font-weight: 700;
                letter-spacing: 0.5px;
                transition: color 0.3s ease;
            }

            #testimonials .testimonial-card:hover .testimonial-author {
                color: #e50914;
            }

            #testimonials .testimonial-role {
                font-size: 0.9rem;
                color: #e50914;
                font-weight: 500;
                letter-spacing: 0.5px;
                position: relative;
                display: inline-block;
            }

            #testimonials .testimonial-role::after {
                content: '';
                position: absolute;
                bottom: -3px;
                left: 0;
                width: 0;
                height: 1px;
                background: #e50914;
                transition: width 0.4s ease;
            }

            #testimonials .testimonial-card:hover .testimonial-role::after {
                width: 100%;
            }

            /* Testimonial Quote */
            #testimonials .testimonial-quote {
                color: #b3b3b3;
                line-height: 1.8;
                margin-bottom: 25px;
                font-style: italic;
                position: relative;
                padding: 25px 0 25px 30px;
                flex: 1;
                font-size: 1rem;
                letter-spacing: 0.3px;
            }

            /* Quote marks */
            #testimonials .testimonial-quote::before,
            #testimonials .testimonial-quote::after {
                content: '"';
                position: absolute;
                color: #e50914;
                font-family: serif;
                font-size: 4rem;
                font-weight: 900;
                opacity: 0.3;
                line-height: 1;
            }

            #testimonials .testimonial-quote::before {
                top: 0;
                left: 0;
            }

            #testimonials .testimonial-quote::after {
                bottom: 0;
                right: 0;
                transform: rotate(180deg);
            }

            #testimonials .testimonial-card:hover .testimonial-quote {
                color: #ffffff;
            }

            /* Rating Stars */
            #testimonials .testimonial-rating {
                margin-top: auto;
                color: #ffd700;
                font-size: 1.4rem;
                display: flex;
                gap: 5px;
                position: relative;
                padding-top: 20px;
                border-top: 1px solid rgba(40, 40, 40, 1);
            }

            #testimonials .testimonial-rating i {
                transition: all 0.3s ease;
                text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
            }

            #testimonials .testimonial-card:hover .testimonial-rating i {
                transform: scale(1.2) translateY(-3px);
                text-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
                animation: starTwinkle 1s ease-in-out infinite;
            }

            @keyframes starTwinkle {
                0%, 100% { opacity: 1; transform: scale(1.2) translateY(-3px); }
                50% { opacity: 0.7; transform: scale(1.1) translateY(-3px); }
            }

            /* Company/Position Badge */
            #testimonials .testimonial-badge {
                display: inline-block;
                background: rgba(229, 9, 20, 0.1);
                color: #e50914;
                padding: 4px 12px;
                border-radius: 15px;
                font-size: 0.8rem;
                font-weight: 500;
                margin-top: 8px;
                border: 1px solid rgba(229, 9, 20, 0.2);
                transition: all 0.3s ease;
            }

            #testimonials .testimonial-card:hover .testimonial-badge {
                background: rgba(229, 9, 20, 0.2);
                transform: translateY(-2px);
                border-color: rgba(229, 9, 20, 0.5);
                box-shadow: 0 5px 15px rgba(229, 9, 20, 0.2);
            }

            /* Responsive Design */
            @media (max-width: 1200px) {
                #testimonials .testimonials-grid {
                    grid-template-columns: repeat(2, 1fr);
                }

                #testimonials .section-title,
                #testimonials .section-subtitle {
                    padding: 0 30px;
                }
            }

            @media (max-width: 768px) {
                #testimonials .testimonials-grid {
                    grid-template-columns: 1fr;
                    max-width: 600px;
                    padding: 0 20px;
                }

                #testimonials .section-title {
                    font-size: 2.8rem;
                    padding: 0 20px;
                }

                #testimonials .section-subtitle {
                    padding: 0 20px;
                }

                #testimonials .testimonial-card {
                    padding: 25px;
                }

                #testimonials .testimonial-avatar {
                    width: 60px;
                    height: 60px;
                }

                #testimonials .testimonial-author {
                    font-size: 1.2rem;
                }
            }

            @media (max-width: 480px) {
                #testimonials .section-title {
                    font-size: 2.2rem;
                    padding: 0 15px;
                }

                #testimonials .section-subtitle {
                    font-size: 1rem;
                    padding: 0 15px;
                }

                #testimonials .testimonial-header {
                    flex-direction: column;
                    text-align: center;
                    gap: 15px;
                }

                #testimonials .testimonial-author-info {
                    text-align: center;
                }

                #testimonials .testimonial-role::after {
                    left: 50%;
                    transform: translateX(-50%);
                }
            }



            /* ========== CONTACT SECTION ========== */
            .contact-section {
                background: #000000;
                position: relative;
                overflow: hidden;
                padding: 140px 0;
            }

            /* Animated Background Grid */
            .contact-bg-grid {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-image:
                    linear-gradient(rgba(229, 9, 20, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(229, 9, 20, 0.03) 1px, transparent 1px);
                background-size: 40px 40px;
                mask-image: radial-gradient(circle at center, rgba(0,0,0,0.7), transparent 80%);
                animation: gridMove 30s linear infinite;
            }

            @keyframes gridMove {
                0% { transform: translateY(0); }
                100% { transform: translateY(40px); }
            }

            /* Multiple Particle Layers */
            .contact-particles {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                pointer-events: none;
            }

            .particle-layer {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                pointer-events: none;
            }

            .particle-layer-1 {
                animation: particleFloat1 25s linear infinite;
            }

            .particle-layer-2 {
                animation: particleFloat2 35s linear infinite;
            }

            .particle-layer-3 {
                animation: particleFloat3 45s linear infinite;
            }

            .particle {
                position: absolute;
                border-radius: 50%;
                background: #e50914;
                box-shadow: 0 0 10px rgba(229, 9, 20, 0.8);
            }

            @keyframes particleFloat1 {
                0% { transform: translateY(100vh); }
                100% { transform: translateY(-100px); }
            }

            @keyframes particleFloat2 {
                0% { transform: translateY(100vh) translateX(-50px); }
                100% { transform: translateY(-100px) translateX(50px); }
            }

            @keyframes particleFloat3 {
                0% { transform: translateY(100vh) translateX(50px); }
                100% { transform: translateY(-100px) translateX(-50px); }
            }

            /* Glowing Orbs */
            .contact-glows {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                pointer-events: none;
            }

            .glow-orb {
                position: absolute;
                border-radius: 50%;
                filter: blur(40px);
                opacity: 0.1;
                animation: glowPulse 8s ease-in-out infinite;
            }

            .glow-red {
                background: #e50914;
                width: 300px;
                height: 300px;
                top: 20%;
                left: 10%;
            }

            .glow-blue {
                background: #0066ff;
                width: 400px;
                height: 400px;
                bottom: 30%;
                right: 15%;
                animation-delay: 2s;
            }

            @keyframes glowPulse {
                0%, 100% { opacity: 0.05; transform: scale(1); }
                50% { opacity: 0.15; transform: scale(1.1); }
            }

            /* Section Header */
            .contact-section .section-header {
                text-align: left;
                margin-bottom: 80px;
                max-width: 1400px;
                margin: 0 auto 80px;
                padding: 0 60px;
                position: relative;
                z-index: 10;
            }

            .contact-section .section-title {
                font-size: 4rem;
                font-weight: 900;
                color: #ffffff;
                margin-bottom: 20px;
                letter-spacing: -2px;
                line-height: 1.1;
                text-transform: uppercase;
            }

            .contact-section .text-gradient {
                background: linear-gradient(45deg, #e50914, #ff3333, #ff6666, #e50914);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                background-size: 300% 100%;
                animation: gradientFlow 4s ease-in-out infinite;
            }

            @keyframes gradientFlow {
                0%, 100% { background-position: 0% 50%; }
                50% { background-position: 100% 50%; }
            }

            .contact-section .section-subtitle {
                font-size: 1.3rem;
                color: #b3b3b3;
                text-align: left;
                max-width: 700px;
                margin: 0;
                line-height: 1.7;
                letter-spacing: 0.5px;
            }

            /* Contact Container */
            .contact-container {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 60px;
                max-width: 1400px;
                margin: 0 auto;
                padding: 0 60px;
                position: relative;
                z-index: 10;
            }

            /* Contact Info */
            .contact-info {
                display: grid;
                gap: 30px;
            }

            /* Contact Item - Premium Cards */
            .contact-item {
                background: rgba(20, 20, 20, 0.85);
                border-radius: 20px;
                padding: 35px;
                border: 1px solid rgba(255, 255, 255, 0.08);
                transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
                display: flex;
                align-items: flex-start;
                gap: 25px;
                position: relative;
                overflow: hidden;
                backdrop-filter: blur(20px);
            }

            .contact-item::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(135deg,
                    rgba(229, 9, 20, 0.05),
                    rgba(229, 9, 20, 0.02),
                    transparent);
                opacity: 0;
                transition: opacity 0.4s ease;
            }

            .contact-item:hover {
                border-color: rgba(229, 9, 20, 0.4);
                transform: translateY(-15px);
                box-shadow:
                    0 30px 60px rgba(229, 9, 20, 0.25),
                    0 20px 40px rgba(0, 0, 0, 0.7),
                    inset 0 0 80px rgba(229, 9, 20, 0.05);
            }

            .contact-item:hover::before {
                opacity: 1;
            }

            /* Contact Icon */
            .contact-icon {
                width: 65px;
                height: 65px;
                background: linear-gradient(135deg, #e50914, #ff3333);
                border-radius: 16px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.5rem;
                color: #ffffff;
                flex-shrink: 0;
                transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                box-shadow: 0 8px 25px rgba(229, 9, 20, 0.4);
                position: relative;
                z-index: 2;
            }

            .contact-item:hover .contact-icon {
                transform: scale(1.15) rotate(15deg);
                box-shadow: 0 12px 35px rgba(229, 9, 20, 0.6);
            }

            /* Contact Details */
            .contact-details h3 {
                font-size: 1.4rem;
                font-weight: 700;
                color: #ffffff;
                margin-bottom: 12px;
                letter-spacing: 0.5px;
                position: relative;
                z-index: 2;
            }

            .contact-details p {
                color: #b3b3b3;
                line-height: 1.7;
                font-size: 1rem;
                margin-bottom: 8px;
                position: relative;
                z-index: 2;
            }

            .contact-note {
                display: block;
                font-size: 0.85rem;
                color: #888;
                margin-top: 5px;
                font-style: italic;
            }

            .contact-details a {
                color: #ff6666;
                text-decoration: none;
                transition: all 0.3s ease;
                font-weight: 500;
                display: inline-block;
                position: relative;
                padding-bottom: 2px;
            }

            .contact-details a::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 0;
                height: 1px;
                background: linear-gradient(90deg, #e50914, #ff3333);
                transition: width 0.3s ease;
            }

            .contact-details a:hover {
                color: #ffffff;
            }

            .contact-details a:hover::after {
                width: 100%;
            }

            /* Social Links - FIXED ALIGNMENT */
            .social-links {
                display: flex;
                gap: 15px;
                margin-top: 20px;
            }

            .social-link {
                width: 50px;
                height: 50px;
                background: rgba(40, 40, 40, 0.9);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #ffffff;
                text-decoration: none;
                transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                border: 2px solid transparent;
                position: relative;
                overflow: hidden;
            }

            /* FIX: Center Font Awesome icons properly */
            .social-link i {
                font-size: 1.2rem;
                position: relative;
                z-index: 2;
                transition: transform 0.3s ease;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 100%;
                height: 100%;
            }

            .social-link::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(135deg, #e50914, #ff3333);
                opacity: 0;
                transition: opacity 0.3s ease;
                z-index: 1;
            }

            .social-link:hover {
                transform: translateY(-5px) scale(1.1);
                border-color: rgba(229, 9, 20, 0.5);
                box-shadow: 0 10px 30px rgba(229, 9, 20, 0.4);
            }

            .social-link:hover::before {
                opacity: 1;
            }

            .social-link:hover i {
                transform: scale(1.2);
            }

            /* Contact Form Container */
            .contact-form-container {
                background: rgba(20, 20, 20, 0.9);
                border-radius: 20px;
                padding: 45px;
                border: 1px solid rgba(255, 255, 255, 0.08);
                box-shadow:
                    0 25px 50px rgba(0, 0, 0, 0.6),
                    inset 0 1px 0 rgba(255, 255, 255, 0.05);
                backdrop-filter: blur(20px);
                position: relative;
                overflow: hidden;
            }

            .contact-form-container::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 3px;
                background: linear-gradient(90deg, #e50914, #ff3333, #e50914);
                background-size: 200% 100%;
                animation: gradientFlow 3s linear infinite;
            }

            .contact-form-header {
                margin-bottom: 40px;
            }

            .contact-form-header h3 {
                font-size: 2rem;
                font-weight: 700;
                color: #ffffff;
                margin-bottom: 12px;
                letter-spacing: -0.5px;
                display: flex;
                align-items: center;
                gap: 12px;
            }

            .contact-form-header h3 i {
                color: #e50914;
                font-size: 1.8rem;
            }

            .contact-form-header p {
                color: #b3b3b3;
                font-size: 1.05rem;
                line-height: 1.6;
            }

            /* Form Layout */
            .form-row {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 25px;
                margin-bottom: 25px;
            }

            /* Form Groups */
            .form-group {
                margin-bottom: 25px;
                position: relative;
            }

            .form-group label {
                display: flex;
                align-items: center;
                gap: 12px;
                margin-bottom: 12px;
                color: #ffffff;
                font-weight: 500;
                font-size: 1rem;
                letter-spacing: 0.5px;
            }

            .form-group label i {
                color: #e50914;
                font-size: 1.1rem;
                width: 20px;
                text-align: center;
            }

            /* Form Controls */
            .form-control {
                width: 100%;
                padding: 18px 22px;
                background: rgba(30, 30, 30, 0.9);
                border: 1px solid rgba(255, 255, 255, 0.1);
                border-radius: 12px;
                color: #ffffff;
                font-size: 1.05rem;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                font-family: inherit;
                letter-spacing: 0.3px;
            }

            .form-control:focus {
                outline: none;
                border-color: #e50914;
                background: rgba(30, 30, 30, 1);
                box-shadow:
                    0 0 0 4px rgba(229, 9, 20, 0.15),
                    0 8px 32px rgba(229, 9, 20, 0.25);
            }

            .form-control::placeholder {
                color: #666;
                opacity: 0.7;
            }

            textarea.form-control {
                resize: vertical;
                min-height: 150px;
                line-height: 1.5;
            }

            /* Form Error Messages */
            .form-error {
                color: #ff3333;
                font-size: 0.9rem;
                margin-top: 10px;
                display: none;
                align-items: center;
                gap: 8px;
                padding-left: 5px;
            }

            .form-error::before {
                content: '!';
                width: 20px;
                height: 20px;
                background: #ff3333;
                color: #ffffff;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 0.9rem;
                font-weight: bold;
                flex-shrink: 0;
            }

            /* Submit Button */
            .form-submit {
                width: 100%;
                padding: 20px 35px;
                background: linear-gradient(135deg, #e50914, #ff3333);
                border: none;
                border-radius: 12px;
                color: #ffffff;
                font-size: 1.2rem;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                position: relative;
                overflow: hidden;
                margin-top: 20px;
                letter-spacing: 1px;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 15px;
                text-transform: uppercase;
            }

            .form-submit::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(135deg, #ff3333, #e50914);
                opacity: 0;
                transition: opacity 0.4s ease;
                z-index: 1;
            }

            .form-submit:hover {
                transform: translateY(-5px);
                box-shadow:
                    0 20px 40px rgba(229, 9, 20, 0.4),
                    0 15px 35px rgba(229, 9, 20, 0.3),
                    inset 0 0 60px rgba(255, 255, 255, 0.1);
            }

            .form-submit:hover::before {
                opacity: 1;
            }

            .form-submit:active {
                transform: translateY(-2px);
            }

            .submit-text,
            .submit-loader,
            .submit-icon {
                position: relative;
                z-index: 2;
                transition: all 0.3s ease;
            }

            .submit-loader {
                display: none;
            }

            .submit-loader i {
                animation: spin 1s linear infinite;
                font-size: 1.3rem;
            }

            @keyframes spin {
                to { transform: rotate(360deg); }
            }

            .form-submit.loading .submit-text {
                opacity: 0;
            }

            .form-submit.loading .submit-icon {
                display: none;
            }

            .form-submit.loading .submit-loader {
                display: block;
            }

            /* Success & Error Messages */
            .form-success,
            .form-error-message {
                display: none;
                align-items: center;
                gap: 15px;
                padding: 20px 25px;
                border-radius: 12px;
                margin-top: 25px;
                font-size: 1.05rem;
                animation: slideUp 0.4s ease;
                backdrop-filter: blur(10px);
            }

            @keyframes slideUp {
                from {
                    opacity: 0;
                    transform: translateY(15px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .form-success {
                background: rgba(29, 185, 84, 0.15);
                border: 1px solid rgba(29, 185, 84, 0.4);
                color: #1DB954;
            }

            .form-error-message {
                background: rgba(229, 9, 20, 0.15);
                border: 1px solid rgba(229, 9, 20, 0.4);
                color: #e50914;
            }

            .form-success i,
            .form-error-message i {
                font-size: 1.5rem;
                flex-shrink: 0;
            }

            /* Responsive Design */
            @media (max-width: 1200px) {
                .contact-container {
                    gap: 40px;
                }

                .contact-section .section-header,
                .contact-container {
                    padding: 0 40px;
                }
            }

            @media (max-width: 992px) {
                .contact-container {
                    grid-template-columns: 1fr;
                    max-width: 800px;
                }

                .contact-section .section-title {
                    font-size: 3.2rem;
                }

                .contact-section .section-header,
                .contact-container {
                    padding: 0 30px;
                }

                .form-row {
                    grid-template-columns: 1fr;
                    gap: 20px;
                }
            }

            @media (max-width: 768px) {
                .contact-section {
                    padding: 100px 0;
                }

                .contact-section .section-title {
                    font-size: 2.8rem;
                }

                .contact-section .section-subtitle {
                    font-size: 1.1rem;
                }

                .contact-item {
                    padding: 25px;
                    flex-direction: column;
                    gap: 20px;
                    text-align: center;
                }

                .contact-icon {
                    margin: 0 auto;
                }

                .social-links {
                    justify-content: center;
                }

                .contact-form-container {
                    padding: 30px;
                }

                .contact-section .section-header,
                .contact-container {
                    padding: 0 20px;
                }
            }

            @media (max-width: 480px) {
                .contact-section .section-title {
                    font-size: 2.3rem;
                }

                .contact-section .section-subtitle {
                    font-size: 1rem;
                }

                .form-submit {
                    padding: 18px 25px;
                    font-size: 1.1rem;
                }

                .contact-section .section-header,
                .contact-container {
                    padding: 0 15px;
                }
            }

            /* ========== FORM SUBMIT STYLES ========== */

            /* Loading state for submit button */
            .form-submit.loading .submit-text {
                opacity: 0;
            }

            .form-submit.loading .submit-loader {
                opacity: 1;
                animation: spin 1s linear infinite;
            }

            .form-submit.loading .submit-icon {
                opacity: 0;
            }

            .form-submit:not(.loading) .submit-loader {
                opacity: 0;
            }

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

            /* Hide honeypot field */
            input[name="_honey"] {
                display: none !important;
                visibility: hidden !important;
                height: 0 !important;
                width: 0 !important;
                padding: 0 !important;
                margin: 0 !important;
                border: 0 !important;
                opacity: 0 !important;
            }


            /* ========== FOOTER ========== */
            .footer {
                background: #000000;
                position: relative;
                overflow: hidden;
                padding: 100px 0 60px;
                border-top: 1px solid rgba(229, 9, 20, 0.3);
            }

            /* Animated Netflix-style top border */
            .footer::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 1px;
                background: linear-gradient(90deg,
                    transparent,
                    rgba(229, 9, 20, 0.8),
                    rgba(229, 9, 20, 0.4),
                    rgba(229, 9, 20, 0.8),
                    transparent);
                animation: gradientMove 3s ease-in-out infinite;
            }

            /* Subtle mesh background */
            .footer::after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-image:
                    radial-gradient(circle at 30% 20%, rgba(229, 9, 20, 0.03) 0%, transparent 50%),
                    radial-gradient(circle at 70% 80%, rgba(229, 9, 20, 0.03) 0%, transparent 50%);
                opacity: 0.3;
                pointer-events: none;
            }

            @keyframes gradientMove {
                0%, 100% {
                    opacity: 0.4;
                    background-position: 0% 50%;
                }
                50% {
                    opacity: 0.8;
                    background-position: 100% 50%;
                }
            }

            /* Container */
            .footer .container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 40px;
                position: relative;
                z-index: 2;
            }

            /* Footer Content */
            .footer-content {
                text-align: center;
                position: relative;
            }

            /* Logo */
            .footer-logo {
                font-size: 4rem;
                font-weight: 900;
                background: linear-gradient(45deg,
                    #e50914,
                    #ff3333,
                    #ff6666,
                    #ff3333,
                    #e50914);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                background-size: 300% 100%;
                text-decoration: none;
                margin-bottom: 30px;
                display: inline-block;
                position: relative;
                letter-spacing: -2px;
                animation: gradientFlow 4s ease-in-out infinite;
                text-transform: uppercase;
                transition: all 0.4s ease;
            }

            .footer-logo:hover {
                transform: scale(1.05);
                filter: drop-shadow(0 0 15px rgba(229, 9, 20, 0.5));
            }

            .footer-logo::after {
                content: '';
                position: absolute;
                bottom: -12px;
                left: 50%;
                transform: translateX(-50%);
                width: 80px;
                height: 3px;
                background: linear-gradient(90deg,
                    transparent,
                    #e50914,
                    #ff3333,
                    #e50914,
                    transparent);
                border-radius: 2px;
                animation: lineGlow 2s ease-in-out infinite;
            }

            @keyframes gradientFlow {
                0%, 100% { background-position: 0% 50%; }
                50% { background-position: 100% 50%; }
            }

            @keyframes lineGlow {
                0%, 100% { opacity: 0.5; }
                50% { opacity: 1; }
            }

            /* Footer Text */
            .footer-text {
                color: #b3b3b3;
                max-width: 800px;
                margin: 0 auto 50px;
                font-size: 1.2rem;
                line-height: 1.8;
                letter-spacing: 0.3px;
                font-weight: 300;
                position: relative;
                padding: 0 20px;
            }

            .footer-text::before,
            .footer-text::after {
                content: '"';
                color: #e50914;
                font-size: 2rem;
                opacity: 0.3;
                position: absolute;
                font-family: serif;
            }

            .footer-text::before {
                top: -10px;
                left: 0;
            }

            .footer-text::after {
                bottom: -15px;
                right: 0;
                transform: rotate(180deg);
            }

            /* Footer Links */
            .footer-links {
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
                gap: 25px;
                margin-bottom: 50px;
                position: relative;
            }

            .footer-links::before {
                content: '';
                position: absolute;
                top: -25px;
                left: 50%;
                transform: translateX(-50%);
                width: 200px;
                height: 1px;
                background: linear-gradient(90deg,
                    transparent,
                    rgba(229, 9, 20, 0.3),
                    transparent);
            }

            .footer-links a {
                color: #8a8a8a;
                text-decoration: none;
                font-size: 1rem;
                font-weight: 500;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                position: relative;
                padding: 8px 0;
                letter-spacing: 0.5px;
            }

            .footer-links a::before {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 0;
                height: 2px;
                background: linear-gradient(90deg, #e50914, #ff3333);
                transition: width 0.3s ease;
                border-radius: 1px;
            }

            .footer-links a:hover {
                color: #ffffff;
                transform: translateY(-3px);
            }

            .footer-links a:hover::before {
                width: 100%;
            }

            /* Social Media */
            .footer-social {
                display: flex;
                justify-content: center;
                gap: 20px;
                margin-bottom: 60px;
                flex-wrap: wrap;
            }

            .footer-social a {
                width: 60px;
                height: 60px;
                background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
                border-radius: 16px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #b3b3b3;
                text-decoration: none;
                transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                font-size: 1.4rem;
                position: relative;
                overflow: hidden;
                border: 1px solid rgba(255, 255, 255, 0.08);
                box-shadow:
                    0 5px 15px rgba(0, 0, 0, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.05);
            }

            .footer-social a::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(45deg,
                    rgba(229, 9, 20, 0),
                    rgba(229, 9, 20, 0.2),
                    rgba(229, 9, 20, 0));
                opacity: 0;
                transition: opacity 0.3s ease;
            }

            .footer-social a i {
                position: relative;
                z-index: 2;
                transition: all 0.3s ease;
            }

            .footer-social a:hover {
                transform: translateY(-10px) scale(1.1);
                border-color: rgba(229, 9, 20, 0.3);
                box-shadow:
                    0 15px 35px rgba(229, 9, 20, 0.3),
                    0 10px 25px rgba(229, 9, 20, 0.2),
                    inset 0 0 30px rgba(229, 9, 20, 0.1);
            }

            .footer-social a:hover::before {
                opacity: 1;
            }

            .footer-social a:hover i {
                transform: scale(1.2) rotate(10deg);
            }

            /* Platform-specific hover colors */
            .footer-social a[href*="github"]:hover {
                background: linear-gradient(45deg, #333, #000);
                color: #ffffff;
            }
            .footer-social a[href*="linkedin"]:hover {
                background: linear-gradient(45deg, #0077b5, #004471);
                color: #ffffff;
            }
            .footer-social a[href*="twitter"]:hover {
                background: linear-gradient(45deg, #1da1f2, #0d8bd9);
                color: #ffffff;
            }
            .footer-social a[href*="instagram"]:hover {
                background: linear-gradient(45deg, #e4405f, #833ab4, #405de6);
                color: #ffffff;
            }
            .footer-social a[href*="youtube"]:hover {
                background: linear-gradient(45deg, #ff0000, #cc0000);
                color: #ffffff;
            }
            .footer-social a[href*="stack-overflow"]:hover {
                background: linear-gradient(45deg, #f48024, #bc6621);
                color: #ffffff;
            }

            /* Copyright */
            .footer-copyright {
                color: #666;
                font-size: 0.95rem;
                margin-top: 40px;
                padding-top: 40px;
                border-top: 1px solid rgba(255, 255, 255, 0.05);
                letter-spacing: 0.5px;
                position: relative;
                font-weight: 300;
            }

            .footer-copyright .text-gradient {
                background: linear-gradient(45deg, #e50914, #ff3333);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                background-clip: text;
                font-weight: 600;
            }

            /* Decorative elements */
            .footer-copyright::before {
                content: '©';
                color: #e50914;
                margin-right: 5px;
                font-weight: 400;
            }


/* ========== ADVANCED AI CHATBOX ========== */
.chatbox-container {
    position: fixed;
    bottom: 30px; /* Moved much lower */
    right: 30px; /* Moved more to the right */
    z-index: 10050;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.chatbox-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e50914, #ff3333, #e50914);
    border-radius: 50%;
    border: none;
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow:
        0 10px 30px rgba(229, 9, 20, 0.4),
        0 5px 15px rgba(229, 9, 20, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed; /* Changed to fixed for consistent positioning */
    bottom: 30px; /* Positioned at bottom */
    right: 30px; /* Positioned at right */
    z-index: 10051;
}

.chatbox-toggle:hover {
    transform: scale(1.1) rotate(180deg);
    box-shadow:
        0 15px 40px rgba(229, 9, 20, 0.6),
        0 10px 25px rgba(229, 9, 20, 0.4);
}

.chatbox-toggle::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(135deg, #e50914, #ff3333, #e50914);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
    opacity: 0.5;
    filter: blur(5px);
}

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

.chatbox {
    position: fixed;
    width: 380px;
    height: 500px;
    max-height: 80vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 20px;
    border: 2px solid rgba(229, 9, 20, 0.6);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.9),
        0 15px 40px rgba(229, 9, 20, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10050;
    cursor: default;
    resize: both;
    min-width: 300px;
    min-height: 400px;
    /* Initial position - centered near toggle */
    bottom: 100px;
    right: 30px;
    left: auto;
    top: auto;
}

.chatbox.active {
    display: flex;
    transform: translateY(0) scale(1);
    opacity: 1;
}

.chatbox-header {
    padding: 20px 25px;
    background: linear-gradient(135deg, #e50914, #ff3333);
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: move;
    user-select: none;
    touch-action: none; /* Important for touch dragging */
}

.chatbox-header:hover {
    background: linear-gradient(135deg, #ff3333, #e50914);
}

.chatbox-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent);
}

.chatbox-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.5px;
}

.chatbox-header h3 i {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.chatbox-close {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    touch-action: manipulation; /* Better touch handling */
}

.chatbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.chatbox-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background:
        radial-gradient(circle at 20% 30%, rgba(229, 9, 20, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(229, 9, 20, 0.05) 0%, transparent 50%),
        linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(10, 10, 10, 0.95));
}

.chatbox-messages::-webkit-scrollbar {
    width: 6px;
}

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

.chatbox-messages::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #e50914, #ff3333);
    border-radius: 3px;
}

.chatbox-messages::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff3333, #e50914);
}

.message {
    max-width: 80%;
    padding: 15px 20px;
    border-radius: 18px;
    position: relative;
    animation: messageSlide 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    word-wrap: break-word;
    line-height: 1.6;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    backdrop-filter: blur(10px);
    word-break: break-word;
    overflow-wrap: break-word;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.message.user {
    background: linear-gradient(135deg, #e50914, #ff3333);
    color: #ffffff;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
    margin-left: auto;
    box-shadow:
        0 5px 15px rgba(229, 9, 20, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.message.bot {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
    color: #ffffff;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
    border: 1px solid rgba(229, 9, 20, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.message-content {
    line-height: 1.6;
}

.message-content strong {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.message-time {
    font-size: 0.7rem;
    opacity: 0.6;
    margin-top: 8px;
    text-align: right;
    letter-spacing: 0.3px;
    font-family: 'Monaco', 'Courier New', monospace;
}

.message.bot .message-time {
    text-align: left;
}

/* Typing indicator */
.chat-typing-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    font-style: italic;
    animation: fadeIn 0.3s ease;
    padding: 5px 0;
}

.chat-typing-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.65rem !important;
    font-weight: 300;
    letter-spacing: 0.5px;
    font-family: 'Monaco', 'Courier New', monospace;
    text-transform: lowercase;
}

.chat-typing-dots {
    display: flex;
    gap: 3px;
}

.chat-typing-dots span {
    width: 5px;
    height: 5px;
    background: linear-gradient(135deg, #e50914, #ff3333);
    border-radius: 50%;
    animation: typingDot 1.4s infinite;
    box-shadow: 0 0 5px rgba(229, 9, 20, 0.3);
}

.chat-typing-dots span:nth-child(1) { animation-delay: 0s; }
.chat-typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-3px);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbox-input {
    padding: 20px;
    display: flex;
    gap: 12px;
    background: rgba(20, 20, 20, 0.97);
    border-top: 1px solid rgba(229, 9, 20, 0.3);
    position: relative;
    backdrop-filter: blur(10px);
}

.chatbox-input::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(229, 9, 20, 0.3),
        transparent);
}

.chatbox-input input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(229, 9, 20, 0.4);
    border-radius: 15px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    letter-spacing: 0.3px;
}

.chatbox-input input:focus {
    outline: none;
    border-color: #e50914;
    background: rgba(255, 255, 255, 0.12);
    box-shadow:
        0 0 0 3px rgba(229, 9, 20, 0.2),
        0 5px 20px rgba(229, 9, 20, 0.3);
}

.chatbox-input input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    opacity: 0.7;
}

.chatbox-input button {
    padding: 14px 25px;
    background: linear-gradient(135deg, #e50914, #ff3333);
    border: none;
    border-radius: 15px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(229, 9, 20, 0.3);
}

.chatbox-input button:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow:
        0 8px 25px rgba(229, 9, 20, 0.5),
        0 5px 15px rgba(229, 9, 20, 0.4);
}

.chatbox-input button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.welcome-message {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(229, 9, 20, 0.1), rgba(229, 9, 20, 0.05));
    border: 1px solid rgba(229, 9, 20, 0.2);
    border-radius: 12px;
    margin: 10px 0;
    backdrop-filter: blur(10px);
}

.welcome-message h4 {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.welcome-message p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
}

.chatbox::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    pointer-events: none;
    background: linear-gradient(135deg,
        rgba(229, 9, 20, 0.1),
        transparent 30%,
        transparent 70%,
        rgba(229, 9, 20, 0.1));
    z-index: -1;
}

.chatbox::before {
    content: '';
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, transparent 50%, rgba(229, 9, 20, 0.3) 50%);
    cursor: nwse-resize;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 100;
}

.chatbox:hover::before {
    opacity: 1;
}

/* Enhanced dragging styles */
.chatbox.dragging {
    opacity: 0.9;
    cursor: move;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.9),
        0 25px 60px rgba(229, 9, 20, 0.6);
    user-select: none;
    touch-action: none;
    transition: none; /* Remove transition during drag for smooth movement */
}

.chatbox.dragging * {
    user-select: none;
    pointer-events: none;
}

/* Resize handle styling */
.chatbox .resize-handle {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    cursor: nwse-resize;
    z-index: 100;
}

@keyframes floatIn {
    0% {
        transform: translateY(30px) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.chatbox.active {
    animation: floatIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.chatbox:hover {
    box-shadow:
        0 40px 90px rgba(0, 0, 0, 0.9),
        0 20px 50px rgba(229, 9, 20, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: rgba(229, 9, 20, 0.8);
}

/* Mobile responsiveness for dragging */
@media (max-width: 768px) {
    .chatbox {
        width: calc(100vw - 40px);
        height: 70vh;
        max-height: 70vh;
        bottom: 90px;
        right: 20px;
        left: 20px;
        min-width: unset;
        min-height: 300px;
    }

    .chatbox-toggle {
        bottom: 20px;
        right: 20px;
    }

    .chatbox.dragging {
        opacity: 0.8;
    }
}

/* Prevent text selection during drag */
.chatbox-header * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Drop zone indication */
.chatbox.drag-over {
    border-style: dashed;
    border-color: rgba(229, 9, 20, 0.8);
    background: rgba(10, 10, 10, 0.95);
}
            /* ========== ENHANCED RESPONSIVE DESIGN ========== */
            /* Desktop - Large screens */
            @media (min-width: 1400px) {
                .chatbox-container {
                    right: 40px;
                    bottom: 150px;
                }

                .chatbox {
                    width: 420px;
                    height: 550px;
                }
            }

            /* Tablet - Medium screens */
            @media (max-width: 1024px) {
                .chatbox-container {
                    bottom: 110px;
                    right: 25px;
                }

                .chatbox-toggle {
                    width: 65px;
                    height: 65px;
                }

                .chatbox {
                    width: 350px;
                    height: 480px;
                    right: 25px;
                    bottom: 160px;
                }
            }

            /* Tablet - Small screens */
            @media (max-width: 768px) {
                .chatbox-container {
                    bottom: 100px;
                    right: 20px;
                }

                .chatbox-toggle {
                    width: 60px;
                    height: 60px;
                    font-size: 1.6rem;
                }

                .chatbox {
                    bottom: 150px;
                    right: 20px;
                    width: calc(100vw - 40px);
                    max-width: 380px;
                    height: 450px;
                    max-height: 70vh;
                    min-width: 280px;
                    min-height: 400px;
                    border-radius: 18px;
                }

                .chatbox-header {
                    padding: 18px 22px;
                }

                .chatbox-header h3 {
                    font-size: 1.3rem;
                }

                .chatbox-input {
                    padding: 18px;
                }

                .message {
                    max-width: 85%;
                }
            }

            /* Mobile - Landscape */
            @media (max-width: 768px) and (orientation: landscape) {
                .chatbox {
                    height: 65vh;
                    max-height: 65vh;
                    bottom: 120px;
                }

                .chatbox-messages {
                    padding: 15px;
                    gap: 12px;
                }

                .chatbox-input {
                    padding: 15px;
                }
            }

            /* Mobile - Small screens */
            @media (max-width: 480px) {
                .chatbox-container {
                    bottom: 90px;
                    right: 15px;
                }

                .chatbox-toggle {
                    width: 55px;
                    height: 55px;
                    font-size: 1.5rem;
                }

                .chatbox {
                    bottom: 140px;
                    right: 15px;
                    width: calc(100vw - 30px);
                    height: 400px;
                    max-height: 65vh;
                    border-radius: 16px;
                    min-width: 250px;
                    min-height: 350px;
                }

                .chatbox-header {
                    padding: 15px 20px;
                }

                .chatbox-header h3 {
                    font-size: 1.2rem;
                    gap: 10px;
                }

                .chatbox-messages {
                    padding: 15px;
                    gap: 12px;
                }

                .message {
                    padding: 12px 16px;
                    font-size: 0.9rem;
                    max-width: 90%;
                }

                .chatbox-input {
                    padding: 15px;
                    gap: 10px;
                }

                .chatbox-input input {
                    padding: 12px 16px;
                    font-size: 0.95rem;
                }

                .chatbox-input button {
                    padding: 12px 20px;
                    min-width: 55px;
                    font-size: 0.9rem;
                }

                .welcome-message {
                    padding: 15px;
                    margin: 5px 0;
                }

                .welcome-message h4 {
                    font-size: 1rem;
                }

                .welcome-message p {
                    font-size: 0.85rem;
                }
            }

            /* Mobile - Extra small screens */
            @media (max-width: 360px) {
                .chatbox-container {
                    bottom: 80px;
                    right: 10px;
                }

                .chatbox-toggle {
                    width: 50px;
                    height: 50px;
                    font-size: 1.4rem;
                }

                .chatbox {
                    width: calc(100vw - 20px);
                    right: 10px;
                    bottom: 130px;
                    height: 380px;
                    min-width: 220px;
                    min-height: 320px;
                    border-radius: 14px;
                }

                .chatbox-header {
                    padding: 12px 16px;
                }

                .chatbox-header h3 {
                    font-size: 1.1rem;
                    gap: 8px;
                }

                .chatbox-messages {
                    padding: 12px;
                    gap: 10px;
                }

                .message {
                    padding: 10px 14px;
                    font-size: 0.85rem;
                    border-radius: 16px;
                }

                .chatbox-input {
                    padding: 12px;
                    gap: 8px;
                }

                .chatbox-input input {
                    padding: 10px 14px;
                    font-size: 0.9rem;
                }

                .chatbox-input button {
                    padding: 10px 16px;
                    font-size: 0.85rem;
                }

                .message-time {
                    font-size: 0.65rem;
                }
            }

            /* Touch device optimizations */
            @media (hover: none) and (pointer: coarse) {
                .chatbox-toggle:hover {
                    transform: none;
                }

                .chatbox-toggle:active {
                    transform: scale(0.95);
                }

                .chatbox-input button:hover:not(:disabled) {
                    transform: none;
                }

                .chatbox-input button:active:not(:disabled) {
                    transform: scale(0.95);
                }

                .chatbox-close:hover {
                    transform: none;
                }

                .chatbox-close:active {
                    transform: rotate(90deg) scale(0.95);
                }

                /* Increase tap targets for mobile */
                .chatbox-input button,
                .chatbox-close,
                .chatbox-toggle {
                    min-height: 44px;
                }
            }

            /* High DPI screens */
            @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
                .chatbox {
                    border-width: 1.5px;
                }

                .chatbox::after {
                    background: linear-gradient(135deg,
                        rgba(229, 9, 20, 0.08),
                        transparent 30%,
                        transparent 70%,
                        rgba(229, 9, 20, 0.08));
                }
            }

            /* Dark mode adjustments (if applicable) */
            @media (prefers-color-scheme: dark) {
                .chatbox {
                    background: rgba(5, 5, 5, 0.98);
                }

                .chatbox-input {
                    background: rgba(15, 15, 15, 0.97);
                }
            }

            /* Reduced motion preference */
            @media (prefers-reduced-motion: reduce) {
                .chatbox-toggle,
                .chatbox,
                .chatbox-close,
                .chatbox-input button,
                .message,
                .chat-typing-indicator {
                    transition-duration: 0.1s;
                    animation-duration: 0.1s;
                }

                .chatbox-toggle:hover {
                    transform: scale(1.05);
                    rotate: 0deg;
                }

                .chatbox-toggle::after {
                    animation: none;
                }

                .chat-typing-dots span {
                    animation: none;
                    opacity: 0.6;
                }
            }
            /* ========== SCROLLBAR STYLING ========== */
            ::-webkit-scrollbar {
                width: 8px;
            }

            ::-webkit-scrollbar-track {
                background: var(--netflix-dark-gray);
            }

            ::-webkit-scrollbar-thumb {
                background: var(--gradient-red);
                border-radius: 4px;
            }

            ::-webkit-scrollbar-thumb:hover {
                background: var(--netflix-dark-red);
            }

            .chatbox-messages::-webkit-scrollbar {
                width: 6px;
            }

            .chatbox-messages::-webkit-scrollbar-thumb {
                background: rgba(229, 9, 20, 0.5);
            }
