/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: black;
    color: white;
    line-height: 1.6;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 10%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 29, 33, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo {
    color: #00f7ff;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #00f7ff;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 8rem 10% 4rem;
    gap: 2rem;
    min-height: 100vh;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00f7ff;
}

.hero-content h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    opacity: 0;
    transform: translateY(20px);
    animation: popIn 0.5s forwards;
    animation-delay: 0.5s;
    color: #8b95a5;
    margin-bottom: 2rem;
    max-width: 600px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border: 2px solid #00f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00f7ff;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: #00f7ff;
    color: #1a1d21;
    box-shadow: 0 0 20px #00f7ff50;
    transform: translateY(-3px);
}

.download-cv {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #00f7ff;
    border-radius: 50px;
    color: #00f7ff;
    text-decoration: none;
    transition: all 0.3s;
}

.download-cv:hover {
    background-color: #00f7ff;
    color: #1a1d21;
    box-shadow: 0 0 20px #00f7ff50;
    transform: translateY(-3px);
}

.profile-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    padding-top: 30px;
}

.profile-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0%;
    position: relative;
    top: -30px;
}

.profile-image::after {
    display: none;
}

/* About Section */
.about {
    padding: 4rem 10%;
    text-align: center;
    background: linear-gradient(to bottom right, #1a1d2100, #1a1d21ff, #1a1d2100);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about p {
    color: #8b95a5;
    max-width: 800px;
    margin: 0 auto 1rem;
}

/* Skills Section */
.skills {
    padding: 4rem 10%;
    text-align: center;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.skill-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: left;
    transition: box-shadow 0.3s ease;
}

.skill-card:hover {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.skill-card h3 {
    color: #00f7ff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.skill-list {
    list-style: none;
}

.skill-list li {
    color: #8b95a5;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.skill-list li::before {
    content: '→';
    color: #00f7ff;
    margin-right: 0.5rem;
}

/* Projects Section */
.projects {
    padding: 4rem 10%;
    text-align: center;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: left;
    transition: box-shadow 0.3s ease;
}

.project-card:hover {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.project-card p {
    color: #8b95a5;
    margin-bottom: 1.5rem;
}

.tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: transparent;
    border: 1px solid #00f7ff;
    color: #00f7ff;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #00f7ff;
    color: #1a1d21;
    box-shadow: 0 0 15px rgba(0, 247, 255, 0.3);
}

/* Contact Section */
.contact {
    padding: 4rem 10%;
    text-align: center;
}

.contact p {
    color: #8b95a5;
    margin-bottom: 2rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #00f7ff;
    border-radius: 50px;
    color: #00f7ff;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-btn:hover {
    background-color: #00f7ff;
    color: #1a1d21;
    box-shadow: 0 0 20px #00f7ff50;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 6rem;
    }

    .profile-image {
        margin: 0 auto;
        width: 300px;
        height: 300px;
    }

    .skills-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .hero-content h2 {
        font-size: 3rem;
    }

    body {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .project-card, .skill-card {
        margin: 1rem 0;
    }

    .download-cv {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
        margin: 0 auto;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 20px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeIn 0.5s ease-out;
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#animated-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: popIn 0.5s forwards;
}

.attendance-title {
    color: #00f7ff; /* Change to the blue color used in your website */
    /* Add any other styles you need */
}

.ml-analysis-title {
    color: #00f7ff; /* Change to the blue color used in your website */
    /* Add any other styles you need */
}

.hero-content strong {
    color: #FFFFFF; /* Keep this white */
    /* No other styles should change this color */
}