* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    padding: 40px 20px;
    min-height: 100vh;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Profile Card */
.profile-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow: 0 25px 45px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ff6b35;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.profile-img:hover {
    transform: scale(1.05);
}

/* Marquee */
.marquee {
    background: transparent;
    padding: 15px 0;
    margin-top: 20px;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.marquee span {
    display: inline-block;
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(90deg, #ff6b35, #ff3388, #00ffaa, #ffcc00, #ff6b35);
    background-size: 400% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: slideLeftToRight 12s linear infinite, gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    100% { background-position: 100% center; }
}

@keyframes slideLeftToRight {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.marquee span:hover {
    animation-play-state: paused;
    cursor: pointer;
}

h1 {
    background: linear-gradient(135deg, #fff, #ff6b35);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-top: 20px;
    font-size: 32px;
}

.title {
    color: #ff6b35;
    font-size: 18px;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    border-radius: 24px;
    padding: 28px;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

h2 {
    color: #ff6b35;
    border-left: 4px solid #ff6b35;
    padding-left: 15px;
    margin-bottom: 20px;
    font-size: 24px;
}

/* Skills Section */
.skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.skill-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 18px 20px;
    min-width: 130px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.3);
    cursor: default;
}

.skill-card:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.skill-icon {
    font-size: 40px;
    margin-bottom: 10px;
    display: block;
}

.skill-name {
    font-size: 18px;
    font-weight: 600;
    color: #ffaa66;
    margin-bottom: 8px;
}

.skill-level {
    font-size: 12px;
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 8px;
}

.skill-level span {
    color: #ff6b35;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    margin-top: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #f09819);
    border-radius: 10px;
    transition: width 1s ease;
}

/* Project Items */
.project-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    margin: 12px 0;
    border-radius: 16px;
    border-left: 3px solid #ff6b35;
    transition: all 0.3s;
}

.project-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.project-item strong {
    color: #ff6b35;
    font-size: 18px;
}

.project-item a {
    color: #ffaa66;
    text-decoration: none;
    transition: color 0.3s;
}

.project-item a:hover {
    color: #ff6b35;
    text-decoration: underline;
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    margin: 12px 0;
    transition: all 0.3s;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(8px);
}

.contact-item span {
    font-size: 24px;
}

.contact-item a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #ff6b35;
}

/* Footer */
.footer {
    text-align: center;
    padding: 25px;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 600px) {
    .profile-img { width: 120px; height: 120px; }
    h1 { font-size: 24px; }
    .title { font-size: 14px; }
    h2 { font-size: 20px; }
    .card { padding: 20px; }
    .marquee span { font-size: 14px; }
}
