/* Reset and Base Styles 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #111111;
            color: #ffffff;
            line-height: 1.6;
        }
        
         Header Styles 
        header {
            padding: 20px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo-circle {
            width: 40px;
            height: 40px;
            background-color: #ff3b3b;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: white;
        }
        
        .logo-text {
            font-size: 24px;
            font-weight: bold;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        nav a {
            text-decoration: none;
            color: #ffffff;
            position: relative;
            padding-bottom: 5px;
        }
        
        nav a.active {
            color: #ff3b3b;
        }
        
        nav a.active::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 100%;
            height: 2px;
            background-color: #ff3b3b;
        }
        
        .contact-btn {
            background-color: transparent;
            color: white;
            border: 1px solid #ff3b3b;
            border-radius: 30px;
            padding: 10px 25px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .contact-btn:hover {
            background-color: #ff3b3b;
        }

        */

.comp {
    margin-top: 50px;
}

/* Main Content Styles */
main {
    padding: 50px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 42px;
    margin-bottom: 50px;
    position: relative;
}

.section-title span {
    color: #ff3b3b;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background-color: #ff3b3b;
}

/* Skills Section */
.skills-container {
    display: grid;
    /* grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); */
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.skill-category {
    background-color: rgba(255, 59, 59, 0.05);
    border: 1px solid rgba(255, 59, 59, 0.2);
    border-radius: 10px;
    padding: 30px;
    transition: transform 0.3s ease;
}

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

.skill-category h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ff3b3b;
}

.skill-list {
    list-style: none;
}

.skill-item {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.skill-name {
    display: flex;
    justify-content: space-between;
}

.skill-progress {
    width: 100%;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff3b3b, #ff6b6b);
    border-radius: 4px;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    width: 0%;
    will-change: width;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Experience Section */
.experience-container {
    position: relative;
    padding-left: 40px;
}

.timeline {
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 0;
    width: 2px;
    background-color: rgba(255, 59, 59, 0.5);
}

.experience-item {
    position: relative;
    margin-bottom: 60px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.experience-item:hover {
    transform: translateX(10px);
    background-color: rgba(255, 59, 59, 0.08);
}

.experience-item::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 30px;
    width: 20px;
    height: 20px;
    background-color: #ff3b3b;
    border-radius: 50%;
    z-index: 1;
}

.experience-item .date {
    display: inline-block;
    background-color: rgba(255, 59, 59, 0.2);
    color: #ff3b3b;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
}

.experience-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.experience-item .company {
    color: #ff3b3b;
    font-weight: 600;
    margin-bottom: 20px;
}

.experience-item ul {
    padding-left: 20px;
    margin-top: 15px;
}

.experience-item ul li {
    margin-bottom: 8px;
}

/* Red Circle Background */
.background-circle {
    position: fixed;
    width: 600px;
    height: 600px;
    background-color: rgba(255, 59, 59, 0.15);
    border-radius: 50%;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    filter: blur(80px);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    opacity: 0;
}

.animated {
    animation: fadeIn 0.8s forwards;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        padding: 15px 20px;
    }

    .logo {
        display: flex;
        align-items: center;
        flex-shrink: 0;
    }
    
    .logo-text {
        white-space: nowrap;
    }

    nav ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .section-title {
        font-size: 32px;
    }

    .skills-container {
        grid-template-columns: 1fr;
    }

    .experience-container {
        padding-left: 30px;
    }

    .experience-item::before {
        left: -40px;
    }
}