        :root {
            --primary: #ffc107;
            --primary-dark: #ff6f00;
            --primary-light: #ffd54f;
            --dark: #2c2c2c;
            --darker: #050505;
            --light: #f8f9fa;
            --lighter: #ffffff;
            --glass: rgba(255, 255, 255, 0.08);
            --glass-light: rgba(255, 255, 255, 0.12);
            --glass-border: rgba(255, 255, 255, 0.2);
            --shadow: 0 8px 32px rgba(0, 0, 0, 0.36);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        @font-face {
            font-family: 'Poppins';
            src: url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--dark);
            color: var(--light);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        
        ::selection {
            background: var(--primary);
            color: var(--dark);
        }
        
        /* Preloader */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--darker);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .loader {
            width: 48px;
            height: 48px;
            border: 5px solid var(--primary);
            border-bottom-color: transparent;
            border-radius: 50%;
            display: inline-block;
            box-sizing: border-box;
            animation: rotation 1s linear infinite;
        }
        
        @keyframes rotation {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--dark);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 5px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }
        
        /* Section Styling */
        section {
            scroll-margin-top: 80px;
            padding-top: 120px;
            padding-bottom: 120px;
            position: relative;
            overflow: hidden;
        }
        
        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 80px;
            font-weight: 700;
            letter-spacing: 1px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--primary-dark));
            bottom: -15px;
            left: 0;
            border-radius: 2px;
        }
        
        .section-subtitle {
            color: rgba(255,255,255,0.7);
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 60px;
        }
        
        /* Hero Section */
        .hero-section {
            height: 100vh;
            min-height: 800px;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        /* Glassmorphism Effect */
        .glass-card {
            -webkit-backdrop-filter: blur(16px);
            border-radius: 20px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            overflow: hidden;
        }
        
        .glass-card-light {
            background: var(--glass-light);
        }
        
        .glass-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }
        
        /* Button Styles */
        .btn-primary-custom {
            background: linear-gradient(45deg, var(--primary), var(--primary-dark));
            border: none;
            color: var(--dark);
            font-weight: 600;
            letter-spacing: 1px;
            padding: 12px 28px;
            border-radius: 50px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn-primary-custom:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(45deg, var(--primary-dark), var(--primary));
            transition: all 0.5s ease;
            z-index: -1;
        }
        
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(255, 193, 7, 0.4);
        }
        
        .btn-primary-custom:hover:before {
            width: 100%;
        }
        
        .btn-outline-custom {
            border: 2px solid var(--light);
            color: var(--light);
            font-weight: 600;
            letter-spacing: 1px;
            padding: 12px 28px;
            border-radius: 50px;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .btn-outline-custom:hover {
            color: var(--dark);
            border-color: var(--primary);
            background: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
        }
        
        /* Project Cards */
        .project-card {
            overflow: hidden;
            border-radius: 20px;
            transition: var(--transition);
            height: 100%;
            position: relative;
        }
        
        .project-card img {
            transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
            height: 240px;
            width: 100%;
            object-fit: cover;
        }
        
        .project-card:hover img {
            transform: scale(1.1);
        }
        
        .project-overlay {
            position: absolute;
            bottom: -100%;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            padding: 30px;
            transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .project-card:hover .project-overlay {
            bottom: 0;
        }
        
        .project-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--primary);
            color: var(--dark);
            padding: 5px 15px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Timeline */
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
            border-radius: 3px;
        }
        
        .timeline-item {
            padding: 20px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 30px;
            height: 30px;
            right: -15px;
            background-color: var(--primary);
            border: 4px solid var(--primary-dark);
            top: 15px;
            border-radius: 50%;
            z-index: 1;
            box-shadow: 0 0 0 4px rgba(255, 193, 7, 0.2);
        }
        
        .left {
            left: 0;
        }
        
        .right {
            left: 50%;
        }
        
        .right::after {
            left: -15px;
        }
        
        .timeline-date {
            position: absolute;
            width: 120px;
            background: var(--primary);
            color: var(--dark);
            padding: 5px 10px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 12px;
            text-align: center;
            top: 10px;
        }
        
        .left .timeline-date {
            right: -150px;
        }
        
        .right .timeline-date {
            left: -150px;
        }
        
        /* Skill Bars */
        .skill-bar {
            height: 10px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 5px;
            margin-bottom: 25px;
            position: relative;
            overflow: hidden;
        }
        
        .skill-progress {
            height: 100%;
            border-radius: 5px;
            background: linear-gradient(90deg, var(--primary), var(--primary-dark));
            position: relative;
            transition: width 1.5s cubic-bezier(0.215, 0.61, 0.355, 1);
        }
        
        .skill-progress:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, 
                            rgba(255,255,255,0.1) 0%, 
                            rgba(255,255,255,0.3) 50%, 
                            rgba(255,255,255,0.1) 100%);
            background-size: 200% 100%;
            animation: shimmer 2s infinite;
            border-radius: 5px;
        }
        
        @keyframes shimmer {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }
        
        .skill-name {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        /* Testimonials */
        .testimonial-card {
            border-left: 4px solid var(--primary);
            position: relative;
        }
        
        .testimonial-card:before {
            content: '\201C';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 80px;
            color: rgba(255, 193, 7, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .testimonial-content {
            position: relative;
            z-index: 1;
        }
        
        /* Contact Form */
        .form-control-custom {
            background-color: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            color: white;
            padding: 15px 20px;
            border-radius: 12px;
            transition: all 0.3s ease;
        }
        
        .form-control-custom:focus {
            background-color: rgba(255,255,255,0.1);
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
            color: white;
        }
        
        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.05); opacity: 0.8; }
        }
        
        .pulse {
            animation: pulse 3s ease-in-out infinite;
        }
        
        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; }
        
        /* Gradient Text */
        .gradient-text {
            background: linear-gradient(45deg, var(--primary), var(--primary-light));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        /* Background Shapes */
        .bg-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.15;
            z-index: -1;
        }
        
        .shape-1 {
            width: 600px;
            height: 600px;
            background: var(--primary);
            top: -300px;
            right: -300px;
        }
        
        .shape-2 {
            width: 400px;
            height: 400px;
            background: #4a00e0;
            bottom: -200px;
            left: -200px;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .section-title {
                margin-bottom: 60px;
            }
            
            .section-title:after {
                width: 40px;
                height: 3px;
                bottom: -12px;
            }
            
            .hero-section {
                min-height: 700px;
            }
        }
        
        @media (max-width: 768px) {
            section {
                padding-top: 80px;
                padding-bottom: 80px;
            }
            
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item::after {
                left: 18px;
            }
            
            .left::after, .right::after {
                left: 18px;
            }
            
            .right {
                left: 0%;
            }
            
            .left .timeline-date, 
            .right .timeline-date {
                position: relative;
                left: auto;
                right: auto;
                top: auto;
                margin-bottom: 10px;
                display: inline-block;
            }
        }
        
        @media (max-width: 576px) {
            .hero-section {
                min-height: 600px;
            }
            
            .section-title {
                font-size: 2rem;
                margin-bottom: 40px;
            }
        }