        :root {
            --primary-glow: #bc6c25;
            --secondary-bg: rgba(20, 20, 30, 0.6);
            --border-color: rgba(255, 255, 255, 0.2);
            --text-color: #f0f0f0;
            --hover-text-color: var(--primary-glow);
            --card-background: #1a1a1a;
            --carousel-border-color: #2a2a2a;
            --secondary-text-color: #a0a0b0;
            --accent-color-glow: rgba(188, 108, 37, 0.5);
            --bg-color: #0c0c0e;
            --primary-text: #e0e0e0;
            --secondary-text: #a0a0b0;
            --primary-white: #ffffff;
            --badge-bg: rgba(255, 255, 255, 0.05);
            --badge-border: rgba(255, 255, 255, 0.1);
            --font-family: 'Poppins', sans-serif;
            --transition-speed-fast: 0.3s;
            --transition-speed-med: 0.5s;
            --transition-speed-slow: 0.8s;
            --easing-func: cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --gradient-1: linear-gradient(45deg, #a855f7, #e879f9);
            --gradient-2: linear-gradient(45deg, #38bdf8, #67e8f9);
            --gradient-3: linear-gradient(45deg, #4ade80, #a3e635);
            --gradient-4: linear-gradient(45deg, #fb923c, #fcd34d);
            --gradient-5: linear-gradient(45deg, #f87171, #fb923c);
            --gradient-6: linear-gradient(45deg, #818cf8, #a78bfa);
            --black: #000000;
            --white: #ffffff;
            --gray: #d1d1d6;
            --accent: #bc6c25;
            --color-black: #121212;
            --color-gray-dark: #1A1A1A;
            --color-gray-medium: #2C2C2C;
            --color-gray-light: #888888;
            --color-white: #F5F5F5;
            --color-accent: #E65100;
            --color-accent-dark: #bc6c25;
            --shadow-color: rgba(0, 0, 0, 0.6);
            --glow-color: rgba(230, 81, 0, 0.4);
            --font-family-main: 'Poppins', sans-serif;
            --font-family-heading: 'Oleo Script', cursive;
            --transition-speed: 0.7s;
            --transition-ease: cubic-bezier(0.25, 0.8, 0.25, 1);
            --color-dark-bg: #99582a;
            --color-gray-900: #99582a;
            --color-gray-800: #99582a;
            --color-gray-700: #99582a;
            --orbit1-primary: white;
            --orbit1-secondary: #bc6c25;
            --orbit1-border: #f3f3f3;
            --orbit2-primary: gray;
            --orbit2-secondary: #432818;
            --orbit2-border: #da7e37;
            --orbit3-primary: #ffcb69;
            --orbit3-secondary: ;
            --orbit3-border: #351303;

            --edu-light-bg: #2d2d2d;
            --edu-shadow-light: rgba(0, 0, 0, 0.2);
            --edu-shadow-medium: rgba(0, 0, 0, 0.4);
            --edu-shadow-accent: rgba(230, 81, 0, 0.6);
            --edu-border-color: rgba(255, 255, 255, 0.15);

            --links-color-light-brown: #c8a57e;

            --border-radius-lg: 16px;
            --border-radius-md: 8px;
            --error-red: #FF4D4D;
            --success-green: #4CAF50;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            background-color: #000;
            scroll-behavior: smooth;
        }

        html,
        body {
            width: 100%;
            font-family: 'Poppins', sans-serif;
            color: var(--primary-white);
            overflow-x: hidden;
        }

        body {
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        canvas {
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: transparent;
        }

        ::-webkit-scrollbar-thumb {
            background-color: #c6844b;
            border-radius: 20px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background-color: #bb540f;
        }

        .nav-container {
            padding: 0 20px;
            perspective: 800px;
            position: absolute;
            top: 15px;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: var(--secondary-bg);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid var(--primary-glow);
            border-radius: 50px;
            padding: 2px 25px;
            height: 85px;
            max-width: 1450px;
            margin: 0 auto;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.37);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            will-change: transform;
        }

        .nav .logo {
            height: 70px;
            width: auto;
            transition: transform 0.4s ease, filter 0.4s ease;
        }

        .nav .logo:hover {
            transform: scale(1.1) rotateY(15deg);
            filter: drop-shadow(0 0 15px var(--primary-glow));
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links li a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 900;
            position: relative;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: large;
            padding: 5px 0;
            cursor: pointer;
            transform-style: preserve-3d;
            perspective: 600px;
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: var(--primary-glow);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .nav-links li a:hover {
            color: var(--hover-text-color);
            transform: rotateX(15deg) translateY(-3px);
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
            -webkit-text-stroke: 0.6px #bc6c25;
        }

        .nav-links li a:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        .nav-links li a i {
            transition: transform 0.4s ease;
        }

        .nav-links li a:hover i.fa-caret-down {
            transform: rotate(180deg);
        }

        .hire-me-btn {
            height: 45px;
            width: 110px;
            border-radius: 25px;
            border: none;
            background-image: linear-gradient(145deg, #f8f9fa, #e9ecef);
            cursor: pointer;
            font-weight: 700;
            font-size: 16px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: #333;
            transform-style: preserve-3d;
            will-change: transform;
        }

        .hire-me-btn:hover {
            background-image: linear-gradient(145deg, var(--primary-white), var(--primary-glow));
            transform: scale(1.1) rotateZ(-5deg);
            box-shadow: 0 6px 20px rgba(247, 255, 0, 0.4);
        }

        .hire-me-btn:hover i {
            transform: rotate(360deg);
            transition: transform 0.5s ease;
        }

        .mega-dropdown {
            display: none;
            position: absolute;
            top: 130%;
            left: 50%;
            transform: translateX(-50%);
            width: 680px;
            background: var(--secondary-bg);
            backdrop-filter: blur(15px);
            border: 1px solid var(--border-color);
            color: var(--text-color);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            z-index: 1001;
            opacity: 0;
            transform-origin: top center;
            transition: opacity 0.4s ease, top 0.4s ease, transform 0.4s ease;
        }

        .mega-dropdown.show {
            display: grid;
            opacity: 1;
            top: 100%;
            transform: translateX(-50%) rotateX(0deg);
        }

        .service-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 10px;
            transition: background 0.3s, transform 0.3s;
        }

        .service-item i {
            font-size: 24px;
            color: var(--primary-glow);
            margin-top: 5px;
        }

        .service-item h4 {
            margin-bottom: 5px;
            font-size: 16px;
            font-weight: 600;
        }

        .service-item p {
            font-size: 14px;
            opacity: 0.8;
            line-height: 1.4;
        }

        .service-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }

        .view-all {
            grid-column: span 2;
            text-align: right;
            margin-top: 15px;
        }

        .view-all a {
            background: var(--primary-glow);
            color: var(--primary-white);
            font-weight: bolder;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: background 0.3s;
        }

        .view-all a:hover {
            background: var(--primary-white);
            color: var(--primary-glow);
        }

        .menu-toggle {
            display: none;
            width: 40px;
            height: 40px;
            background: transparent;
            border: none;
            cursor: pointer;
            z-index: 1005;
        }

        .menu-toggle .bar {
            width: 25px;
            height: 3px;
            background: var(--text-color);
            border-radius: 2px;
            margin: 5px auto;
            transition: all 0.4s ease-in-out;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .brand-text h1 {
            margin: 0;
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-white);
        }

        .brand-text small {
            display: block;
            font-size: 13px;
            color: var(--secondary-text-color);
        }

        .hero-section {
            position: relative;
            width: 100%;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6rem;
            padding: 2rem;
            padding-top: 100px;
            box-sizing: border-box;
            z-index: 10;
            overflow: hidden;
        }

        .portfolio-section {
            max-width: 800px;
            box-sizing: border-box;
            flex-shrink: 1;
            flex-basis: 50%;
            z-index: 1;
            position: relative;
        }

        .tagline {
            font-size: 1rem;
            border: 1px solid var(--color-gray-light);
            display: inline-block;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            margin-bottom: 1.5rem;
        }

        .name {
            font-size: 3.5rem;
            font-weight: bold;
            margin: 0;
            background-image: linear-gradient(to right, var(--primary-white), var(--color-accent));
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            font-size: 70px;
            line-height: 1.2;
        }

        .description {
            font-size: 1.75rem;
            margin-top: 1rem;
            line-height: 1.5;
        }

        .typewriter-text {
            color: #df7f4b;
            font-weight: bold;
        }

        .typewriter-text::after {
            content: '|';
            margin-left: 5px;
            opacity: 1;
        }

        .pnam {
            font-size: 1.1rem;
            max-width: 500px;
            text-align: start;
            background-image: linear-gradient(to right, var(--primary-white), var(--color-accent));
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }

        .button-container {
            margin-top: 2rem;
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .btn {
            height: 48px;
            padding: 0 1.75rem;
            border-radius: 50px;
            border: 2px solid transparent;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            font-family: inherit;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            transition: all 0.3s ease-in-out;
        }

        .btn i {
            font-size: 1.3rem;
        }

        .btn1 {
            background-color: var(--primary-white);
            color: var(--black);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .btn1 .arrow-icon {
            transition: transform 0.3s ease-in-out;
        }

        .btn1:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px var(--glow-color);
            background-color: #da7f42;
        }

        .btn1:hover .arrow-icon {
            transform: translateX(5px);
        }

        .btn2 {
            background-color: transparent;
            color: var(--primary-white);
            border-color: var(--primary-white);
        }

        .btn2:hover {
            background-color: #bb540f;
            color: var(--black);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
        }

        .profile-container {
            padding: 20px;
            flex-shrink: 0;
            background-color: var(--primary-glow);
            border-radius: 50%;
            z-index: 1;
            position: relative;
        }

        .profile-circle {
            width: 450px;
            height: 450px;
            border-radius: 50%;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            background: transparent;
        }

        .wave {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 3px solid rgba(188, 108, 37, 0.5);
            animation: wave-animation 4s infinite ease-out;
            z-index: 1;
        }

        .wave:nth-child(2) {
            animation-delay: -1s;
        }

        .wave:nth-child(3) {
            animation-delay: -2s;
        }

        @keyframes wave-animation {
            0% {
                transform: scale(1);
                opacity: 0.8;
                border-color: var(--primary-white);
            }

            100% {
                transform: scale(1.4);
                opacity: 0;
                border-color: rgba(230, 81, 0, 0);
            }
        }

        .profile-image {
            width: 95%;
            height: 95%;
            object-fit: cover;
            object-position: center;
            position: relative;
            z-index: 2;
            border-radius: 50%;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
        }

        .star {
            position: absolute;
            background-color: var(--primary-white);
            border-radius: 50%;
            opacity: 0.8;
            z-index: 1;
            animation: twinkle 5s infinite ease-in-out;
        }

        @keyframes twinkle {

            0%,
            100% {
                transform: scale(0.8);
                opacity: 0.5;
            }

            50% {
                transform: scale(1.1);
                opacity: 1;
            }
        }

        body.lock-scroll {
            overflow: hidden;
        }

        .nav-links .divider,
        .nav-links .mobile-hire {
            display: none;
        }

        .marquee-section {
            width: 100%;
            background-color: var(--black);
            padding: 2rem 0;
            overflow: hidden;
        }

        .marquee-wrapper {
            display: flex;
            width: fit-content;
        }

        .marquee-content {
            display: flex;
            animation: scroll-left 40s linear infinite;
        }

        .marquee-text {
            font-size: 140px;
            font-weight: 800;
            font-family: 'Oleo Script', cursive;
            background-image: linear-gradient(to right, var(--primary-white), var(--color-accent));
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            letter-spacing: 0.02em;
            white-space: nowrap;
            padding: 0 2rem;
            position: relative;
        }

        .marquee-text::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: 200% 100%;
        }

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

            100% {
                background-position: 200% 0;
            }
        }

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

            100% {
                transform: translateX(-50%);
            }
        }

        .about-section {
            padding: 6rem 2rem;
            background-color: var(--black);
            overflow: hidden;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .about-image-wrapper {
            flex: 1;
            max-width: 500px;
            position: relative;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-15px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .about-image-placeholder {
            width: 100%;
            aspect-ratio: 1 / 1;
            background-color: #c47c3d;
            border-radius: 20px;
            border: 4px solid var(--primary-white);
            overflow: hidden;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            transform-style: preserve-3d;
        }

        .about-image-placeholder:hover {
            transform: perspective(1000px) rotateY(10deg) rotateX(5deg) scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px var(--primary-glow);
        }

        .about-image-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .floating-orb {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
            filter: blur(5px);
            z-index: -1;
            animation: float-orb 10s ease-in-out infinite;
        }

        .orb1 {
            width: 80px;
            height: 80px;
            top: 10%;
            left: -20px;
            animation-duration: 8s;
            animation-delay: 0s;
        }

        .orb2 {
            width: 50px;
            height: 50px;
            bottom: 20%;
            right: -10px;
            animation-duration: 12s;
            animation-delay: -3s;
        }

        .orb3 {
            width: 60px;
            height: 60px;
            bottom: -15px;
            left: 30%;
            animation-duration: 10s;
            animation-delay: -5s;
        }

        @keyframes float-orb {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.7;
            }

            25% {
                transform: translate(15px, 20px) scale(1.1);
                opacity: 0.9;
            }

            50% {
                transform: translate(-10px, -15px) scale(0.9);
                opacity: 1;
            }

            75% {
                transform: translate(10px, -20px) scale(1.05);
                opacity: 0.8;
            }
        }

        .projects-badge {
            position: absolute;
            top: 0;
            left: 0;
            transform: translate(-30%, -30%);
            width: 170px;
            height: 170px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--primary-white);
            padding: 20px;
            background-color: var(--card-background);
            z-index: 10;
        }

        .projects-badge::before {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            border-radius: 50%;
            background: conic-gradient(from 180deg at 50% 50%, #bc6c25, #b9b4b0, #944806, #e6b69f);
            z-index: -1;
            animation: spin 4s linear infinite;
        }

        @keyframes spin {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .badge-number {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1;
        }

        .badge-text {
            font-size: 0.9rem;
            font-weight: 600;
            margin-top: 5px;
        }

        .about-content {
            flex: 1;
            max-width: 600px;
        }

        .about-tag {
            display: inline-block;
            padding: 0.3rem 1rem;
            border: 1px solid var(--primary-glow);
            box-shadow: 0 0 15px rgba(188, 108, 37, 0.5);
            border-radius: 50px;
            background-color: rgba(30, 30, 30, 0.8);
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            font-weight: 500;
            font-family: 'Roboto', sans-serif;
            transition: box-shadow 0.3s ease;
        }

        .about-tag:hover {
            box-shadow: 0 0 25px var(--primary-glow);
        }

        .about-content h2 {
            font-size: 3rem;
            font-weight: 700;
            font-family: 'Roboto', sans-serif;
            background-image: linear-gradient(to right, #ffffffb9, var(--color-accent));
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 0.8rem;
            line-height: 1.2;
        }

        .since-text {
            color: #e6510092;
        }

        .about-content p {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--secondary-text-color);
            margin-bottom: 1.5rem;
        }

        .about-section .about-tag,
        .about-section .about-content h2,
        .about-section .about-content p,
        .about-section .learn-more-btn {
            opacity: 0;
            transform: translateY(30px);
            visibility: hidden;
        }

        .learn-more-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            background-color: var(--primary-white);
            color: var(--bg-color);
            font-weight: 600;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .learn-more-btn i {
            transition: transform 0.3s ease;
        }

        .learn-more-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px var(--primary-glow);
        }

        .learn-more-btn:hover i {
            transform: translateX(5px);
        }

        .container {
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .process-section {
            padding: 100px 0;
            position: relative;
            background-color: var(--bg-color);
        }

        .section-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-header .badge {
            display: inline-block;
            padding: 8px 20px;
            border: 1px solid var(--badge-border);
            background-color: var(--badge-bg);
            border-radius: 20px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 16px;
            backdrop-filter: blur(5px);
        }

        .section-header h2 {
            font-size: clamp(2.5rem, 5vw, 3.75rem);
            font-weight: 700;
            background-image: linear-gradient(to right, var(--primary-white), var(--color-accent) 80%);
            background-size: 200% auto;
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 16px;
            animation: text-gradient-animation 5s linear infinite;
        }

        @keyframes text-gradient-animation {
            to {
                background-position: 200% center;
            }
        }

        .section-header p {
            font-size: 18px;
            color: var(--secondary-text);
            max-width: 600px;
            margin: 0 auto;
        }

        .process-stepper-container {
            position: relative;
            width: 100%;
            margin-bottom: 70px;
        }

        .stepper-line {
            position: absolute;
            top: 18px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: var(--border-color);
            z-index: 1;
        }

        .stepper-line-progress {
            position: absolute;
            top: 18px;
            left: 0;
            height: 2px;
            background-image: var(--gradient-1);
            width: 0;
            z-index: 2;
            transition: width var(--transition-speed-med) var(--easing-func), background-image var(--transition-speed-med) ease;
        }

        .process-stepper {
            display: flex;
            justify-content: space-between;
            position: relative;
            z-index: 3;
        }

        .stepper-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            cursor: pointer;
            user-select: none;
            flex: 1;
            padding: 0 10px;
            transition: transform var(--transition-speed-fast) ease;
        }

        .stepper-item:hover {
            transform: translateY(-5px);
        }

        .step-circle {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 2px solid var(--border-color);
            background-color: var(--bg-color);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
            font-weight: 600;
            position: relative;
            transition: all var(--transition-speed-med) ease;
        }

        .timer-ring {
            position: absolute;
            width: 44px;
            height: 44px;
            top: -6px;
            left: -6px;
            transform: rotate(-90deg);
        }

        .timer-ring circle {
            fill: none;
            stroke-width: 3;
            stroke: var(--primary-white);
            stroke-linecap: round;
            opacity: 0;
            transition: all var(--transition-speed-med) ease;
        }

        .stepper-item.active .timer-ring circle {
            opacity: 1;
            animation: timer-animation 3s linear forwards;
        }

        @keyframes timer-animation {
            from {
                stroke-dashoffset: 125.6;
            }

            to {
                stroke-dashoffset: 0;
            }
        }

        .step-name {
            font-size: 14px;
            font-weight: 500;
            color: var(--secondary-text);
            transition: color var(--transition-speed-med) ease;
        }

        .stepper-item.active {
            transform: translateY(-5px) scale(1.1);
        }

        .stepper-item.active .step-circle {
            border-color: transparent;
            background-image: var(--gradient-1);
            color: var(--primary-white);
            box-shadow: 0 0 20px 0px rgba(255, 255, 255, 0.2);
        }

        .stepper-item.active .step-name {
            color: var(--primary-white);
            font-weight: 600;
        }

        .process-content-wrapper {
            position: relative;
            min-height: 450px;
            perspective: 1500px;
        }

        .process-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
            align-items: center;
            opacity: 0;
            transform: rotateX(-20deg) translateY(50px);
            transform-origin: top center;
            visibility: hidden;
            transition: all var(--transition-speed-med) var(--easing-func);
        }

        .process-content.is-exiting {
            opacity: 0;
            transform: rotateX(20deg) translateY(-50px);
        }

        .process-content.active {
            opacity: 1;
            visibility: visible;
            transform: rotateX(0) translateY(0);
            transition-delay: 0.2s;
        }

        .content-details {
            display: flex;
            flex-direction: column;
        }

        .content-details .step-heading {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 12px;
        }

        .content-details .step-heading .icon-wrapper {
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background-color: var(--badge-bg);
            border-radius: 8px;
            transition: background-image var(--transition-speed-med) ease;
        }

        .content-details .step-heading .icon-wrapper svg {
            width: 24px;
            height: 24px;
            stroke: var(--primary-text);
        }

        .content-details .step-heading .title-group {
            display: flex;
            flex-direction: column;
        }

        .content-details .step-heading h3 {
            font-size: 14px;
            font-weight: 500;
            color: var(--secondary-text);
            letter-spacing: 0.5px;
        }

        .content-details .step-heading h2 {
            font-size: 40px;
            font-weight: 600;
            color: var(--primary-white);
            line-height: 1.2;
        }

        .content-details>p {
            font-size: 16px;
            color: var(--secondary-text);
            margin-bottom: 24px;
        }

        .content-details ul {
            list-style: none;
        }

        .content-details ul li {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            color: var(--primary-text);
            opacity: 0;
            transform: translateX(-20px);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        .content-details ul li::before {
            content: '✓';
            margin-right: 12px;
            color: var(--secondary-text);
            font-weight: 600;
        }

        .process-content.active .content-details>* {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.5s ease forwards;
        }

        .process-content.active .content-details .step-heading {
            animation-delay: 0.3s;
        }

        .process-content.active .content-details>p {
            animation-delay: 0.4s;
        }

        .process-content.active .content-details ul {
            animation-delay: 0.5s;
        }

        .process-content.active .content-details ul li {
            opacity: 1;
            transform: translateX(0);
        }

        .process-content.active .content-details ul li:nth-child(1) {
            transition-delay: 0.6s;
        }

        .process-content.active .content-details ul li:nth-child(2) {
            transition-delay: 0.7s;
        }

        .process-content.active .content-details ul li:nth-child(3) {
            transition-delay: 0.8s;
        }

        .process-content.active .content-details ul li:nth-child(4) {
            transition-delay: 0.9s;
        }

        .process-content.active .content-details ul li:nth-child(5) {
            transition-delay: 1.0s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .content-card {
            position: relative;
            background: var(--card-background);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 320px;
            overflow: hidden;
            backdrop-filter: blur(10px);
            transform: rotateY(15deg) rotateX(5deg);
            transition: transform var(--transition-speed-slow) var(--easing-func), border-image var(--transition-speed-med) ease;
        }

        .process-content.active .content-card {
            transform: rotateY(0) rotateX(0);
            transition-delay: 0.4s;
        }

        .content-card::before,
        .content-card::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            z-index: 0;
            transition: background-color var(--transition-speed-med) ease;
        }

        .content-card::before {
            width: 150px;
            height: 150px;
            top: -50px;
            right: -50px;
        }

        .content-card::after {
            width: 120px;
            height: 120px;
            bottom: -40px;
            left: -40px;
        }

        .content-card>* {
            position: relative;
            z-index: 1;
        }

        .content-card .card-icon-wrapper {
            width: 64px;
            height: 64px;
            background-color: var(--bg-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            border: 1px solid var(--border-color);
        }

        .content-card .card-icon-wrapper svg {
            width: 28px;
            height: 28px;
            stroke: var(--primary-white);
        }

        .content-card h4 {
            font-size: 24px;
            font-weight: 600;
            color: var(--primary-white);
            margin-bottom: 8px;
        }

        .content-card p {
            color: var(--secondary-text);
            max-width: 300px;
        }

        .step-number-box {
            position: absolute;
            bottom: -1px;
            right: -1px;
            border-radius: 0 0 20px 0;
            padding: 10px 20px;
            background: rgba(12, 12, 14, 0.7);
            backdrop-filter: blur(5px);
            border-left: 1px solid var(--border-color);
            border-top: 1px solid var(--border-color);
            opacity: 0;
            transform: translate(20px, 20px);
            transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
        }

        .process-content.active .step-number-box {
            opacity: 1;
            transform: translate(0, 0);
        }

        .step-number-box p {
            font-size: 56px;
            font-weight: 700;
            line-height: 1;
            color: transparent;
            -webkit-background-clip: text;
            background-clip: text;
            transition: background-image var(--transition-speed-med) ease;
        }

        .process-section[data-active-step="1"] .stepper-line-progress,
        .process-section[data-active-step="1"] .stepper-item.active .step-circle,
        .process-section[data-active-step="1"] .content-details .step-heading .icon-wrapper,
        .process-section[data-active-step="1"] .step-number-box p {
            background-image: var(--gradient-1);
        }

        .process-section[data-active-step="1"] .content-card {
            border-image: var(--gradient-1) 1;
        }

        .process-section[data-active-step="1"] .content-card::before,
        .process-section[data-active-step="1"] .content-card::after {
            background-color: #a855f7;
        }

        .process-section[data-active-step="2"] .stepper-line-progress,
        .process-section[data-active-step="2"] .stepper-item.active .step-circle,
        .process-section[data-active-step="2"] .content-details .step-heading .icon-wrapper,
        .process-section[data-active-step="2"] .step-number-box p {
            background-image: var(--gradient-2);
        }

        .process-section[data-active-step="2"] .content-card {
            border-image: var(--gradient-2) 1;
        }

        .process-section[data-active-step="2"] .content-card::before,
        .process-section[data-active-step="2"] .content-card::after {
            background-color: #38bdf8;
        }

        .process-section[data-active-step="3"] .stepper-line-progress,
        .process-section[data-active-step="3"] .stepper-item.active .step-circle,
        .process-section[data-active-step="3"] .content-details .step-heading .icon-wrapper,
        .process-section[data-active-step="3"] .step-number-box p {
            background-image: var(--gradient-3);
        }

        .process-section[data-active-step="3"] .content-card {
            border-image: var(--gradient-3) 1;
        }

        .process-section[data-active-step="3"] .content-card::before,
        .process-section[data-active-step="3"] .content-card::after {
            background-color: #4ade80;
        }

        .process-section[data-active-step="4"] .stepper-line-progress,
        .process-section[data-active-step="4"] .stepper-item.active .step-circle,
        .process-section[data-active-step="4"] .content-details .step-heading .icon-wrapper,
        .process-section[data-active-step="4"] .step-number-box p {
            background-image: var(--gradient-4);
        }

        .process-section[data-active-step="4"] .content-card {
            border-image: var(--gradient-4) 1;
        }

        .process-section[data-active-step="4"] .content-card::before,
        .process-section[data-active-step="4"] .content-card::after {
            background-color: #fb923c;
        }

        .process-section[data-active-step="5"] .stepper-line-progress,
        .process-section[data-active-step="5"] .stepper-item.active .step-circle,
        .process-section[data-active-step="5"] .content-details .step-heading .icon-wrapper,
        .process-section[data-active-step="5"] .step-number-box p {
            background-image: var(--gradient-5);
        }

        .process-section[data-active-step="5"] .content-card {
            border-image: var(--gradient-5) 1;
        }

        .process-section[data-active-step="5"] .content-card::before,
        .process-section[data-active-step="5"] .content-card::after {
            background-color: #f87171;
        }

        .process-section[data-active-step="6"] .stepper-line-progress,
        .process-section[data-active-step="6"] .stepper-item.active .step-circle,
        .process-section[data-active-step="6"] .content-details .step-heading .icon-wrapper,
        .process-section[data-active-step="6"] .step-number-box p {
            background-image: var(--gradient-6);
        }

        .process-section[data-active-step="6"] .content-card {
            border-image: var(--gradient-6) 1;
        }

        .process-section[data-active-step="6"] .content-card::before,
        .process-section[data-active-step="6"] .content-card::after {
            background-color: #818cf8;
        }


        .fade-in-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .process-section.is-visible .fade-in-up {
            opacity: 1;
            transform: translateY(0);
        }

        .process-section.is-visible .section-header {
            transition-delay: 0.1s;
        }

        .process-section.is-visible .process-stepper-container {
            transition-delay: 0.2s;
        }

        .process-section.is-visible .process-content-wrapper {
            transition-delay: 0.3s;
        }

        .services-section {
            width: 100%;
            padding: 60px 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: var(--color-black);
            background-image: radial-gradient(circle at top, #2a2a2a, var(--color-black) 30%);
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title h2 {
            font-family: var(--font-family-heading);
            font-size: 4.5rem;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .section-title h2 span {
            color: var(--primary-glow);
        }

        .section-title p {
            font-size: 1.1rem;
            color: var(--secondary-text-color);
            max-width: 600px;
        }

        .carousel-container {
            width: 100%;
            max-width: 100vw;
            overflow: hidden;
            -webkit-mask-image: linear-gradient(to right, transparent, var(--black) 10%, var(--black) 90%, transparent);
            mask-image: linear-gradient(to right, transparent, var(--black) 10%, var(--black) 90%, transparent);
        }

        .services-section .carousel-track {
            display: flex;
            will-change: transform;
            animation: scroll linear infinite;
        }

        .carousel-container:hover .carousel-track {
            animation-play-state: paused;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-1 * var(--scroll-width)));
            }
        }

        .service-card {
            flex-shrink: 0;
            width: 320px;
            margin: 0 15px;
            background-color: var(--card-background);
            border: 1px solid var(--carousel-border-color);
            border-radius: 12px;
            padding: 30px;
            transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
                border-color 0.4s ease;
        }

        .service-card:hover {
            border-color: var(--primary-glow);
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px var(--accent-color-glow);
        }

        .card-icon {
            width: 50px;
            height: 50px;
            background-color: var(--primary-glow);
            border-radius: 8px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
            transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.4s ease;
        }

        .service-card:hover .card-icon {
            transform: scale(1.1) rotate(-5deg);
            box-shadow: 0 0 15px var(--accent-color-glow);
        }

        .card-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--primary-white);
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--text-color);
            transition: color 0.3s ease;
        }

        .service-card:hover h3 {
            color: var(--primary-glow);
        }

        .service-card p {
            font-size: 1rem;
            color: var(--secondary-text-color);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .service-card a {
            background-color: var(--primary-glow);
            width: 140px;
            padding-left: 15px;
            border-radius: 25px;
            height: 40px;
            color: var(--primary-white);
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s ease;
        }

        .service-card a:hover {
            color: var(--primary-glow);
            font-weight: bolder;
            background-color: var(--primary-white);
        }

        .service-card a svg {
            transition: transform 0.3s ease;
        }

        .service-card a:hover svg {
            transform: translateX(4px);
        }

        .launch-section {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(188, 108, 37, 0.15));
            border-radius: 24px;
            padding: 3rem;
            width: 100%;
            max-width: 1280px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
            animation: fadeIn 1s ease-in-out;
            margin: 2rem auto;
        }

        .launch-section .circle {
            position: absolute;
            border-radius: 50%;
            background: var(--accent);
            filter: blur(100px);
            opacity: 0.2;
            animation: float 10s infinite ease-in-out alternate;
            z-index: 0;
        }

        .launch-section .circle.one {
            width: 300px;
            height: 300px;
            top: -100px;
            left: -100px;
        }

        .launch-section .circle.two {
            width: 250px;
            height: 250px;
            bottom: -120px;
            right: -100px;
        }

        .launch-section .hero-container {
            display: grid;
            grid-template-columns: 50% 1fr;
            gap: 3rem;
            align-items: center;
            width: 100%;
            z-index: 1;
            position: relative;
        }

        .launch-section .hero-content .badge {
            display: inline-block;
            background-color: rgba(255, 255, 255, 0.1);
            padding: 0.4rem 1rem;
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
            letter-spacing: 1px;
            color: var(--accent);
            animation: fadeSlideDown 1s ease-in-out;
        }

        .launch-section .hero-content h1 {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.2rem;
            background: linear-gradient(90deg, var(--primary-white), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: fadeSlideLeft 1.2s ease-in-out;
        }

        .launch-section .hero-content p {
            font-size: 1.05rem;
            line-height: 1.6;
            color: var(--gray);
            margin-bottom: 2rem;
            max-width: 500px;
            animation: fadeSlideLeft 1.5s ease-in-out;
        }

        .launch-section .hero-content .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: var(--accent);
            color: var(--primary-white);
            padding: 0.9rem 2rem;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            position: relative;
            overflow: hidden;
            z-index: 1;
            transition: all 0.3s ease;
            animation: fadeSlideUp 1.8s ease-in-out;
        }

        .launch-section .hero-content .cta-button::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.4s;
            z-index: -1;
        }

        .launch-section .hero-content .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(188, 108, 37, 0.5);
        }

        .launch-section .hero-content .cta-button:hover::before {
            left: 100%;
        }

        .launch-section .hero-image-wrapper {
            position: relative;
            width: 100%;
            aspect-ratio: 16/9;
            border-radius: 20px;
            overflow: hidden;
            animation: fadeSlideRight 1.3s ease-in-out;
            background: var(--black);
        }

        .launch-section .slideshow {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .launch-section .slideshow img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            background: var(--black);
            border-radius: 20px;
            opacity: 0;
            animation: fadeSlideshow 20s infinite;
        }

        .launch-section .slideshow img:nth-child(1) {
            animation-delay: 0s;
        }

        .launch-section .slideshow img:nth-child(2) {
            animation-delay: 5s;
        }

        .launch-section .slideshow img:nth-child(3) {
            animation-delay: 10s;
        }

        .launch-section .slideshow img:nth-child(4) {
            animation-delay: 15s;
        }

        .launch-section .slideshow img:nth-child(5) {
            animation-delay: 20s;
        }

        @keyframes fadeSlideshow {
            0% {
                opacity: 0;
            }

            5% {
                opacity: 1;
            }

            20% {
                opacity: 1;
            }

            25% {
                opacity: 0;
            }

            100% {
                opacity: 0;
            }
        }

        .launch-section .cta-button .button-icon svg {
            transition: transform 0.3s ease;
        }

        .launch-section .cta-button:hover .button-icon svg {
            transform: translateX(5px) rotate(10deg);
        }

        .projects-section {
            background-color: var(--black);
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
            margin: 0 auto;
            padding: 60px 20px;
        }

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

        .projects-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .pill-heading {
            display: inline-block;
            padding: 8px 20px;
            border-radius: 999px;
            background-color: var(--color-gray-medium);
            color: var(--color-white);
            font-weight: 500;
            font-size: 14px;
            margin-bottom: 24px;
            border: 1px solid var(--color-accent);
        }

        .projects-header h2 {
            font-family: var(--font-family-heading);
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            background-image: linear-gradient(to right, var(--color-white), var(--color-accent));
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .projects-header p {
            font-size: 16px;
            max-width: 650px;
            line-height: 1.7;
            color: var(--color-gray-light);
        }

        .carousel-wrapper {
            position: relative;
            width: 100%;
            height: 580px;
            user-select: none;
        }

        .carousel-wrapper .carousel-track {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: none;
        }

        .card-wrapper {
            position: absolute;
            top: 10px;
            width: 100%;
            max-width: 28rem;
            transition: transform var(--transition-speed) var(--transition-ease), opacity var(--transition-speed) var(--transition-ease);
            will-change: transform, opacity;
        }

        .card-wrapper.active {
            transform: translateX(0) scale(1);
            opacity: 1;
            z-index: 20;
        }

        .card-wrapper.next {
            transform: translateX(45%) scale(0.9);
            opacity: 0.5;
            z-index: 10;
        }

        .card-wrapper.prev {
            transform: translateX(-45%) scale(0.9);
            opacity: 0.5;
            z-index: 10;
        }

        .card-wrapper.hidden-card {
            transform: scale(0.8);
            opacity: 0;
            z-index: 5;
        }

        .project-card {
            overflow: hidden;
            background-color: var(--color-gray-dark);
            height: 520px;
            border: 1px solid var(--color-gray-medium);
            box-shadow: 0 10px 30px var(--shadow-color);
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .card-wrapper.active .project-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px var(--shadow-color), 0 0 25px var(--glow-color);
        }

        .card-image-placeholder {
            position: relative;
            aspect-ratio: 16 / 9;
            background-color: var(--color-gray-medium);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

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

        .card-wrapper.active .project-card:hover img {
            transform: scale(1.05);
        }

        .image-label {
            position: absolute;
            top: 16px;
            left: 16px;
            z-index: 2;
            background: rgba(18, 18, 18, 0.7);
            backdrop-filter: blur(8px);
            color: var(--color-white);
            padding: 6px 14px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 500;
            border: 1px solid var(--color-gray-medium);
        }

        .card-content {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .card-content>* {
            opacity: 0;
        }

        .card-wrapper.active .card-content>* {
            animation: contentFadeInUp 0.6s ease forwards;
        }

        .card-wrapper.active .card-content .card-title {
            animation-delay: 0.3s;
        }

        .card-wrapper.active .card-content .card-description {
            animation-delay: 0.4s;
        }

        .card-wrapper.active .card-content .card-tags {
            animation-delay: 0.5s;
        }

        .card-wrapper.active .card-content .view-project-btn {
            animation-delay: 0.6s;
        }

        .card-title {
            color: var(--color-white);
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }

        .card-wrapper.active .project-card:hover .card-title {
            color: var(--color-accent-dark);
        }

        .card-description {
            font-size: 14px;
            line-height: 1.6;
            flex-grow: 1;
            margin-bottom: 24px;
        }

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

        .tag {
            background-color: var(--color-gray-medium);
            border: 1px solid transparent;
            color: var(--color-gray-light);
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .card-wrapper.active .project-card:hover .tag {
            border-color: var(--color-accent-dark);
            color: var(--color-white);
        }

        .view-project-btn {
            background-color: transparent;
            color: var(--color-white);
            border: 2px solid var(--color-gray-medium);
            border-radius: 25px;
            padding: 12px 16px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            transition: background-color 0.3s ease, border-color 0.3s ease;
            text-decoration: none;
        }

        .card-wrapper.active .project-card:hover .view-project-btn {
            background-color: var(--color-accent-dark);
            border-color: var(--color-accent-dark);
        }

        .view-project-btn .arrow-icon {
            transition: transform 0.3s ease;
        }

        .card-wrapper.active .project-card:hover .view-project-btn .arrow-icon {
            transform: translateX(5px);
        }

        .carousel-nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 30;
            background-color: var(--primary-white);
            border: 1px solid var(--color-gray-medium);
            border-radius: 50%;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--color-white);
            transition: all 0.3s ease;
        }

        .carousel-nav-button:hover {
            background-color: var(--color-accent);
            border-color: var(--color-accent);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-nav-button.prev-btn {
            left: 0px;
        }

        .carousel-nav-button.next-btn {
            right: 0px;
        }

        .carousel-nav-button svg {
            stroke: var(--color-accent);
            transition: stroke 0.3s ease;
        }

        .carousel-nav-button:hover svg {
            stroke: var(--color-white);
        }

        .carousel-dots {
            position: absolute;
            bottom: 1.5rem;
            left: 0;
            right: 0;
            z-index: 30;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.75rem;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: var(--color-gray-medium);
            cursor: pointer;
            transition: all 0.4s var(--transition-ease);
        }

        .dot:hover {
            background-color: var(--color-gray-light);
        }

        .dot.active {
            background-color: var(--color-accent);
            transform: scale(1.2);
        }

        .view-all-btn {
            background-color: var(--color-white);
            color: var(--color-black);
            border: 3px solid var(--color-accent);
            border-radius: 999px;
            padding: 16px 32px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
            margin-top: 48px;
        }

        .view-all-btn:hover {
            background-color: transparent;
            color: var(--color-white);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px var(--glow-color);
        }

        .view-all-btn svg {
            transition: transform 0.3s ease;
        }

        .view-all-btn:hover svg {
            transform: translateX(5px);
        }

        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(18, 18, 18, 0.85);
            backdrop-filter: blur(8px);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            padding: 20px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s var(--transition-ease);
        }

        .modal-overlay.is-open {
            opacity: 1;
            pointer-events: auto;
        }

        .modal-content {
            background-color: var(--color-gray-dark);
            padding: 32px 40px;
            border-radius: 16px;
            border: 1px solid var(--color-gray-medium);
            max-width: 960px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 20px 50px var(--shadow-color);
            transform: scale(0.95) translateY(15px);
            opacity: 0;
            transition: transform 0.4s var(--transition-ease), opacity 0.4s var(--transition-ease);
        }

        .modal-overlay.is-open .modal-content {
            transform: scale(1) translateY(0);
            opacity: 1;
        }

        .modal-close-btn {
            position: absolute;
            top: 10px;
            right: 15px;
            background: none;
            border: none;
            color: var(--color-gray-light);
            font-size: 36px;
            line-height: 1;
            cursor: pointer;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .modal-close-btn:hover {
            color: var(--color-white);
            transform: rotate(90deg);
        }

        #projects-modal .modal-content h2 {
            font-family: var(--font-family-heading);
            font-size: clamp(2rem, 4vw, 2.5rem);
            text-align: center;
            background-image: linear-gradient(to right, var(--color-white), var(--color-accent));
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 32px;
        }

        .modal-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .modal-project-item {
            background-color: var(--color-gray-medium);
            border-radius: 12px;
            padding: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            border: 1px solid transparent;
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .modal-project-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
            border-color: var(--color-accent);
        }

        .modal-project-item img {
            width: 100%;
            height: 140px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 16px;
            background-color: var(--color-gray-dark);
        }

        .modal-view-btn {
            background-color: transparent;
            border: 1px solid var(--color-gray-light);
            color: var(--color-gray-light);
            width: 100%;
            padding: 10px 16px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            font-family: var(--font-family-main);
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .modal-project-item:hover .modal-view-btn {
            background-color: var(--color-accent);
            border-color: var(--color-accent);
            color: var(--color-white);
        }

        #skills-showcase {
            background-color: #1c1c1c;
            color: #f3f3f3;
            font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            overflow: hidden;
            padding: 20px 0;
        }

        .skills-main-container {
            width: 100%;
            max-width: 1400px;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 2rem;
            box-sizing: border-box;
            gap: 2rem;
        }

        .background-overlay {
            position: absolute;
            inset: 0;
            opacity: 0.05;
        }

        #orbit-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 650px;
            height: 650px;
            flex-shrink: 0;
        }

        #orbit-center {
            width: 90px;
            height: 90px;
            background-image: linear-gradient(to bottom right, #a46131, #8a4e21);
            border-radius: 9999px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 20;
            position: relative;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        }

        #orbit-center::before,
        #orbit-center::after {
            content: '';
            position: absolute;
            inset: -8px;
            border-radius: 9999px;
            animation: pulse 4s ease-in-out infinite;
            z-index: -1;
        }

        #orbit-center::before {
            background-color: rgba(255, 203, 105, 0.2);
            filter: blur(24px);
        }

        #orbit-center::after {
            background-color: rgba(188, 108, 37, 0.2);
            filter: blur(48px);
            animation-delay: 1s;
        }

        #orbit-center-icon img {
            width: 55px;
            height: 55px;
            object-fit: contain;
        }

        .glowing-orbit-path {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 9999px;
            pointer-events: none;
        }

        .glowing-orbit-path .glow-ring,
        .glowing-orbit-path .border-ring {
            position: absolute;
            inset: 0;
            border-radius: 9999px;
        }

        .glowing-orbit-path .glow-ring {
            animation: pulse 4s ease-in-out infinite;
        }

        .glowing-orbit-path.orbit-1 .glow-ring {
            background: radial-gradient(circle, transparent 30%, var(--orbit1-secondary) 70%, var(--orbit1-primary) 100%);
            box-shadow: 0 0 60px var(--orbit1-primary), inset 0 0 60px var(--orbit1-secondary);
        }

        .glowing-orbit-path.orbit-1 .border-ring {
            border: 1px solid var(--orbit1-border);
            box-shadow: inset 0 0 20px var(--orbit1-secondary);
        }

        .glowing-orbit-path.orbit-2 .glow-ring {
            background: radial-gradient(circle, transparent 30%, var(--orbit2-secondary) 70%, var(--orbit2-primary) 100%);
            box-shadow: 0 0 60px var(--orbit2-primary), inset 0 0 60px var(--orbit2-secondary);
            animation-delay: 1s;
        }

        .glowing-orbit-path.orbit-2 .border-ring {
            border: 1px solid var(--orbit2-border);
            box-shadow: inset 0 0 20px var(--orbit2-secondary);
        }

        .glowing-orbit-path.orbit-3 .glow-ring {
            background: radial-gradient(circle, transparent 30%, var(--orbit3-secondary) 70%, var(--orbit3-primary) 100%);
            box-shadow: 0 0 60px var(--orbit3-primary), inset 0 0 60px var(--orbit3-secondary);
            animation-delay: 2s;
        }

        .glowing-orbit-path.orbit-3 .border-ring {
            border: 1px solid var(--orbit3-border);
            box-shadow: inset 0 0 20px var(--orbit3-secondary);
        }

        .skill-wrapper {
            position: absolute;
            top: 50%;
            left: 50%;
            transition: all 0.3s ease-out;
            z-index: 10;
        }

        .skill-icon-container {
            position: relative;
            width: 60px;
            height: 60px;
            padding: 0.5rem;
            background-color: rgba(31, 41, 55, 0.9);
            backdrop-filter: blur(4px);
            border-radius: 9999px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease-out;
            cursor: pointer;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .skill-wrapper.is-hovered {
            z-index: 30 !important;
        }

        .skill-wrapper.is-hovered .skill-icon-container {
            transform: scale(1.25);
        }

        .skill-wrapper.is-hovered .skill-icon-container.orbit-1-shadow {
            box-shadow: 0 0 30px var(--orbit1-primary), 0 0 60px var(--orbit1-secondary);
        }

        .skill-wrapper.is-hovered .skill-icon-container.orbit-2-shadow {
            box-shadow: 0 0 30px var(--orbit2-primary), 0 0 60px var(--orbit2-secondary);
        }

        .skill-wrapper.is-hovered .skill-icon-container.orbit-3-shadow {
            box-shadow: 0 0 30px var(--orbit3-primary), 0 0 60px var(--orbit3-secondary);
        }

        .skill-icon-container img {
            width: 100% !important;
            height: 100% !important;
            max-width: none !important;
            display: inline-block !important;
            object-fit: contain !important;
        }

        .skill-label {
            position: absolute;
            bottom: -2.25rem;
            left: 50%;
            transform: translateX(-50%);
            padding: 0.25rem 0.5rem;
            background-color: rgba(17, 24, 39, 0.95);
            backdrop-filter: blur(4px);
            border-radius: 0.25rem;
            font-size: 0.75rem;
            color: var(--primary-white);
            white-space: nowrap;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.3s ease-out, transform 0.3s ease-out;
        }

        .skill-wrapper.is-hovered .skill-label {
            opacity: 1;
            transform: translateX(-50%) translateY(4px);
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.7;
            }

            50% {
                transform: scale(1.05);
                opacity: 1;
            }
        }

        #skills-showcase .text-container {
            max-width: 600px;
            text-align: left;
            opacity: 0;
            transform: translateY(30px);
            animation: fade-in-up 1s ease-out 0.5s forwards;
        }

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

        #skills-showcase .text-container p {
            font-size: 1.25rem;
            line-height: 1.7;
            font-weight: 300;
        }

        .skills-heading {
            background-image: linear-gradient(to right, var(--primary-white), var(--color-accent), var(--primary-glow), var(--primary-white));
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            text-align: center;
            font-size: 60px;
            font-family: 'Oleo Script', cursive;
            margin: 0;
            padding: 3rem 1rem 1rem;
            background-size: 300% auto;
            animation: text-gradient-flow 8s linear infinite;
        }

        @keyframes text-gradient-flow {
            0% {
                background-position: 0% center;
            }

            50% {
                background-position: 300% center;
            }

            100% {
                background-position: 0% center;
            }
        }

        .hh {
            background-image: linear-gradient(to right, var(--primary-white), var(--color-accent), var(--primary-glow), var(--primary-white));
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            font-family: 'Roboto', sans-serif;
            font-size: 3.5rem;
        }

        .hhb {
            height: 50px;
            width: 230px;
            border-radius: 25px;
            font-size: 1.1rem;
            color: var(--primary-white);
            background: linear-gradient(135deg, #FF6F00, var(--color-accent));
            border: 2px solid var(--primary-white);
            cursor: pointer;
            font-family: 'Roboto', sans-serif;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.4s ease-in-out;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        }

        .hhb i {
            font-size: 1.3rem;
            transition: transform 0.3s ease;
        }

        .hhb:hover {
            background: transparent;
            transform: scale(1.08);
            box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
            color: var(--color-accent);

        }

        .hhb:hover i {
            transform: rotate(15deg) scale(1.2);
            color: var(--color-accent);
        }

        #modal1 {
            background: linear-gradient(145deg, #2a2a2a, #1c1c1c);
            border: 1px solid #444;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(230, 81, 0, 0.2);
            color: #f3f3f3;
            width: 90%;
            max-width: 500px;
            padding: 2.5rem 2rem;
            margin: auto;
            opacity: 0;
            transform: scale(0.95) translateY(20px);
            transition: opacity 0.4s ease-out, transform 0.4s ease-out, overlay 0.4s ease-out, display 0.4s ease-out;
        }

        #modal1:popover-open {
            opacity: 1;
            transform: scale(1) translateY(0);
        }

        #modal1::backdrop {
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(8px);
            opacity: 0;
            transition: all 0.4s ease-out;
        }

        #modal1:popover-open::backdrop {
            opacity: 1;
        }

        #modal1 .learning-modal-content {
            position: relative;
            text-align: center;
            background: transparent;
            border: none;
            box-shadow: none;
            padding: 0;
            max-width: 100%;
        }

        .learning-modal-close-button {
            position: absolute;
            top: -1.5rem;
            right: -1rem;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            border: 1px solid #555;
            background-color: #333;
            color: #f3f3f3;
            font-size: 1.5rem;
            line-height: 1;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
        }

        .learning-modal-close-button:hover {
            background-color: var(--color-accent);
            transform: scale(1.1) rotate(90deg);
            box-shadow: 0 0 15px rgba(230, 81, 0, 0.7);
        }

        #modal1 .learning-modal-content h2 {
            font-family: 'Oleo Script', cursive;
            font-size: 2.5rem;
            margin-bottom: 2rem;
            margin-top: 0;
            background-image: linear-gradient(to right, var(--primary-white), #FFAB40, var(--color-accent));
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            text-align: center;
        }

        .learning-list {
            list-style: none;
            padding: 0;
            margin: 0;
            text-align: left;
        }

        .learning-list li {
            font-family: 'Roboto', sans-serif;
            font-weight: 300;
            font-size: 1.2rem;
            padding: 0.8rem 0;
            border-bottom: 1px solid #333;
            display: flex;
            align-items: center;
            gap: 15px;
            opacity: 0;
            transform: translateX(-20px);
            animation: list-item-fade-in 0.5s ease-out forwards;
        }

        .learning-list li:last-child {
            border-bottom: none;
        }

        #modal1:popover-open .learning-list li:nth-child(1) {
            animation-delay: 0.2s;
        }

        #modal1:popover-open .learning-list li:nth-child(2) {
            animation-delay: 0.3s;
        }

        #modal1:popover-open .learning-list li:nth-child(3) {
            animation-delay: 0.4s;
        }

        #modal1:popover-open .learning-list li:nth-child(4) {
            animation-delay: 0.5s;
        }

        #modal1:popover-open .learning-list li:nth-child(5) {
            animation-delay: 0.6s;
        }

        #modal1:popover-open .learning-list li:nth-child(6) {
            animation-delay: 0.7s;
        }

        .learning-list li::before {
            content: '⚡️';
            font-size: 1.2rem;
            color: #FFAB40;
            text-shadow: 0 0 10px var(--color-accent);
        }

        @keyframes list-item-fade-in {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes card-fade-in {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes contentFadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeSlideLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeSlideRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeSlideUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeSlideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bl-fade-in-up {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .bl1-section {
            background-color: var(--black);
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
            position: relative;
            padding: 80px 20px;
            margin: 0 auto;
        }

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

        .bl2-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .bl3-pill {
            display: inline-block;
            padding: 8px 20px;
            border-radius: 999px;
            background-color: var(--color-gray-medium);
            color: var(--color-white);
            font-weight: 500;
            font-size: 14px;
            margin-bottom: 24px;
            border: 1px solid var(--color-accent);
        }

        .bl2-header h2 {
            font-family: var(--font-family-heading);
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            background-image: linear-gradient(to right, var(--color-white), var(--color-accent));
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 16px;
        }

        .bl2-header p {
            font-size: 16px;
            max-width: 650px;
            line-height: 1.7;
            color: var(--color-gray-light);
        }

        .bl4-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            width: 100%;
        }

        .bl10-nav-button,
        .bl11-dots {
            display: none;
        }

        .bl5-card {
            overflow: hidden;
            background-color: var(--color-gray-dark);
            border: 1px solid var(--color-gray-medium);
            box-shadow: 0 10px 30px var(--shadow-color);
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            opacity: 0;
            transform: translateY(20px);
            animation: bl-fade-in-up 0.6s ease forwards;
            height: 520px;
        }

        .bl5-card:nth-child(1) {
            animation-delay: 0.2s;
        }

        .bl5-card:nth-child(2) {
            animation-delay: 0.4s;
        }

        .bl5-card:nth-child(3) {
            animation-delay: 0.6s;
        }

        .bl5-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px var(--shadow-color), 0 0 25px var(--glow-color);
        }

        .bl6-image-wrapper {
            position: relative;
            aspect-ratio: 16 / 9;
            background-color: var(--color-gray-medium);
            overflow: hidden;
        }

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

        .bl5-card:hover img {
            transform: scale(1.05);
        }

        .bl7-image-label {
            position: absolute;
            top: 16px;
            left: 16px;
            z-index: 2;
            background: rgba(18, 18, 18, 0.7);
            backdrop-filter: blur(8px);
            color: var(--color-white);
            padding: 6px 14px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 500;
            border: 1px solid var(--color-gray-medium);
        }

        .bl8-content {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .bl9-title {
            color: var(--color-white);
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 12px;
            transition: color 0.3s ease;
        }

        .bl5-card:hover .bl9-title {
            color: var(--accent);
        }

        .bl9-description {
            font-size: 14px;
            line-height: 1.6;
            flex-grow: 1;
            margin-bottom: 24px;
        }

        .bl9-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 24px;
        }

        .bl9-tag-item {
            background-color: var(--color-gray-medium);
            border: 1px solid transparent;
            color: var(--color-gray-light);
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .bl5-card:hover .bl9-tag-item {
            border-color: var(--accent);
            color: var(--color-white);
        }

        .bl9-view-btn {
            background-color: transparent;
            color: var(--color-white);
            border: 2px solid var(--color-gray-medium);
            border-radius: 25px;
            padding: 12px 16px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            transition: background-color 0.3s ease, border-color 0.3s ease;
            text-decoration: none;
            margin-top: auto;
        }

        .bl5-card:hover .bl9-view-btn {
            background-color: var(--accent);
            border-color: var(--accent);
        }

        .bl9-view-btn .arrow-icon {
            transition: transform 0.3s ease;
        }

        .bl5-card:hover .bl9-view-btn .arrow-icon {
            transform: translateX(5px);
        }

        .education-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
            border-radius: 15px;
            box-shadow: 0 15px 40px var(--edu-shadow-medium);
            max-width: 100%;
            height: 100%;
        }

        .education-section .container {
            width: 90%;
            margin: 0 auto;
        }

        .education-section .section-title {
            font-family: 'Oleo Script', cursive;
            font-size: 3.5em;
            font-weight: 700;
            background-image: linear-gradient(to right, var(--primary-white), var(--color-accent));
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            text-align: center;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 20px;
            letter-spacing: 1px;
        }

        .education-section .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 90px;
            height: 4px;
            background-color: var(--color-accent);
            border-radius: 2px;
            box-shadow: 0 0 10px var(--color-accent);
        }

        .education-accordion {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .accordion-item {
            background: linear-gradient(to right, #232526, #414345);
            color: var(--primary-white);
            border: 1px solid var(--edu-border-color);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 20px var(--edu-shadow-light);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
        }

        .accordion-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px var(--edu-shadow-medium);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .accordion-item.active {
            box-shadow: 0 12px 35px var(--edu-shadow-medium), 0 0 0 3px var(--edu-shadow-accent);
            transform: translateY(-8px);
            border-color: var(--color-accent);
        }

        .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 22px 30px;
            cursor: pointer;
            background: linear-gradient(to right, #232526, #414345);
            border-bottom: 1px solid transparent;
            transition: background-color 0.3s ease, color 0.3s ease, border-bottom-color 0.3s ease, transform 0.2s ease;
        }

        .accordion-header:hover {
            background-color: var(--edu-light-bg);
            transform: scale(0.99);
        }

        .accordion-item.active .accordion-header {
            background: var(--edu-light-bg);
            border-bottom-color: var(--edu-border-color);
            color: var(--color-accent);
            transform: scale(1);
        }

        .accordion-header h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.6em;
            color: var(--primary-white);
            font-weight: 600;
            margin: 0;
            flex-grow: 1;
            transition: color 0.3s ease;
        }

        .accordion-item.active .accordion-header h3 {
            color: var(--color-accent);
        }

        .accordion-icon {
            font-size: 1.3em;
            color: var(--secondary-text-color);
            margin-left: 20px;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .accordion-item.active .accordion-icon {
            transform: rotate(180deg);
            color: var(--color-accent);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            padding: 0 30px;
            opacity: 0;
            transform: translateY(-15px);
            pointer-events: none;
            visibility: hidden;
            transition: opacity 0.3s ease-out,
                transform 0.3s ease-out,
                max-height 0.4s cubic-bezier(0.65, 0.05, 0.36, 1) 0.2s,
                padding 0.4s cubic-bezier(0.65, 0.05, 0.36, 1) 0.2s,
                visibility 0s linear 0.5s;
        }

        .accordion-item.active .accordion-content {
            max-height: 1000px;
            padding: 25px 30px;
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
            visibility: visible;
            transition: max-height 0.6s cubic-bezier(0.65, 0.05, 0.36, 1),
                padding 0.6s cubic-bezier(0.65, 0.05, 0.36, 1),
                opacity 0.5s ease-out 0.1s,
                transform 0.5s ease-out 0.1s,
                visibility 0s linear 0s;
        }

        .content-wrapper {
            display: flex;
            align-items: flex-start;
            gap: 30px;
            color: var(--secondary-text-color);
            font-size: 1.05em;
            line-height: 1.7;
        }

        .content-wrapper img {
            width: 140px;
            height: 140px;
            object-fit: cover;
            border-radius: 10px;
            flex-shrink: 0;
            border: 2px solid var(--edu-border-color);
            box-shadow: 0 3px 15px var(--edu-shadow-light);
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .accordion-item.active .content-wrapper img {
            border-color: var(--color-accent);
            box-shadow: 0 3px 20px var(--edu-shadow-accent);
        }

        .text-content {
            color: var(--primary-white);
            flex-grow: 1;
        }

        .text-content p {
            margin-bottom: 8px;
        }

        .text-content p strong {
            color: var(--color-accent);
            font-weight: 700;
        }

        .text-content ul {
            list-style-type: disc;
            color: var(--secondary-text-color);
            margin-left: 25px;
            padding-left: 0;
        }

        .text-content ul li {
            margin-bottom: 4px;
            color: var(--secondary-text-color);
        }

        .accordion-item.active .text-content ul li {
            color: var(--primary-white);
        }

        .socials-section-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 80px 20px;
            background-color: var(--bg-color);
            width: 100%;
        }

        .socials-container {
            max-width: 1200px;
            width: 100%;
            text-align: center;
            color: var(--color-white);
            background-color: var(--color-black);
            background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
            border-radius: 15px;
            padding: 40px 20px;
            height: 100%;

        }

        .socials-container .header {
            margin-bottom: 50px;
        }

        .socials-container .connect-tag {
            display: inline-block;
            border: 1px solid var(--color-gray-medium);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.9rem;
            color: var(--secondary-text-color);
            margin-bottom: 20px;
        }

        .socials-container .header .connect-tag {
            border: 2px solid var(--color-accent);
        }

        .socials-container .header h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
            font-family: 'Oleo Script', cursive;
        }

        .socials-container .header h1 .highlight {
            color: var(--color-accent);
        }

        .socials-container .header p {
            font-size: 1.1rem;
            color: var(--secondary-text-color);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .socials-container .socials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .socials-container .social-card {
            background-color: var(--card-background);
            border: 1px solid var(--color-gray-medium);
            border-radius: 16px;
            padding: 30px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--color-white);
            transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;

            opacity: 0;
            transform: translateY(20px);
        }

        .socials-container .social-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .socials-container .social-card:hover {
            transform: translateY(-8px);
            border-color: var(--color-accent);
            box-shadow: 0 10px 30px rgba(230, 81, 0, 0.1);
        }

        .socials-container .social-card .icon-wrapper {
            width: 70px;
            height: 70px;
            margin-bottom: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .socials-container .social-card .icon-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .socials-container .social-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .socials-container .social-card p {
            color: var(--links-color-light-brown);
            font-size: 1rem;
        }

        @media (max-width: 1100px) {
            .socials-container .socials-grid {
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .socials-container .header h1 {
                font-size: 2.5rem;
            }

            .socials-container .header p {
                font-size: 1rem;
            }

            .socials-container .socials-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 540px) {
            .socials-container {
                padding: 20px 15px;
            }

            .socials-container .header h1 {
                font-size: 2rem;
            }

            .socials-container .socials-grid {
                grid-template-columns: 1fr;
            }
        }

        .contact-section-final {
            font-family: 'Inter', sans-serif;
            background-color: var(--color-black);
            color: var(--primary-white);
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 80px 40px;
            box-sizing: border-box;
            width: 100%;
            overflow-x: hidden;
        }

        .contact-section-final .container {
            display: flex;
            background-color: var(--color-black);
            border-radius: var(--border-radius-lg);
            width: 100%;
            max-width: 1600px;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
            overflow: hidden;
            animation: fadeIn 1s ease-out forwards;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .contact-info {
            flex: 1;
            padding: 55px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: var(--color-black);
        }

        .contact-info h1 {
            font-size: 52px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateX(-20px);
            animation: slideInLeft 0.8s ease-out 0.3s forwards;
        }

        .contact-info h1 .highlight {
            color: var(--color-accent);
        }

        .contact-info p.description {
            color: var(--secondary-text);
            font-size: 17px;
            line-height: 1.5;
            margin-bottom: 30px;
            max-width: 500px;
            opacity: 0;
            transform: translateX(-20px);
            animation: slideInLeft 0.8s ease-out 0.5s forwards;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .detail-item {
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 8px;
            border-radius: var(--border-radius-md);
            transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
            opacity: 0;
            transform: translateX(-20px);
            animation: slideInLeft 0.8s ease-out forwards;
        }

        .detail-item:hover {
            background-color: #66422e;
            color: black;
            transform: translateX(5px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .detail-item:nth-child(1) {
            animation-delay: 0.7s;
        }

        .detail-item:nth-child(2) {
            animation-delay: 0.9s;
        }

        .detail-item:nth-child(3) {
            animation-delay: 1.1s;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .detail-item .icon-wrapper {
            background-color: var(--color-gray-medium);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--primary-white);
            font-size: 20px;
            flex-shrink: 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .detail-item .icon-wrapper .fa {
            vertical-align: middle;
        }

        .detail-item .text-content {
            display: flex;
            flex-direction: column;
        }

        .detail-item .text-content .label {
            font-weight: 600;
            font-size: 17px;
            margin-bottom: 3px;
        }

        .detail-item .text-content .value {
            color: var(--secondary-text);
            font-size: 15px;
        }

        .contact-form {
            flex: 1;
            background-color: var(--color-gray-dark);
            border-radius: var(--border-radius-lg);
            padding: 55px 45px;
            display: flex;
            flex-direction: column;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.05);
            box-shadow: 0 4px 60px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transform: translateX(20px);
            animation: slideInRight 0.8s ease-out 0.3s forwards;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(20px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .contact-form h2 {
            font-size: 38px;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .contact-form h2 .highlight {
            color: var(--color-accent);
        }

        .contact-form p.sub-description {
            color: var(--secondary-text);
            font-size: 15px;
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 24px;
            position: relative;
        }

        .form-group label {
            display: flex;
            align-items: center;
            font-weight: 500;
            margin-bottom: 10px;
            color: var(--primary-white);
            font-size: 15px;
        }

        .form-group label .fa {
            margin-right: 10px;
            font-size: 17px;
            color: var(--primary-white);
            vertical-align: middle;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 16px 18px;
            background-color: var(--color-gray-medium);
            border: 1px solid transparent;
            border-radius: var(--border-radius-md);
            color: var(--primary-white);
            font-size: 15px;
            outline: none;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            resize: vertical;
            min-height: 55px;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--secondary-text);
            opacity: 0.7;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: var(--color-accent);
            box-shadow: 0 0 0 2px var(--color-accent);
        }

        .form-group input.invalid,
        .form-group textarea.invalid {
            border-color: var(--error-red);
            box-shadow: 0 0 0 2px rgba(255, 77, 77, 0.3);
        }

        .error-message {
            color: var(--error-red);
            font-size: 12px;
            margin-top: 6px;
            display: none;
            position: absolute;
            bottom: -16px;
            left: 0;
            animation: slideInUp 0.3s ease-out;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        button.submit-btn {
            width: 100%;
            padding: 16px 18px;
            background: linear-gradient(to right, var(--color-accent), #f3d1bf);
            border: none;
            border-radius: var(--border-radius-md);
            color: var(--primary-white);
            font-size: 17px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 25px;
            transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
            outline: none;
        }

        button.submit-btn:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px var(--color-accent);
        }

        button.submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            background: linear-gradient(to right, #8060A0, #B090D0);
            transform: none;
            box-shadow: none;
        }

        button.submit-btn .fa-arrow-right {
            transition: transform 0.3s ease;
        }

        button.submit-btn:hover:not(:disabled) .fa-arrow-right {
            transform: translateX(5px);
        }

        .loading-spinner {
            margin-right: 8px;
        }

        .form-status-message {
            margin-top: 20px;
            padding: 15px;
            border-radius: var(--border-radius-md);
            font-size: 15px;
            text-align: center;
            opacity: 0;
            transform: translateY(10px);
            animation: fadeIn 0.5s ease-out forwards;
        }

        .form-status-message.success {
            background-color: rgba(76, 175, 80, 0.2);
            color: var(--success-green);
            border: 1px solid var(--success-green);
        }

        .form-status-message.error {
            background-color: rgba(255, 77, 77, 0.2);
            color: var(--error-red);
            border: 1px solid var(--error-red);
        }

        @media (max-width: 992px) {
            .contact-section-final .container {
                flex-direction: column;
                max-width: 600px;
                padding: 0;
            }

            .contact-info,
            .contact-form {
                padding: 35px;
            }

            .contact-info {
                border-top-left-radius: var(--border-radius-lg);
                border-top-right-radius: var(--border-radius-lg);
                border-bottom-left-radius: 0;
                border-bottom-right-radius: 0;
            }

            .contact-form {
                border-bottom-left-radius: var(--border-radius-lg);
                border-bottom-right-radius: var(--border-radius-lg);
                border-top-left-radius: 0;
                border-top-right-radius: 0;
            }

            .contact-info h1 {
                animation: slideInTop 0.8s ease-out 0.3s forwards;
            }

            .contact-info p.description {
                animation: slideInTop 0.8s ease-out 0.5s forwards;
            }

            .detail-item {
                animation: slideInTop 0.8s ease-out forwards;
            }

            .contact-form {
                animation: slideInBottom 0.8s ease-out 0.3s forwards;
            }

            @keyframes slideInTop {
                from {
                    opacity: 0;
                    transform: translateY(-20px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            @keyframes slideInBottom {
                from {
                    opacity: 0;
                    transform: translateY(20px);
                }

                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .contact-info h1 {
                font-size: 44px;
                margin-bottom: 18px;
            }

            .contact-info p.description {
                font-size: 16px;
                margin-bottom: 25px;
            }

            .contact-form h2 {
                font-size: 30px;
                margin-bottom: 8px;
            }

            .contact-form p.sub-description {
                margin-bottom: 25px;
            }
        }

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

            .contact-info,
            .contact-form {
                padding: 28px;
            }

            .contact-info h1 {
                font-size: 38px;
                margin-bottom: 16px;
            }

            .contact-info p.description {
                font-size: 15px;
                margin-bottom: 20px;
            }

            .contact-details {
                gap: 18px;
            }

            .detail-item .icon-wrapper {
                width: 42px;
                height: 42px;
                font-size: 17px;
            }

            .detail-item .text-content .label {
                font-size: 15px;
            }

            .detail-item .text-content .value {
                font-size: 13px;
            }

            .contact-form h2 {
                font-size: 26px;
                margin-bottom: 6px;
            }

            .contact-form p.sub-description {
                font-size: 14px;
                margin-bottom: 20px;
            }

            .form-group {
                margin-bottom: 20px;
            }

            .form-group label {
                font-size: 14px;
                margin-bottom: 8px;
            }

            .form-group label .fa {
                font-size: 15px;
                margin-right: 8px;
            }

            .form-group input,
            button.submit-btn,
            .form-group textarea {
                padding: 14px 16px;
                font-size: 14px;
            }

            button.submit-btn {
                font-size: 16px;
            }

            .error-message {
                bottom: -15px;
                font-size: 11px;
            }
        }

        @media (max-width: 480px) {
            .contact-section-final {
                padding: 15px;
            }

            .contact-info,
            .contact-form {
                padding: 20px;
            }

            .contact-info h1 {
                font-size: 32px;
                margin-bottom: 15px;
            }

            .contact-info p.description {
                font-size: 13px;
                margin-bottom: 15px;
            }

            .detail-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
                padding: 6px;
            }

            .detail-item .icon-wrapper {
                margin-bottom: 3px;
                width: 38px;
                height: 38px;
                font-size: 16px;
            }

            .detail-item .text-content {
                text-align: left;
            }

            .detail-item .text-content .label {
                font-size: 14px;
            }

            .detail-item .text-content .value {
                font-size: 12px;
            }

            .contact-form h2 {
                font-size: 22px;
            }

            .contact-form p.sub-description {
                font-size: 13px;
                margin-bottom: 15px;
            }

            .form-group label {
                font-size: 13px;
            }

            .form-group label .fa {
                font-size: 14px;
            }

            .form-group input,
            button.submit-btn,
            .form-group textarea {
                padding: 12px 14px;
                font-size: 13px;
            }

            button.submit-btn {
                font-size: 15px;
                margin-top: 20px;
            }

            .form-status-message {
                font-size: 13px;
                padding: 10px;
            }
        }

        @media (max-width: 1200px) {
            main.hero-section {
                flex-direction: column;
                justify-content: center;
                gap: 2rem;
                padding-top: 120px;
                height: auto;
            }

            .profile-container {
                order: -1;
            }

            .portfolio-section {
                text-align: center;
                max-width: 100%;
            }

            .pnam {
                text-align: center;
                margin-left: auto;
                margin-right: auto;
            }

            .button-container {
                justify-content: center;
            }

            #skills-showcase .skills-main-container {
                flex-direction: column;
                justify-content: flex-start;
                padding: 1rem;
                gap: 0;
                min-height: auto;
            }

            #skills-showcase .text-container {
                text-align: center;
                max-width: 650px;
                padding: 0 1rem;
                display: flex;
                flex-direction: column;
                align-items: center;
            }
        }

        @media (max-width: 991px) {
            .nav-container {
                top: 0;
                padding: 0;
            }

            .nav {
                border-radius: 0;
                border-top: none;
                border-left: none;
                border-right: none;
                max-width: 100%;
            }

            .nav-links {
                display: none;
                position: fixed;
                top: 0;
                right: 0;
                width: 320px;
                height: 100vh;
                background: rgba(10, 10, 20, 0.95);
                backdrop-filter: blur(20px);
                flex-direction: column;
                align-items: stretch;
                justify-content: flex-start;
                gap: 24px;
                padding: 100px 28px 28px;
                transform: translateX(100%) rotateY(-20deg);
                transform-origin: right center;
                transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), box-shadow 0.3s ease;
                box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
            }

            .menu-toggle {
                display: block;
            }

            .hire-me-desktop {
                display: none;
            }

            .nav.menu-open .menu-toggle .bar:nth-child(1) {
                transform: translateY(8px) rotate(45deg);
            }

            .nav.menu-open .menu-toggle .bar:nth-child(2) {
                opacity: 0;
            }

            .nav.menu-open .menu-toggle .bar:nth-child(3) {
                transform: translateY(-8px) rotate(-45deg);
            }

            .nav.menu-open .nav-links {
                display: flex;
                transform: translateX(0) rotateY(0);
            }

            .nav.menu-open .nav-links li {
                opacity: 0;
                animation: itemIn 0.6s ease forwards;
            }

            .nav.menu-open .nav-links li:nth-child(1) {
                animation-delay: 0.05s;
            }

            .nav.menu-open .nav-links li:nth-child(2) {
                animation-delay: 0.10s;
            }

            .nav.menu-open .nav-links li:nth-child(3) {
                animation-delay: 0.15s;
            }

            .nav.menu-open .nav-links li:nth-child(4) {
                animation-delay: 0.20s;
            }

            .nav.menu-open .nav-links li:nth-child(5) {
                animation-delay: 0.25s;
            }

            .nav.menu-open .nav-links li.divider {
                animation-delay: 0.30s;
            }

            .nav.menu-open .nav-links li.mobile-hire {
                animation-delay: 0.35s;
            }

            @keyframes itemIn {
                to {
                    opacity: 1;
                    transform: translateX(0);
                }

                from {
                    opacity: 0;
                    transform: translateX(30px);
                }
            }

            .nav-links li a {
                padding: 12px 10px;
                border-radius: 10px;
            }

            .nav-links li a:active {
                transform: translateZ(10px) scale(0.98);
            }

            .nav-links li.dropdown a .fa-caret-down {
                display: none;
            }

            .nav-links .divider {
                display: block;
            }

            .nav-links .divider hr {
                border: none;
                border-top: 1px solid rgba(255, 255, 255, 0.2);
                margin: 10px 0 6px 0;
            }

            .nav-links .mobile-hire {
                display: block;
            }

            .nav-links .mobile-hire .hire-me-btn {
                width: 100%;
                height: 50px;
                font-size: 18px;
            }

            .mega-dropdown {
                display: none !important;
            }

            .mega-dropdown.show {
                display: none !important;
            }

            .about-container {
                flex-direction: column;
                text-align: center;
            }

            .about-image-wrapper {
                margin-bottom: 3rem;
                max-width: 400px;
            }

            .projects-badge {
                width: 150px;
                height: 150px;
            }

            .badge-number {
                font-size: 2rem;
            }

            .about-content h2 {
                font-size: 2.5rem;
            }

            .process-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .content-card {
                order: -1;
                min-height: auto;
                padding: 30px;
                transform: rotateY(0) rotateX(0);
            }

            .process-content-wrapper {
                min-height: 720px;
                perspective: none;
            }

            .education-section .section-title {
                font-size: 2.8em;
            }

            .accordion-header h3 {
                font-size: 1.4em;
            }

            .accordion-content {
                padding: 0 25px;
            }

            .accordion-item.active .accordion-content {
                padding: 20px 25px;
            }

            .content-wrapper {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 25px;
            }

            .content-wrapper img {
                width: 120px;
                height: 120px;
            }

            .text-content ul {
                text-align: left;
                margin-left: 20px;
            }
        }

        @media (max-width: 1024px) {
            .launch-section .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .launch-section .hero-content p {
                margin-left: auto;
                margin-right: auto;
            }

            .launch-section .hero-image-wrapper {
                margin-top: 2rem;
                height: auto;
            }

            .launch-section .hero-content h1 {
                font-size: 2.5rem;
            }
        }

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

            .bl4-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .name {
                font-size: 2.5rem;
            }

            .description {
                font-size: 1.25rem;
            }

            .tagline {
                font-size: 0.9rem;
            }

            .button-container {
                flex-direction: column;
                align-items: stretch;
                gap: 0.75rem;
            }

            .marquee-text {
                font-size: 80px;
            }

            .process-section {
                padding: 80px 0;
            }

            .section-header h2 {
                font-size: 36px;
            }

            .section-header p {
                font-size: 16px;
            }

            .step-name {
                display: none;
            }

            .stepper-line,
            .stepper-line-progress {
                top: 15px;
            }

            .step-circle {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }

            .timer-ring {
                width: 40px;
                height: 40px;
                top: -5px;
                left: -5px;
            }

            .process-stepper-container {
                margin-bottom: 40px;
            }

            .content-details .step-heading h2 {
                font-size: 28px;
            }

            .process-content-wrapper {
                min-height: 680px;
                perspective: none;
            }

            .step-number-box {
                bottom: -5px;
                right: -5px;
                padding: 5px 15px;
            }

            .step-number-box p {
                font-size: 48px;
            }

            .launch-section {
                padding: 2rem;
            }

            .launch-section .hero-content h1 {
                font-size: 2rem;
            }

            .launch-section .hero-content p {
                font-size: 0.95rem;
            }

            .launch-section .hero-content .cta-button {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }

            .projects-section {
                padding: 40px 15px;
            }

            .carousel-wrapper {
                height: 500px;
            }

            .project-card {
                height: 450px;
            }

            .carousel-nav-button {
                width: 40px;
                height: 40px;
            }

            .carousel-nav-button.prev-btn {
                left: -5px;
            }

            .carousel-nav-button.next-btn {
                right: -5px;
            }

            #orbit-container {
                transform: scale(0.8);
                margin-top: -60px;
                margin-bottom: -60px;
            }

            .skills-heading {
                font-size: 50px;
            }

            .hh {
                font-size: 2.8rem;
            }

            #skills-showcase .text-container p {
                font-size: 1.1rem;
            }

            .bl4-container {
                display: block;
                position: relative;
                height: 550px;
                user-select: none;
            }

            .bl5-card {
                position: absolute;
                top: 10px;
                left: 0;
                right: 0;
                margin-inline: auto;
                width: 90%;
                max-width: 26rem;
                height: 480px;
                transition: transform var(--transition-speed) var(--transition-ease), opacity var(--transition-speed) var(--transition-ease);
                will-change: transform, opacity;
                animation: none;
                opacity: 1;
            }

            .bl5-card.active {
                transform: translateX(0) scale(1);
                opacity: 1;
                z-index: 20;
            }

            .bl5-card.next {
                transform: translateX(45%) scale(0.9);
                opacity: 0.5;
                z-index: 10;
            }

            .bl5-card.prev {
                transform: translateX(-45%) scale(0.9);
                opacity: 0.5;
                z-index: 10;
            }

            .bl5-card.hidden-card {
                transform: scale(0.8);
                opacity: 0;
                z-index: 5;
            }

            .bl5-card:hover {
                transform: translateY(-10px) !important;
            }

            .bl5-card.next:hover,
            .bl5-card.prev:hover {
                transform: translateY(0) scale(0.9) translateX(var(--tx, 0)) !important;
            }

            .bl5-card.next:hover {
                --tx: 45%;
            }

            .bl5-card.prev:hover {
                --tx: -45%;
            }

            .bl10-nav-button {
                display: flex;
                align-items: center;
                justify-content: center;
                position: absolute;
                bottom: 60px;
                z-index: 30;
                background-color: var(--primary-white);
                border-radius: 50%;
                width: 40px;
                height: 40px;
                cursor: pointer;
                transition: all 0.3s ease;
                border: none;
            }

            .bl10-nav-button.prev-btn {
                right: calc(50% + 10px);
            }

            .bl10-nav-button.next-btn {
                left: calc(50% + 10px);
            }

            .bl10-nav-button:hover {
                background-color: var(--color-accent);
                transform: scale(1.1);
            }

            .bl10-nav-button svg {
                stroke: var(--color-accent);
                transition: stroke 0.3s ease;
            }

            .bl10-nav-button:hover svg {
                stroke: var(--primary-white);
            }

            .bl11-dots {
                display: flex;
                justify-content: center;
                gap: 0.75rem;
                position: absolute;
                bottom: 1.5rem;
                left: 0;
                right: 0;
                z-index: 30;
            }

            .bl11-dot-item {
                width: 10px;
                height: 10px;
                border-radius: 50%;
                background-color: var(--color-gray-medium);
                cursor: pointer;
                transition: all 0.4s var(--transition-ease);
                border: none;
            }

            .bl11-dot-item:hover {
                background-color: var(--color-gray-light);
            }

            .bl11-dot-item.active {
                background-color: var(--color-accent);
                transform: scale(1.2);
            }

            .education-section {
                padding: 40px 0;
                margin: 20px auto;
            }

            .education-section .section-title {
                font-size: 2.2em;
                margin-bottom: 40px;
            }

            .accordion-header {
                padding: 18px 20px;
            }

            .accordion-header h3 {
                font-size: 1.25em;
            }

            .accordion-icon {
                font-size: 1.2em;
            }

            .accordion-content {
                padding: 0 25px;
            }

            .accordion-item.active .accordion-content {
                padding: 20px 25px;
            }

            .content-wrapper {
                gap: 20px;
            }

            .content-wrapper img {
                width: 120px;
                height: 120px;
            }

            .text-content p,
            .text-content ul li {
                font-size: 1em;
            }
        }

        @media (max-width: 600px) {
            .profile-circle {
                width: 300px;
                height: 300px;
            }

            #modal1 {
                padding: 2.5rem 1.5rem 2rem;
            }

            #modal1 .learning-modal-content h2 {
                font-size: 2rem;
                margin-top: 1rem;
            }

            .learning-list li {
                font-size: 1.1rem;
            }

            .learning-modal-close-button {
                top: 0.5rem;
                right: 0.5rem;
                width: 32px;
                height: 32px;
                font-size: 1.4rem;
            }
        }

        @media (max-width: 550px) {
            #orbit-container {
                transform: scale(0.8);
                margin-top: -60px;
                margin-bottom: -60px;
            }
        }

        @media (max-width: 500px) {
            .modal-grid {
                grid-template-columns: 1fr;
            }

            #projects-modal .modal-content {
                padding: 32px 24px;
            }

            .bl4-container {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .skills-heading {
                font-size: 40px;
                padding-top: 2rem;
            }

            .hh {
                font-size: 2.2rem;
            }

            #skills-showcase .text-container p {
                font-size: 0.95rem;
                line-height: 1.6;
            }

            .hhb {
                width: 210px;
                height: 48px;
                font-size: 1rem;
            }

            #orbit-container {
                transform: scale(0.7);
                margin-top: -90px;
                margin-bottom: -90px;
            }

            .education-section {
                padding: 30px 0;
            }

            .education-section .container {
                width: 95%;
            }

            .education-section .section-title {
                font-size: 1.8em;
                margin-bottom: 30px;
            }

            .accordion-header {
                padding: 15px;
            }

            .accordion-header h3 {
                font-size: 1.1em;
            }

            .accordion-icon {
                font-size: 1.1em;
            }

            .accordion-content {
                padding: 0 15px;
            }

            .accordion-item.active .accordion-content {
                padding: 15px;
            }

            .content-wrapper img {
                width: 80px;
                height: 80px;
            }

            .text-content p,
            .text-content ul li {
                font-size: 0.95em;
            }

            .text-content ul {
                margin-left: 15px;
            }
        }

        @media (max-width: 400px) {
            .marquee-text {
                letter-spacing: 0.01em;
                font-size: 60px;
            }

            #orbit-container {
                transform: scale(0.6);
                margin-top: -120px;
                margin-bottom: -120px;
            }
        }

        .site-footer {
            background-color: var(--color-black);
            padding: 40px 20px;
            text-align: center;
            color: var(--secondary-text-color);
            font-family: var(--font-family-main);
            font-size: 0.95rem;
            margin-top: 50px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .site-footer::before {
            content: '';
            position: absolute;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
            filter: blur(80px);
            opacity: 0.15;
            z-index: -1;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-divider {
            border: none;
            height: 2px;
            background: linear-gradient(to right, transparent, var(--color-gray-medium), transparent);
            margin-bottom: 20px;
            width: 100%;
            max-width: 1600px;
            margin-left: auto;
            margin-right: auto;
            transition: all 0.5s ease;
        }

        .site-footer:hover .footer-divider {
            background: linear-gradient(to right, transparent, var(--color-accent), transparent);
            box-shadow: 0 0 15px rgba(230, 81, 0, 0.5);
        }

        .footer-copyright {
            font-size: 30px;
            margin: 0;
            font-family: Oleo Script;
            font-weight: 400;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
        }

        .site-footer:hover .footer-copyright {
            color: var(--primary-white);
        }

        @media (max-width: 768px) {
            .site-footer {
                padding: 30px 15px;
                font-size: 0.85rem;
            }

            .footer-divider {
                width: 90%;
                margin-bottom: 25px;
            }
        }

        @media (max-width: 480px) {
            .site-footer {
                padding: 20px 10px;
                font-size: 0.75rem;
            }

            .footer-divider {
                margin-bottom: 20px;
            }
        }