:root {
            --primary: #1e3a8a;
            --secondary: #dc2626;
            --accent: #f59e0b;
            --dark: #0f172a;
            --light: #f8fafc;
            --gradient: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
        }

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

        html {
             scroll-behavior: smooth;
             width: 100%;
             max-width: 100%;
             overflow-x: hidden;
        }
        
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: all 0.3s ease;
            animation: float 3s ease-in-out infinite;
        }

        .whatsapp-float svg {
            width: 32px;
            height: 32px;
            fill: currentColor;
        }

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

        .whatsapp-float:hover {
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
            background: #128C7E;
        }

        .tooltip {
            position: absolute;
            right: 70px;
            background: white;
            color: #333;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .whatsapp-float:hover .tooltip {
            opacity: 1;
            visibility: visible;
            right: 75px;
        }

        @media (max-width: 768px) {
            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
            }
            .whatsapp-float svg {
                width: 26px;
                height: 26px;
            }
        }
        
        body {
             width: 100%;
             max-width: 100%;
             font-family: 'Poppins', sans-serif;
             background: var(--light);
             color: var(--dark);
             overflow-x: hidden;
             margin: 0;
             padding: 0;
        }

        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--light);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 5px;
        }
        
        .navbar {
            position: fixed;
            height: 60px;
            top: 0;
            left: 0;
            width: 100%;
            max-width: 100%;
            padding: 1rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background-color: #000000;
            backdrop-filter: blur(20px);
            border-bottom: 1px solid #00d4ff;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-sizing: border-box;  /* ✅ Penting */
         }

        .nav-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            letter-spacing: 2px;
            transition: opacity 0.3s ease;
            background: linear-gradient(45deg, #00d4ff, #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .nav-logo:hover {
            opacity: 0.8;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-menu a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            letter-spacing: 0.5px;
        }

        .nav-menu a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #00d4ff, #0099cc);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .nav-menu a:hover {
            color: white;
            transform: translateY(-2px);
        }

        .nav-menu a:hover::before {
            width: 100%;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 28px;
            height: 20px;
            cursor: pointer;
            z-index: 1002;
            position: relative;
        }

        .nav-toggle span {
            display: block;
            width: 100%;
            height: 2px;
            background: white;
            border-radius: 2px;
            transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
            transform-origin: center;
            position: relative;
        }

        .nav-toggle.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        /*  background: #00d4ff; */
            background: #FF0000;
            text-shadow: 0 0 10px rgb(0, 255, 234);
        }

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

        .nav-toggle.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        /*  background: #00d4ff; */
            background: #FF0000;
            text-shadow: 0 0 10px rgb(0, 255, 234);
        }

        .nav-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0);
            backdrop-filter: blur(0px);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
        }

        .nav-overlay.active {
            background: rgba(0,0,0,0.8);
            backdrop-filter: blur(10px);
            opacity: 1;
            visibility: visible;
            pointer-events: all;
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: 0;
                width: min(70%, 400px);
                height: 100vh;
                background: linear-gradient(135deg, rgba(20,20,20,0.98), rgba(10,10,10,0.99));
                flex-direction: column;
                justify-content: center;
                align-items: flex-start;
                padding: 6rem 3rem;
                gap: 0;
                transform: translateX(100%);
                transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                border-left: 1px solid rgba(255,255,255,0.1);
                box-shadow: -10px 0 40px rgba(0,0,0,0.5);
            }

            .nav-menu.active {
                transform: translateX(0);
            }

            .nav-menu li {
                opacity: 0;
                transform: translateX(50px);
                transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                margin-bottom: 2rem;
                width: 100%;
            }

            .nav-menu.active li {
                opacity: 1;
                transform: translateX(0);
            }

            .nav-menu.active li:nth-child(1) { transition-delay: 0.08s; }
            .nav-menu.active li:nth-child(2) { transition-delay: 0.18s; }
            .nav-menu.active li:nth-child(3) { transition-delay: 0.28s; }
            .nav-menu.active li:nth-child(4) { transition-delay: 0.38s; }
            .nav-menu.active li:nth-child(5) { transition-delay: 0.48s; }
            .nav-menu.active li:nth-child(6) { transition-delay: 0.58s; }

            .nav-menu a {
                font-size: 1rem;
                font-weight: 600;
                color: rgba(255,255,255,0.6);
                display: block;
                width: 100%;
                position: relative;
                padding-left: 0;
                transition: all 0.3s ease;
            }

            .nav-menu a::before {
                left: 0;
                transform: translateX(-20px);
                width: 0;
                height: 100%;
                background: linear-gradient(90deg, rgba(0,212,255,0.2), transparent);
                z-index: -1;
                opacity: 0;
                transition: all 0.4s ease;
            }

            .nav-menu a:hover {
                color: white;
                padding-left: 20px;
            }

            .nav-menu a:hover::before {
                width: 100%;
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            position: relative;
            overflow: hidden;
            padding: 100px 5% 50px;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: var(--gradient);
            border-radius: 50%;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

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

        .hero-container {
            max-width: 1200px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .hero-content h1 {
/*            font-family: 'Playfair Display', serif; */
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
            line-height: 1.2;
        }
        
        .hero-content .subtitle {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 1rem;
        /* Gradient text  */
            background: linear-gradient(20deg, #000000, #FF0000);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text; /* untuk browser modern */
}


        .hero-content p {
            font-size: 1.1rem;
            color: #64748b;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2rem;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary {
            background: var(--gradient);
            color: white;
            box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
        }

        .btn-secondary {
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: white;
        }

        .hero-image {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .hero-image img {
            width: 350px;
            height: 350px;
            object-fit: cover;
            border-radius: 50%;
            border: 5px solid black;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .badge {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: var(--secondary);
            color: white;
            padding: 1rem;
            border-radius: 50%;
            font-size: 2rem;
            animation: pulse 2s infinite;
        }

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

        section {
            padding: 80px 5%;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

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

        .section-title {
            font-size: 2rem;
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .section-title p {
            padding-top: 0.3rem;
            font-size: 1.1rem;
            color: #64748b;
        }

        .underline {
            width: 80px;
            height: 4px;
            background: var(--secondary);
            margin: 0 auto;
            border-radius: 2px;
        }

        /* ANIMATION CLASSES - Reversible */
        .animate-on-scroll,
        .slide-left,
        .slide-right,
        .slide-up,
        .scale-in {
            opacity: 0;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: transform, opacity;
        }

        .animate-on-scroll {
            transform: translateY(30px);
        }

        .slide-left {
            transform: translateX(-50px);
        }

        .slide-right {
            transform: translateX(50px);
        }

        .slide-up {
            transform: translateY(50px);
        }

        .scale-in {
            transform: scale(0.8);
        }

        /* VISIBLE STATE */
        .animate-on-scroll.visible,
        .slide-left.visible,
        .slide-right.visible,
        .slide-up.visible,
        .scale-in.visible {
            opacity: 1;
            transform: translate(0) scale(1);
        }

        /* Delay classes */
        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }
        .delay-3 { transition-delay: 0.3s; }
        .delay-4 { transition-delay: 0.4s; }

        .about {
            background: white;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 3rem;
            align-items: start;
        }

        .info-card {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }

        .info-card h3 {
            color: var(--primary);
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--secondary);
        }

        .info-item {
            margin-bottom: 1.2rem;
            padding-bottom: 1.2rem;
            border-bottom: 1px solid #e2e8f0;
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
            transition: all 0.3s;
        }

        .info-item:hover {
            padding-left: 10px;
            border-left: 3px solid var(--secondary);
        }

        .info-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .info-label {
            font-weight: 600;
            color: var(--primary);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .info-label i {
            color: var(--secondary);
            font-size: 0.9rem;
            width: 20px;
        }

        .info-value {
            color: #334155;
            font-size: 0.95rem;
            font-weight: 500;
            padding-left: 1.5rem;
        }

        .education-block {
            background: white;
            padding: 1rem;
            border-radius: 12px;
            margin-top: 0.5rem;
            border-left: 3px solid var(--secondary);
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }

        .education-block:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .education-level {
            font-weight: 600;
            color: var(--primary);
            font-size: 0.9rem;
            margin-bottom: 0.2rem;
        }

        .education-school {
            color: #64748b;
            font-size: 0.85rem;
            line-height: 1.4;
        }

        .about-content h3 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .about-content p {
            line-height: 1.8;
            color: #475569;
            margin-bottom: 1rem;
        }

        .highlight {
            background: linear-gradient(120deg, #fef3c7 0%, #fef3c7 100%);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
            color: var(--secondary);
            transition: all 0.3s;
        }

        .highlight:hover {
            background: var(--secondary);
            color: white;
        }

        .experience {
            background: linear-gradient(to bottom, #f8fafc, #e2e8f0);
        }

        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

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

        .timeline-item {
            margin-bottom: 3rem;
            position: relative;
            width: 50%;
            padding: 0 2rem;
        }

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

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

        .timeline-dot {
            position: absolute;
            width: 20px;
            height: 20px;
            background: var(--secondary);
            border-radius: 50%;
            top: 0;
            transition: all 0.3s;
        }

        .timeline-item:hover .timeline-dot {
            transform: scale(1.3);
            box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.2);
        }

        .timeline-item:nth-child(odd) .timeline-dot {
            right: -10px;
        }

        .timeline-item:nth-child(even) .timeline-dot {
            left: -10px;
        }

        .timeline-content {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }

        .timeline-date {
            color: var(--secondary);
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-block;
            padding: 0.2rem 0.8rem;
            background: #fee2e2;
            border-radius: 20px;
            margin-bottom: 0.5rem;
        }

        .timeline-title {
            color: var(--primary);
            font-size: 1.2rem;
            margin: 0.5rem 0;
        }

        .timeline-company {
            color: #64748b;
            font-size: 0.9rem;
        }

        .projects {
            background: white;
        }

        .project-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s;
            border: 1px solid #e2e8f0;
        }

        .project-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }

        .project-image {
            height: 300px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .project-image::before {
            content: '🌐';
            font-size: 4rem;
            opacity: 0.3;
        }

        .project-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--accent);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            animation: bounce 1.5s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .project-info {
            padding: 2rem;
        }

        .project-info h3 {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .project-info p {
            color: #64748b;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .project-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .project-link:hover {
            gap: 1rem;
            color: var(--primary);
        }

        .certificates {
            background: var(--dark);
            color: white;
        }

        .certificates .section-title h2,
        .certificates .section-title p {
            color: white;
        }

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

        .cert-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

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

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

        .cert-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .cert-icon {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 1rem;
            transition: all 0.3s;
        }

        .cert-card:hover .cert-icon {
            transform: scale(1.2) rotate(5deg);
        }

        .cert-title {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: white;
        }

        .cert-org {
            color: #94a3b8;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .cert-year {
            display: inline-block;
            background: var(--secondary);
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
        }

        .skills {
            background: #f1f5f9;
        }

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

        .skill-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }

        .skill-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .skill-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .skill-name {
            font-weight: 600;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .skill-percent {
            color: var(--secondary);
            font-weight: 700;
        }

        .progress-bar {
            height: 10px;
            background: #e2e8f0;
            border-radius: 5px;
            overflow: hidden;
            position: relative;
        }

        .progress-fill {
            height: 100%;
            background: var(--gradient);
            border-radius: 5px;
            width: 0;
            transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .progress-fill.visible {
            /* Width akan di set via JS */
        }

        .progress-fill::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            width: 30px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-30px); }
            100% { transform: translateX(30px); }
        }

        .contact {
            background: #bddeec;
            text-align: center;
        }

        .contact-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
            color: var(--dark);
            transition: all 0.3s;
            padding: 1rem;
            border-radius: 15px;
            background: white;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            min-width: 150px;
        }

        .contact-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            background: var(--primary);
            color: white;
        }

        .contact-item:hover .contact-icon {
            background: white;
            color: var(--primary);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.3s;
        }

        footer {
            background: var(--dark);
            color: white;
            text-align: center;
            padding: 2rem;
        }

        .social-links {
            margin-bottom: 1rem;
        }

        .social-links a {
            color: white;
            font-size: 1.5rem;
            margin: 0 1rem;
            transition: all 0.3s;
            display: inline-block;
        }

        .social-links a:hover {
            color: var(--accent);
            transform: translateY(-5px) rotate(10deg);
        }

        @media (max-width: 768px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .hero-content h1 {
                font-size: 2rem;
                background: linear-gradient(to right, #000000, #00FFFF);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }
            
            .hero-image img {
                width: 250px;
                height: 250px;
            }
            
            .about-grid {
                grid-template-columns: 1fr;
            }
            
            .timeline::before {
                left: 20px;
            }
            
            .timeline-item {
                width: 100%;
                left: 0 !important;
                padding-left: 50px;
                text-align: left !important;
            }
            
            .timeline-dot {
                left: 10px !important;
                right: auto !important;
            }
        }
