:root {
            --primary-color: #0d6efd;
            --dark-color: #121212;
            --light-dark: #1e1e1e;
            --text-color: #f8f9fa;
        }
        
        body {
            background-color: var(--dark-color);
            color: var(--text-color);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
        }
        
        /* Floating text animation */
        .floating-text {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
          canvas {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          z-index: 0;
          background-color: #0f0f0f;
          }

        .name-text {
            font-size: 5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            background: linear-gradient(to right, #ffffff, #b3b3b3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: 
                float 6s ease-in-out infinite,
                wipeInOut 5s linear infinite;
            white-space: nowrap;
        }

        @keyframes wipeInOut {
            0% { clip-path: inset(0 100% 0 0); }
            50% { clip-path: inset(0 0 0 0); }
            100% { clip-path: inset(0 0 0 100%); }
        }
        
        .title-text {
            font-size: 2rem;
            color: var(--primary-color);
            animation: float 4s ease-in-out infinite;
            animation-delay: 1s;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        
        /* Navigation */
        .navbar {
            background-color: rgba(18, 18, 18, 0.9);
            padding: 1rem 2rem;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background-color: rgba(30, 30, 30, 0.95);
            padding: 0.5rem 2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        .nav-link {
            color: var(--text-color) !important;
            margin: 0 1rem;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        /* Sections */
        .section {
            padding: 6rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .section-title {
            font-size: 3rem;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 100px;
            height: 4px;
            background: var(--primary-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Skills */
        .skill-card {
            background-color: var(--light-dark);
            border-radius: 10px;
            padding: 2rem;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .skill-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            border-color: var(--primary-color);
        }
        
        .skill-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        /* Portfolio */
        .portfolio-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            margin-bottom: 2rem;
            height: 320px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
        }
        
        .portfolio-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(13, 110, 253, 0.9);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: all 0.5s ease;
            text-align: center;
            padding: 2rem;
        }
        
        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }
        
        .portfolio-item:hover .portfolio-img {
            transform: scale(1.1);
        }
        
        /* About */
        .about-content {
            display: flex;
            align-items: center;
            margin-top: 3rem;
        }
        
        .profile-img {
            border-radius: 15px;
            max-width: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        @media (max-width: 768px) {
            .about-content {
                flex-direction: column;
            }
        }
        
        /* Curriculum */
        .timeline {
            position: relative;
            padding-left: 3rem;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            width: 2px;
            height: 100%;
            background: var(--primary-color);
            left: 7px;
            top: 0;
        }
        
        .timeline-item {
            position: relative;
            padding-bottom: 2.5rem;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: var(--primary-color);
            left: -1.5rem;
            top: 0.3rem;
        }
        
        .timeline-date {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        /* Contact */
        .contact-form {
            background-color: var(--light-dark);
            padding: 3rem;
            border-radius: 10px;
        }
        
        .form-control {
            background-color: rgba(255, 255, 255, 0.1);
            border: none;
            color: var(--text-color) !important;
            padding: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .form-control:focus {
            background-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        }
        
        .btn-custom {
            background-color: var(--primary-color);
            color: white;
            padding: 0.8rem 2rem;
            border: none;
            transition: all 0.3s ease;
        }
        
        .btn-custom:hover {
            background-color: #0b5ed7;
            transform: translateY(-2px);
        }
        
        .contact-info {
            margin-top: 3rem;
        }
        
        .contact-icon {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 1rem;
        }
        
        /* Footer */
        footer {
            background-color: var(--light-dark);
            padding: 2rem 0;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .social-icons a {
            color: var(--text-color);
            font-size: 1.5rem;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
        }
        
        .social-icons a:hover {
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: var(--primary-color);
            font-size: 2rem;
            animation: bounce 2s infinite;
        }

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

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .name-text {
                font-size: 3.5rem;
            }
            
            .title-text {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 576px) {
            .name-text {
                font-size: 2.5rem;
            }
            
            .title-text {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .floating-text {
                padding: 0 1rem;
            }
        }