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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    cursor: url("images/cursor.png"), auto;
}

nav {
    background: #1a1a1a;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
}

nav a {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #6366f1;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 2rem 2rem;
}

section {
    margin: 3rem 0;
    padding: 2rem 0;
}

.hero {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 3rem 0;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #6366f1;
    flex-shrink: 0;
}

.hero-content h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.typing-text {
    font-size: 1.2rem;
    color: #9ca3af;
    min-height: 40px;
    margin: 1rem 0;
}

.cursor {
    display: inline-block;
    width: 2px;
    height: 1.2rem;
    background: #6366f1;
    margin-left: 3px;
    animation: blink 0.7s infinite;
}
.company {
    text-decoration: none; 
    color: #000000;   
    transition: color 0.3s;
}

.company:hover {
    color: #ff0000; 
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #6366f1;
    border-color: #6366f1;
    transform: translateY(-2px);
}

h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #333;
}

.experience-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #1a1a1a;
    border-radius: 8px;
    border-left: 3px solid #6366f1;
}

.experience-item h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.company {
    color: #6366f1;
    font-weight: 600;
}

.date {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.experience-item ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.experience-item li {
    color: #9ca3af;
    margin: 0.3rem 0;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.skill-category {
    padding: 1.5rem;
    background: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #333;
}

.skill-category h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.skill-category li {
    padding: 0.4rem 0;
    color: #9ca3af;
}

.skill-category li:before {
    content: "▹ ";
    color: #6366f1;
}

.project-card {
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #333;
}

.project-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.project-logo {
    max-width: 150px;
    margin: 1rem 0;
}

.project-card p {
    color: #9ca3af;
    margin: 0.8rem 0;
}

.project-card ul {
    margin-left: 1.5rem;
    color: #9ca3af;
}

.project-card a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.6rem 1.2rem;
    background: #6366f1;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
}

.project-card a:hover {
    background: #4f46e5;
}

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

.cert-list li {
    padding: 1rem;
    margin: 0.5rem 0;
    background: #1a1a1a;
    border-radius: 6px;
    border-left: 3px solid #6366f1;
    color: #9ca3af;
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.interest-item {
    padding: 1rem;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    text-align: center;
}

footer {
    text-align: center;
    padding: 2rem;
    color: #666;
    border-top: 1px solid #333;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    nav ul {
        gap: 1.5rem;
        font-size: 0.9rem;
    }
}

