@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500&display=swap');


        
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-color: #E6182A;
            --secondary-color: #ff4757;
            --bg-dark: #0a0e27;
            --bg-darker: #060a1e;
            --bg-card: #1a1f3a;
            --text-light: #e0e0e0;
            --text-white: #ffffff;
            --accent-blue: #00d4ff;
            --accent-purple: #9b59b6;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-light);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }
        
        /* Navigation */
        nav {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 20px 8%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        nav.scrolled {
            padding: 15px 8%;
            background: rgba(10, 14, 39, 0.98);
        }
        
        /* .logo {
            font-size: 28px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        } */
        
        .logo img{
            width: auto;
            height: 70px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
        }
        
        nav ul li a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            position: relative;
            transition: color 0.3s ease;
        }
        
        nav ul li a::before {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover {
            color: var(--text-white);
        }
        
        nav ul li a:hover::before {
            width: 100%;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 150px 8% 60px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(230, 24, 42, 0.15), transparent);
            top: -200px;
            right: -200px;
            border-radius: 50%;
            animation: pulse 4s ease-in-out infinite;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent);
            bottom: -100px;
            left: -100px;
            border-radius: 50%;
            animation: pulse 5s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }
        
        .hero-content {
            z-index: 2;
            max-width: 900px;
            animation: fadeInUp 1s ease;
        }
        
        .hero-content p.greeting {
            font-size: 20px;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 500;
        }
        
        .hero-content h1 {
            font-size: 70px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 25px;
            background: linear-gradient(135deg, var(--text-white), var(--text-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-content h1 span {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .typed-text {
            font-size: 24px;
            color: var(--accent-blue);
            font-family: 'Fira Code', monospace;
            margin-bottom: 30px;
            min-height: 35px;
        }
        
        .hero-content .description {
            font-size: 18px;
            color: var(--text-light);
            margin-bottom: 40px;
            line-height: 1.8;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Stats Section */
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 60px;
            z-index: 2;
            position: relative;
        }
        
        .stat-card {
            background: var(--bg-card);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-color);
            box-shadow: 0 10px 30px rgba(230, 24, 42, 0.2);
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 16px;
            color: var(--text-light);
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Buttons */
        .btn {
            display: inline-block;
            padding: 14px 40px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--text-white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 16px;
            position: relative;
            overflow: hidden;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            transition: left 0.3s ease;
            z-index: -1;
        }
        
        .btn:hover::before {
            left: 0;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(230, 24, 42, 0.4);
        }
        
        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary-color);
            margin-left: 15px;
        }
        
        .btn-outline:hover {
            background: var(--primary-color);
        }
        
        /* Section Title */
        .section-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 50px;
            text-align: center;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        }
        
        /* Skills Section */
        #skills {
            padding: 100px 8%;
            background: var(--bg-darker);
        }
        
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }
        
        .skill-category {
            background: var(--bg-card);
            padding: 35px;
            border-radius: 20px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .skill-category:hover {
            transform: translateY(-10px);
            border-color: var(--primary-color);
            box-shadow: 0 15px 40px rgba(230, 24, 42, 0.15);
        }
        
        .skill-category i {
            font-size: 40px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .skill-category h3 {
            font-size: 22px;
            margin-bottom: 20px;
            color: var(--text-white);
        }
        
        .skill-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .skill-tag {
            background: rgba(230, 24, 42, 0.1);
            color: var(--text-light);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 13px;
            border: 1px solid rgba(230, 24, 42, 0.2);
            transition: all 0.3s ease;
        }
        
        .skill-tag:hover {
            background: var(--primary-color);
            color: var(--text-white);
            transform: scale(1.05);
        }
        
        /* Timeline Section */
        #timeline {
            padding: 100px 8%;
        }
        
        .timeline-container {
            max-width: 1000px;
            margin: 60px auto 0;
            position: relative;
        }
        
        .timeline-container::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
        }
        
        .timeline-item {
            display: flex;
            margin-bottom: 50px;
            position: relative;
        }
        
        .timeline-item:nth-child(odd) {
            flex-direction: row-reverse;
        }
        
        .timeline-content {
            width: 45%;
            background: var(--bg-card);
            padding: 30px;
            border-radius: 15px;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }
        
        .timeline-content:hover {
            transform: scale(1.05);
            border-color: var(--primary-color);
            box-shadow: 0 10px 30px rgba(230, 24, 42, 0.2);
        }
        
        .timeline-date {
            font-size: 14px;
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .timeline-content h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--text-white);
        }
        
        .timeline-content p {
            color: var(--text-light);
            line-height: 1.6;
        }
        
        .timeline-dot {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: var(--primary-color);
            border-radius: 50%;
            border: 4px solid var(--bg-dark);
            z-index: 10;
        }
        
        /* Projects Section */
        #projects {
            padding: 100px 8%;
            background: var(--bg-darker);
        }
        
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 35px;
            margin-top: 60px;
        }
        
        .project-card {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 35px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
            overflow: hidden;
        }
        
        .project-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        }
        
        .project-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-color);
            box-shadow: 0 20px 50px rgba(230, 24, 42, 0.2);
        }
        
        .project-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .project-icon i {
            font-size: 28px;
            color: var(--text-white);
        }
        
        .project-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--text-white);
        }
        
        .project-card p {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 20px;
        }
        
        .tech-badge {
            background: rgba(0, 212, 255, 0.1);
            color: var(--accent-blue);
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 12px;
            border: 1px solid rgba(0, 212, 255, 0.2);
        }
        
        /* Contact Section */
        #contacts {
            padding: 50px 8%;
        }
        
        .contact-container {
            display: grid;
            
            margin-top: 60px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .contact-info {
            text-align: center;
            color: var(--text-white);
        }

        .contact-info h3{
            font-size: 28px;
            margin-bottom: 30px;
            text-align: center;
            color: var(--text-white);
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
            padding: 20px;
            background: var(--bg-card);
            border-radius: 15px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .contact-item:hover {
            border-color: var(--primary-color);
            transform: translateX(10px);
        }
        
        .contact-item i {
            font-size: 24px;
            color: var(--primary-color);
            width: 40px;
        }
        
        .social-links {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }
        
        .social-links a {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-card);
            border-radius: 50%;
            color: var(--text-light);
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .social-links a:hover {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--text-white);
            transform: translateY(-5px) rotate(5deg);
        }
        
        form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        form input,
        form textarea {
            width: 100%;
            padding: 18px;
            background: var(--bg-card);
            border: 2px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            color: var(--text-white);
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        
        form input:focus,
        form textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            background: rgba(26, 31, 58, 0.8);
        }
        
        form textarea {
            resize: vertical;
            min-height: 150px;
        }
        
        .form-status {
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            font-weight: 500;
            display: none;
        }
        
        .form-status.success {
            background: rgba(46, 213, 115, 0.1);
            color: #2ed573;
            border: 1px solid rgba(46, 213, 115, 0.3);
            display: block;
        }
        
        .form-status.error {
            background: rgba(230, 24, 42, 0.1);
            color: var(--primary-color);
            border: 1px solid rgba(230, 24, 42, 0.3);
            display: block;
        }
        
        /* Footer */
        footer {
            background: var(--bg-darker);
            padding: 40px 8%;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        footer p {
            color: var(--text-light);
        }
        
        /* Responsive */
        @media (max-width: 968px) {
            nav ul {
                gap: 20px;
            }
            
            .hero-content h1 {
                font-size: 50px;
            }
            
            .stats {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .timeline-container::before {
                left: 0;
            }
            
            .timeline-item,
            .timeline-item:nth-child(odd) {
                flex-direction: column;
            }
            
            .timeline-content {
                width: 100%;
                margin-left: 30px;
            }
            
            .timeline-dot {
                left: 0;
                transform: translateX(0);
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .projects-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 600px) {
            .hero-content h1 {
                font-size: 36px;
            }
            
            .typed-text {
                font-size: 18px;
            }
            
            .stats {
                grid-template-columns: 1fr;
            }
            
            nav ul {
                display: none;
            }
        }
    