/* General Styles */
:root {
    --primary-color: #1abc9c;
    --secondary-color: #2c3e50;
    --background-light: #f4f4f9;
    --background-dark: #1a1a1a;
    --text-light: #333;
    --text-dark: #f4f4f9;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, var(--primary-color), #3498db);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

body {
    background-color: var(--background-light);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

body.dark-mode {
    background-color: var(--background-dark);
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Custom Cursor */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    position: absolute;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
    z-index: 10000;
}

.cursor.hover {
    width: 40px;
    height: 40px;
    background-color: rgba(26, 188, 156, 0.2);
}

/* Header Styles */
header {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 20px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar Styles */
.navbar {
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 10px 20px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    padding: 10px 15px;
    border-radius: 10px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.nav-links li:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.nav-links li a {
    color: var(--text-light);
    font-weight: 500;
}

body.dark-mode .nav-links li a {
    color: var(--text-dark);
}

/* About Section */
.about-section {
    padding: 100px 20px;
    text-align: center;
    background-color: var(--background-light);
}

body.dark-mode .about-section {
    background-color: var(--background-dark);
}

.about-title {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.bio, .skills {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

body.dark-mode .description {
    color: var(--text-dark);
}

.skills h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.skills-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skills-list li {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.skills-list li:hover {
    transform: translateY(-5px);
}

/* Footer Styles */
footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.foot {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.foot img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.foot img:hover {
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .head {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-direction: column;
        align-items: center;
    }

    .about-title {
        font-size: 1.5rem;
    }
}