/* Custom CSS */
        :root {
            --primary-color: #3b82f6;
            --secondary-color: #1e40af;
            --dark-bg: #111827;
            --card-bg: #1f2937;
            --text-primary: #ffffff;
            --text-secondary: #d1d5db;
            --border-color: #374151;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-primary);
            line-height: 1.6;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: rgba(17, 24, 39, 0.95);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--border-color);
            z-index: 1000;
        }

        .nav-link {
            transition: color 0.3s ease;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary-color);
        }

        /* Sections */
        .section {
            display: none;
            min-height: 100vh;
            padding-top: 80px;
        }

        .section.active {
            display: block;
        }

        /* Hero Section */
        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-size: cover;
            background-position: center;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(17, 24, 39, 0.6);
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .highlight {
            color: var(--primary-color);
        }

        /* Buttons */
        .btn-primary {
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
        }

        .btn-outline {
            transition: all 0.3s ease;
        }

        .btn-outline:hover {
            border-color: var(--primary-color);
            transform: translateY(-2px);
        }

        /* Social Links */
        .social-link {
            transition: all 0.3s ease;
        }

        .social-link:hover {
            color: var(--primary-color);
            transform: translateY(-2px);
        }

        /* Skill Bars */
        .skill-bar {
            transition: width 1s ease-in-out;
        }

        /* Timeline */
        .timeline-item {
            position: relative;
            padding-left: 2rem;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.5rem;
            width: 0.75rem;
            height: 0.75rem;
            background: var(--primary-color);
            border-radius: 50%;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            left: 0.375rem;
            top: 1.25rem;
            width: 1px;
            height: calc(100% - 1rem);
            background: var(--border-color);
        }

        .timeline-item:last-child::after {
            display: none;
        }

        /* Project Cards */
        .project-card {
            transition: all 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 2000;
        }

        .modal.active {
            display: block;
        }

        .modal-backdrop {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(8px);
        }

        .modal-content {
            position: relative;
            background-color: var(--card-bg);
            max-width: 800px;
            margin: 2rem auto;
            border-radius: 8px;
            max-height: 90vh;
            overflow-y: auto;
        }

        /* Toast Notifications */
        .toast {
            position: fixed;
            bottom: 20px;
            right: 20px;
            padding: 12px 24px;
            border-radius: 8px;
            color: white;
            font-weight: 500;
            z-index: 3000;
            animation: slideIn 0.3s ease;
        }

        .toast.success {
            background-color: #10b981;
        }

        .toast.error {
            background-color: #ef4444;
        }

        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 3rem !important;
            }
            
            .nav-menu {
                display: none;
            }
            
            .about-grid,
            .resume-grid {
                grid-template-columns: 1fr !important;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
            }
            
            .modal-content {
                margin: 1rem;
                max-height: 85vh;
            }
        }

        @media (max-width: 1024px) {
            .resume-grid {
                grid-template-columns: 1fr !important;
                gap: 2rem !important;
            }
        }

        /* Animations */
        .fade-in {
            animation: fadeIn 0.6s ease forwards;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .slide-up {
            animation: slideUp 0.6s ease forwards;
        }
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .zoom-in {
            animation: zoomIn 0.6s ease forwards;
        }
        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        .rotate-in {
            animation: rotateIn 0.6s ease forwards;
        }
        @keyframes rotateIn {
            from {
                opacity: 0;
                transform: rotate(-10deg);
            }
            to {
                opacity: 1;
                transform: rotate(0);

            }
            
        }   
/* End of Custom CSS */   