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

        :root {
            --primary-color: #000000;
            --dark-bg: #ffffff;
            --darker-bg: #f5f5f5;
            --card-bg: #fafafa;
            --text-primary: #000000;
            --text-secondary: #333333;
            --border-color: rgba(0, 0, 0, 0.1);
            --accent-glow: rgba(0, 0, 0, 0.3);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #ffffff;
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
            z-index: 1000;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
        }

        .logo img {
            height: 40px;
            width: 40px;
            object-fit: cover;
            border-radius: 50%;
            transition: all 0.3s ease;
        }



        .logo span {
            font-size: 1.5rem;
            font-weight: bold;
            color: #000000;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        /* Desktop Navigation */
        .desktop-nav {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .desktop-nav a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
            position: relative;
        }

        .desktop-nav a:hover,
        .desktop-nav a.active {
            color: var(--primary-color);
        }

        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .desktop-nav a:hover::after,
        .desktop-nav a.active::after {
            width: 100%;
        }

        /* Mobile Navigation */
        .mobile-nav-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: none;
            border: none;
            z-index: 1001;
        }

        .mobile-nav-toggle span {
            width: 25px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 2px;
            transition: 0.3s;
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            z-index: 999;
            transition: right 0.4s ease;
            padding: 80px 30px 30px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            border-left: 1px solid var(--border-color);
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav a {
            text-decoration: none;
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 18px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
            transition: all 0.3s;
        }

        .mobile-nav a:hover,
        .mobile-nav a.active {
            color: var(--primary-color);
            padding-left: 10px;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 60px;
            position: relative;
            overflow: hidden;
            padding: 0 2rem;
            background: 
                linear-gradient(90deg, rgba(0,0,0,0.06) 1px, transparent 1px),
                linear-gradient(rgba(0,0,0,0.06) 1px, transparent 1px);
            background-size: 50px 50px;
        }

        .code-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
            opacity: 0.15;
            font-family: 'Courier New', monospace;
            font-size: 14px;
            line-height: 1.8;
            color: #000000;
            overflow: hidden;
            pointer-events: none;
        }

        .floating-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            overflow: hidden;
        }

        .floating-icon {
            position: absolute;
            font-size: 2.5rem;
            color: rgba(0, 0, 0, 0.2);
            animation: floatIcon 20s infinite ease-in-out;
        }

        .floating-icon:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
        .floating-icon:nth-child(2) { top: 20%; left: 92%; animation-delay: 2s; }
        .floating-icon:nth-child(3) { top: 60%; left: 3%; animation-delay: 4s; }
        .floating-icon:nth-child(4) { top: 70%; left: 95%; animation-delay: 1s; }
        .floating-icon:nth-child(5) { top: 40%; left: 96%; animation-delay: 3s; }
        .floating-icon:nth-child(6) { top: 80%; left: 2%; animation-delay: 5s; }
        .floating-icon:nth-child(7) { top: 30%; left: 1%; animation-delay: 6s; }
        .floating-icon:nth-child(8) { top: 50%; left: 97%; animation-delay: 4s; }
        .floating-icon:nth-child(9) { top: 90%; left: 4%; animation-delay: 2s; }
        .floating-icon:nth-child(10) { top: 15%; left: 94%; animation-delay: 5s; }

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

        .bubble {
            position: absolute;
            bottom: -100px;
            background: rgba(0, 0, 0, 0.12);
            border-radius: 50%;
            opacity: 0.8;
            animation: rise 15s infinite ease-in;
        }

        .bubble:nth-child(1) {
            width: 40px;
            height: 40px;
            left: 10%;
            animation-duration: 12s;
        }

        .bubble:nth-child(2) {
            width: 20px;
            height: 20px;
            left: 20%;
            animation-duration: 10s;
            animation-delay: 2s;
        }

        .bubble:nth-child(3) {
            width: 50px;
            height: 50px;
            left: 35%;
            animation-duration: 14s;
            animation-delay: 4s;
        }

        .bubble:nth-child(4) {
            width: 80px;
            height: 80px;
            left: 50%;
            animation-duration: 16s;
        }

        .bubble:nth-child(5) {
            width: 35px;
            height: 35px;
            left: 55%;
            animation-duration: 11s;
            animation-delay: 3s;
        }

        .bubble:nth-child(6) {
            width: 45px;
            height: 45px;
            left: 65%;
            animation-duration: 13s;
            animation-delay: 1s;
        }

        .bubble:nth-child(7) {
            width: 25px;
            height: 25px;
            left: 75%;
            animation-duration: 9s;
            animation-delay: 2s;
        }

        .bubble:nth-child(8) {
            width: 60px;
            height: 60px;
            left: 85%;
            animation-duration: 15s;
            animation-delay: 5s;
        }

        .bubble:nth-child(9) {
            width: 30px;
            height: 30px;
            left: 90%;
            animation-duration: 10s;
            animation-delay: 1s;
        }

        .bubble:nth-child(10) {
            width: 55px;
            height: 55px;
            left: 5%;
            animation-duration: 14s;
            animation-delay: 3s;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 0, 0, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            top: -100px;
            right: -100px;
            animation: float 6s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
            border-radius: 50%;
            bottom: -50px;
            left: -50px;
            animation: float 8s ease-in-out infinite reverse;
        }

        .hero-content {
            text-align: center;
            z-index: 10;
            animation: fadeInUp 1s ease-out;
            max-width: 800px;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 8vw, 4rem);
            margin-bottom: 1rem;
            color: #000000;
            text-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
            font-weight: 800;
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--text-secondary);
            margin-bottom: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            padding: 12px 40px;
            background: #000000;
            color: #ffffff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid #000000;
            cursor: pointer;
            font-size: 1rem;
            margin: 0.5rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }

        .cta-button.secondary {
            background: transparent;
            color: #000000;
            border: 2px solid #000000;
        }

        .cta-button.secondary:hover {
            background: #000000;
            color: #ffffff;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }

        /* Sections */
        section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        section > * {
            position: relative;
            z-index: 1;
        }

        .section-bubbles {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .section-bubble {
            position: absolute;
            bottom: -50px;
            background: rgba(0, 0, 0, 0.04);
            border-radius: 50%;
            opacity: 0.6;
            animation: sectionRise 20s infinite ease-in;
        }

        .section-bubble:nth-child(1) { width: 30px; height: 30px; left: 15%; animation-duration: 18s; }
        .section-bubble:nth-child(2) { width: 20px; height: 20px; left: 45%; animation-duration: 15s; animation-delay: 2s; }
        .section-bubble:nth-child(3) { width: 40px; height: 40px; left: 75%; animation-duration: 20s; animation-delay: 4s; }
        .section-bubble:nth-child(4) { width: 25px; height: 25px; left: 85%; animation-duration: 16s; animation-delay: 1s; }

        .section-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .section-float-icon {
            position: absolute;
            font-size: 1.5rem;
            color: rgba(0, 0, 0, 0.06);
            animation: sectionFloat 15s infinite ease-in-out;
        }

        .section-float-icon:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
        .section-float-icon:nth-child(2) { top: 30%; right: 5%; animation-delay: 3s; }
        .section-float-icon:nth-child(3) { bottom: 20%; left: 8%; animation-delay: 6s; }
        .section-float-icon:nth-child(4) { bottom: 40%; right: 8%; animation-delay: 2s; }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #000000, transparent);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .mypic img {
            width: 100%;
            max-width: 400px;
            height: auto;
            border-radius: 50%;
            margin: 0 auto;
            display: block;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .about {
            background: rgba(250, 250, 250, 0.8);
            border-radius: 20px;
            padding: 3rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
        }
    
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-text h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #000000;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .about-text p {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            margin-top: 2rem;
        }

        .stat {
            background: var(--card-bg);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid var(--border-color);
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat:hover {
            border-color: #000000;
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #000000;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .stat-label {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-top: 0.5rem;
        }

        .code-block {
            background: var(--darker-bg);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 1.5rem;
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            overflow-x: auto;
            color: var(--primary-color);
        }

        /* Skills Section */
        .skills-container {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
        }

        .skills-category {
            background: rgba(250, 250, 250, 0.8);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .skills-category:hover {
            border-color: #000000;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            transform: translateY(-5px);
        }

        .skills-category h3 {
            font-size: 1.3rem;
            color: #000000;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .skill-item {
            margin-bottom: 1.5rem;
        }

        .skill-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
            color: var(--text-secondary);
            font-weight: 600;
        }

        .skill-bar {
            width: 100%;
            height: 8px;
            background: rgba(0, 0, 0, 0.08);
            border-radius: 10px;
            overflow: hidden;
        }

        .skill-progress {
            height: 100%;
            background: linear-gradient(90deg, #000000, #333333);
            border-radius: 10px;
            width: 0;
            transition: width 1.5s ease;
        }

        .skills-category:hover .skill-progress {
            width: var(--progress) !important;
        }

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

        .skill-card {
            background: rgba(250, 250, 250, 0.8);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

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

        .skill-card:hover::before {
            left: 100%;
        }

        .skill-card:hover {
            border-color: #000000;
            transform: translateY(-10px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        }

        .skill-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 70px;
            height: 70px;
            background: rgba(0, 0, 0, 0.03);
            border-radius: 12px;
            border: 2px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .skill-card:hover .skill-icon {
            background: rgba(0, 0, 0, 0.08);
            border-color: #000000;
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .skill-icon i {
            color: #000000;
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
        }

        .skill-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #000000;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .skill-card p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        /* Projects Section */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            align-items: start;
        }

        .project-card {
            display: flex;
            flex-direction: column;
            border: 1px solid var(--border-color);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            background: var(--card-bg);
            height: 100%;
        }

        .project-card .project-image {
            width: 100%;
            height: 250px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
        }

        .project-card .project-image img,
        .project-card .project-image video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .project-card:hover .project-image img,
        .project-card:hover .project-image video {
            transform: scale(1.1);
        }

        .project-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transition: left 0.5s ease;
        }

        .project-info {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .project-info h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: #000000;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .project-info p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .tag {
            background: rgba(0, 0, 0, 0.05);
            color: #000000;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            border: 1px solid var(--border-color);
        }

        .project-card:hover {
            border-color: #000000;
            transform: translateY(-10px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        }

        .project-card.hidden,
        .poster-card.hidden {
            display: none;
        }

        .load-more-btn {
            display: block;
            margin: 3rem auto 0;
            padding: 12px 40px;
            background: #000000;
            color: #ffffff;
            border: 2px solid #000000;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .load-more-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }

        .load-more-btn.hidden {
            display: none;
        }

        /* Posters & Flyers Section */
        .posters-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .poster-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .poster-card:hover {
            border-color: #000000;
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .poster-image {
            width: 100%;
            height: 350px;
            overflow: hidden;
            background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
        }

        /* GEEZ SECURITY Section - Square Aspect Ratio */
        #geez-security .poster-image {
            height: 0;
            padding-bottom: 100%;
            position: relative;
        }

        #geez-security .poster-image img {
            position: absolute;
            top: 0;
            left: 0;
        }

        .poster-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

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

        .view-more-section {
            text-align: center;
            margin-top: 3rem;
        }

        /* Behance Portfolio Styling */
        .behance-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .behance-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .behance-image {
            width: 100%;
            height: 250px;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
        }

        .behance-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .behance-image video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border: none;
            outline: none;
            display: block;
            transition: transform 0.3s ease;
        }

        .behance-card:hover .behance-image video {
            transform: scale(1.1);
        }

        .behance-card:hover .behance-image img {
            transform: scale(1.1);
        }

        .behance-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .behance-card:hover .behance-overlay {
            opacity: 1;
        }

        .behance-link {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 12px 30px;
            background: #000000;
            color: #ffffff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid #000000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        }

        .behance-link:hover {
            background: transparent;
            color: #000000;
            transform: translateY(-3px);
            box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
        }

        .behance-info {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .behance-info h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: #000000;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .behance-info p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            flex-grow: 1;
        }

        .behance-card:hover {
            border-color: #000000;
            transform: translateY(-10px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        }

        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-info-text {
            margin-bottom: 1rem;
        }

        .contact-info-text h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #000000;
        }

        .contact-info-text p {
            color: var(--text-secondary);
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .contact-cards {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-card {
            background: rgba(250, 250, 250, 0.8);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            padding: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .contact-card:hover {
            transform: translateX(10px);
            border-color: #000000;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .contact-card-icon {
            width: 60px;
            height: 60px;
            background: rgba(0, 0, 0, 0.05);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #000000;
            transition: all 0.3s ease;
        }

        .contact-card:hover .contact-card-icon {
            background: #000000;
            color: #ffffff;
            transform: scale(1.1);
        }

        .contact-card-content h4 {
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
            color: #000000;
        }

        .contact-card-content p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        .contact-card-content a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-card:hover .contact-card-content a {
            color: #000000;
        }

        .contact {
            background: rgba(250, 250, 250, 0.8);
            border-radius: 20px;
            padding: 3rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--text-secondary);
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.8rem;
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            color: var(--text-primary);
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #000000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            padding: 1rem;
            background: #000000;
            color: #ffffff;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
        }

        /* Social Links */
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border: 2px solid #000000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000000;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-link:hover {
            background: #000000;
            color: #ffffff;
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .social-link i {
            color: inherit;
        }

        /* Footer */
        footer {
            background: rgba(250, 250, 250, 0.95);
            border-top: 1px solid var(--border-color);
            padding: 2rem;
            text-align: center;
            color: var(--text-secondary);
            box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.05);
        }

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

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(20px);
            }
        }

        @keyframes rise {
            0% {
                bottom: -100px;
                transform: translateX(0);
            }
            50% {
                transform: translateX(100px);
            }
            100% {
                bottom: 110vh;
                transform: translateX(-200px);
            }
        }

        @keyframes floatIcon {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            25% {
                transform: translateY(-20px) rotate(5deg);
            }
            50% {
                transform: translateY(-40px) rotate(0deg);
            }
            75% {
                transform: translateY(-20px) rotate(-5deg);
            }
        }

        @keyframes sectionRise {
            0% {
                bottom: -50px;
                transform: translateX(0);
                opacity: 0.6;
            }
            50% {
                transform: translateX(50px);
                opacity: 0.4;
            }
            100% {
                bottom: 100%;
                transform: translateX(-50px);
                opacity: 0;
            }
        }

        @keyframes sectionFloat {
            0%, 100% {
                transform: translateY(0px) translateX(0px) rotate(0deg);
            }
            25% {
                transform: translateY(-15px) translateX(10px) rotate(3deg);
            }
            50% {
                transform: translateY(-30px) translateX(-10px) rotate(0deg);
            }
            75% {
                transform: translateY(-15px) translateX(10px) rotate(-3deg);
            }
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .fade-in {
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .slide-in {
            animation: slideIn 0.6s ease-out forwards;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .service-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .service-icon {
            min-width: 24px;
            height: 24px;
            color: #000000;
            font-size: 1.5rem;
            margin-top: 0.2rem;
        }

        .service-content h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: #000000;
            font-weight: 700;
        }

        .service-content p {
            color: var(--text-secondary);
            line-height: 1.7;
            font-size: 0.95rem;
            margin-bottom: 0.8rem;
        }

        .service-btn {
            display: inline-block;
            padding: 8px 20px;
            background: #000000;
            color: #ffffff;
            text-decoration: none;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid #000000;
        }

        .service-btn:hover {
            background: transparent;
            color: #000000;
            transform: translateX(5px);
        }

        .service-btn i {
            margin-right: 0.3rem;
        }

        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
            .code-bg {
                display: none;
            }
        }

        /* Testimonials Section */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .testimonial-card {
            background: rgba(250, 250, 250, 0.8);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            border-color: #000000;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .testimonial-text {
            font-style: italic;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #000000;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .testimonial-info h4 {
            color: #000000;
            margin-bottom: 0.2rem;
        }

        .testimonial-info p {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        /* Achievements Section */
        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .achievement-card {
            background: rgba(250, 250, 250, 0.8);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .achievement-card:hover {
            border-color: #000000;
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .achievement-icon {
            font-size: 3rem;
            color: #000000;
            margin-bottom: 1rem;
        }

        .achievement-card h3 {
            font-size: 1.2rem;
            color: #000000;
            margin-bottom: 0.5rem;
        }

        /* Timeline Section */
        .timeline-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }

        .timeline-container::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: var(--border-color);
        }

        .timeline-item {
            margin-bottom: 3rem;
            position: relative;
            width: 45%;
        }

        .timeline-item:nth-child(odd) {
            margin-left: 0;
            text-align: right;
        }

        .timeline-item:nth-child(even) {
            margin-left: 55%;
            text-align: left;
        }

        .timeline-content {
            background: rgba(250, 250, 250, 0.8);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            padding: 1.5rem;
            transition: all 0.3s ease;
        }

        .timeline-content:hover {
            border-color: #000000;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .timeline-icon {
            position: absolute;
            top: 0;
            width: 50px;
            height: 50px;
            background: #000000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 1.2rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .timeline-item:nth-child(odd) .timeline-icon {
            right: -25%;
            transform: translateX(50%);
        }

        .timeline-item:nth-child(even) .timeline-icon {
            left: -25%;
            transform: translateX(-50%);
        }

        .timeline-date {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .timeline-title {
            font-size: 1.3rem;
            color: #000000;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .timeline-subtitle {
            font-size: 1rem;
            color: var(--text-secondary);
            margin-bottom: 0.8rem;
        }

        .timeline-description {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .timeline-container::before {
                left: 25px;
            }

            .timeline-item {
                width: 100%;
                margin-left: 50px !important;
                text-align: left !important;
            }

            .timeline-item:nth-child(odd) .timeline-icon,
            .timeline-item:nth-child(even) .timeline-icon {
                left: -50px;
                transform: translateX(0);
            }

            .section-float-icon {
                font-size: 1.2rem;
            }
        }

        /* Enhanced Responsive Design */
        @media (max-width: 1024px) {
            .about-content {
                gap: 2rem;
            }
            
            .skills-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .projects-grid,
            .behance-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 1024px) {
            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .contact-info-text h3 {
                font-size: 1.5rem;
            }

            .contact-card {
                padding: 1.2rem;
            }

            .contact-card-icon {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }
            nav {
                padding: 1rem;
            }
            
            .desktop-nav {
                display: none;
            }
            
            .mobile-nav-toggle {
                display: flex;
            }
            
            .hero {
                margin-top: 0;
                padding: 0 1rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .stats {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            section {
                padding: 3rem 1rem;
            }
            
            .about {
                padding: 2rem 1.5rem;
            }
            
            .contact {
                padding: 2rem 1.5rem;
            }
            
            .skills-grid {
                grid-template-columns: 1fr;
            }
            
            .projects-grid,
            .behance-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-buttons {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            
            .cta-button {
                width: 100%;
                max-width: 300px;
                margin: 0.5rem 0;
            }
            
            .social-links {
                gap: 1rem;
            }
        }

        /* Project Modal */
        .project-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .project-modal.active {
            display: flex;
        }

        .modal-content {
            background: #ffffff;
            border-radius: 20px;
            max-width: 1000px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: fadeInUp 0.3s ease-out;
        }

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 40px;
            height: 40px;
            background: #000000;
            color: #ffffff;
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            transform: rotate(90deg);
            background: #333333;
        }

        .modal-gallery {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
            border-radius: 20px 20px 0 0;
        }

        .modal-main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: opacity 0.3s ease;
        }

        .modal-thumbnails {
            position: absolute;
            bottom: 1rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
            background: rgba(0, 0, 0, 0.7);
            padding: 0.5rem;
            border-radius: 10px;
        }

        .modal-thumbnail {
            width: 60px;
            height: 40px;
            object-fit: cover;
            border-radius: 5px;
            cursor: pointer;
            opacity: 0.7;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .modal-thumbnail:hover,
        .modal-thumbnail.active {
            opacity: 1;
            border-color: #ffffff;
            transform: scale(1.1);
        }

        .modal-body {
            padding: 2rem;
        }

        .modal-body h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #000000;
        }

        .modal-description {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .modal-features {
            margin-bottom: 1.5rem;
        }

        .modal-features h3 {
            font-size: 1.2rem;
            color: #000000;
            margin-bottom: 0.8rem;
        }

        .modal-features ul {
            list-style: none;
            padding: 0;
        }

        .modal-features li {
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .modal-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #000000;
            font-weight: bold;
        }

        .modal-tech-stack {
            margin-bottom: 1.5rem;
        }

        .modal-tech-stack h3 {
            font-size: 1.2rem;
            color: #000000;
            margin-bottom: 0.8rem;
        }

        .tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .tech-tag {
            background: rgba(0, 0, 0, 0.08);
            color: #000000;
            padding: 0.4rem 0.8rem;
            border-radius: 15px;
            font-size: 0.85rem;
            border: 1px solid var(--border-color);
        }

        .modal-project-details {
            margin-bottom: 1.5rem;
        }

        .modal-project-details h3 {
            font-size: 1.2rem;
            color: #000000;
            margin-bottom: 0.8rem;
        }

        .project-detail-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .project-detail-item {
            background: rgba(0, 0, 0, 0.03);
            padding: 1rem;
            border-radius: 8px;
            border: 1px solid var(--border-color);
        }

        .project-detail-label {
            font-weight: 600;
            color: #000000;
            font-size: 0.9rem;
            margin-bottom: 0.3rem;
        }

        .project-detail-value {
            color: var(--text-secondary);
            font-size: 0.85rem;
        }

        .modal-achievements {
            margin-bottom: 1.5rem;
        }

        .modal-achievements h3 {
            font-size: 1.2rem;
            color: #000000;
            margin-bottom: 0.8rem;
        }

        .achievement-item {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.02));
            padding: 0.8rem;
            margin-bottom: 0.5rem;
            border-radius: 8px;
            border-left: 4px solid #000000;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        @media (max-width: 768px) {
            .modal-content {
                margin: 1rem;
            }

            .modal-image {
                height: 250px;
            }

            .modal-body {
                padding: 1.5rem;
            }

            .modal-body h2 {
                font-size: 1.5rem;
            }
        }

        /* Resume Modal */
        .resume-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .resume-modal.active {
            display: flex;
        }

        .resume-content {
            background: #ffffff;
            border-radius: 20px;
            max-width: 900px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            animation: fadeInUp 0.3s ease-out;
        }

        .resume-header {
            background: linear-gradient(135deg, #000000, #333333);
            color: #ffffff;
            padding: 2rem;
            border-radius: 20px 20px 0 0;
            text-align: center;
            position: relative;
        }

        .resume-close {
            position: absolute;
            top: 1rem;
            right: 1rem;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            color: #ffffff;
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .resume-close:hover {
            transform: rotate(90deg);
            background: rgba(255, 255, 255, 0.3);
        }

        .resume-profile {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
        }

        .resume-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid rgba(255, 255, 255, 0.3);
        }

        .resume-title h1 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            font-weight: 800;
        }

        .resume-title p {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 1rem;
        }

        .resume-contact-info {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .resume-contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .resume-body {
            padding: 2rem;
        }

        .resume-section {
            margin-bottom: 2rem;
        }

        .resume-section h2 {
            font-size: 1.5rem;
            color: #000000;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #000000;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .resume-item {
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: rgba(0, 0, 0, 0.02);
            border-radius: 10px;
            border-left: 4px solid #000000;
        }

        .resume-item-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 0.5rem;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .resume-item-title {
            font-size: 1.1rem;
            font-weight: bold;
            color: #000000;
        }

        .resume-item-date {
            font-size: 0.9rem;
            color: var(--text-secondary);
            font-weight: 600;
        }

        .resume-item-company {
            font-size: 1rem;
            color: var(--text-secondary);
            margin-bottom: 0.5rem;
        }

        .resume-item-description {
            color: var(--text-secondary);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .resume-skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }

        .resume-skill-category {
            background: rgba(0, 0, 0, 0.05);
            padding: 1rem;
            border-radius: 10px;
            border: 1px solid var(--border-color);
        }

        .resume-skill-category h3 {
            font-size: 1rem;
            color: #000000;
            margin-bottom: 0.5rem;
        }

        .resume-skill-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem;
        }

        .resume-skill-tag {
            background: #000000;
            color: #ffffff;
            padding: 0.2rem 0.6rem;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .resume-content {
                margin: 1rem;
                max-height: 95vh;
            }

            .resume-header {
                padding: 1.5rem;
            }

            .resume-profile {
                flex-direction: column;
                gap: 1rem;
            }

            .resume-avatar {
                width: 100px;
                height: 100px;
            }

            .resume-title h1 {
                font-size: 2rem;
            }

            .resume-contact-info {
                gap: 1rem;
            }

            .resume-body {
                padding: 1.5rem;
            }

            .resume-item-header {
                flex-direction: column;
                align-items: flex-start;
            }
        }

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

            .hero p {
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.5rem;
            }
            
            .about {
                padding: 1.5rem 1rem;
            }
            
            .skill-card,
            .project-card,
            .behance-card {
                padding: 1.5rem;
            }
            
            .stat {
                padding: 1rem;
            }
            
            .stat-number {
                font-size: 1.5rem;
            }
            
            footer {
                padding: 1.5rem;
            }
        }

        /* ── Scroll Progress Bar ── */
        #scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            width: 0%;
            background: linear-gradient(90deg, #000000, #555555);
            z-index: 9999;
            transition: width 0.1s linear;
            box-shadow: 0 0 8px rgba(0,0,0,0.4);
        }

        /* ── Scroll-to-top button ── */
        #scroll-top-btn {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 48px;
            height: 48px;
            background: #000000;
            color: #ffffff;
            border: none;
            border-radius: 50%;
            font-size: 1.1rem;
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            transform: translateY(20px) scale(0.8);
            transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        #scroll-top-btn.visible {
            opacity: 1;
            transform: translateY(0) scale(1);
        }

        #scroll-top-btn:hover {
            transform: translateY(-4px) scale(1.1);
            box-shadow: 0 8px 25px rgba(0,0,0,0.35);
        }

        /* ── Scroll Reveal Animations ── */
        .scroll-reveal {
            opacity: 0;
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .scroll-reveal.reveal-up    { transform: translateY(50px); }
        .scroll-reveal.reveal-left  { transform: translateX(-50px); }
        .scroll-reveal.reveal-right { transform: translateX(50px); }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translate(0, 0);
        }

        /* stagger children inside grids */
        .projects-grid .scroll-reveal:nth-child(2)  { transition-delay: 0.1s; }
        .projects-grid .scroll-reveal:nth-child(3)  { transition-delay: 0.2s; }
        .projects-grid .scroll-reveal:nth-child(4)  { transition-delay: 0.3s; }
        .posters-grid  .scroll-reveal:nth-child(2)  { transition-delay: 0.05s; }
        .posters-grid  .scroll-reveal:nth-child(3)  { transition-delay: 0.1s; }
        .posters-grid  .scroll-reveal:nth-child(4)  { transition-delay: 0.15s; }
        .skills-container .scroll-reveal:nth-child(2) { transition-delay: 0.15s; }
        .skills-container .scroll-reveal:nth-child(3) { transition-delay: 0.3s; }

        /* ── Hero Scroll Indicator ── */
        .hero-scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            color: #000000;
            font-size: 0.8rem;
            z-index: 10;
            animation: fadeInUp 1.5s ease-out;
            transition: opacity 0.4s ease;
        }

        .scroll-mouse {
            width: 24px;
            height: 38px;
            border: 2px solid #000000;
            border-radius: 12px;
            display: flex;
            justify-content: center;
            padding-top: 6px;
        }

        .scroll-wheel {
            width: 4px;
            height: 8px;
            background: #000000;
            border-radius: 2px;
            animation: scrollWheel 1.5s infinite;
        }

        @keyframes scrollWheel {
            0%   { transform: translateY(0);    opacity: 1; }
            100% { transform: translateY(10px); opacity: 0; }
        }
