/* General Styles */
:root {
    --primary-color: #6200ea;
    --secondary-color: #3700b3;
    --background-color: #f4f4f9;
    --text-color: #333;
    --white: #ffffff;
    --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);
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

header h1 {
    font-size: 3rem;
    margin: 0;
    animation: fadeInDown 1s ease-in-out;
}

header p {
    font-size: 1.2rem;
    margin: 0.5rem 0 0;
    animation: fadeInUp 1s ease-in-out;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-top: 1.5rem;
    border: 4px solid var(--white);
    animation: zoomIn 1s ease-in-out;
}

/* Navigation */
nav {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 1.5rem;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    animation: fadeIn 1s ease-in-out;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    animation: slideInLeft 1s ease-in-out;
}

.about-image {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    object-fit: cover;
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.skill-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-10px);
}

.skill-bar {
    background: var(--glass-bg);
    border-radius: 8px;
    height: 10px;
    margin-top: 0.5rem;
}

.skill-level {
    background: var(--primary-color);
    height: 100%;
    border-radius: 8px;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.project-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-media img,
.project-media video {
    width: 100%;
    border-radius: 8px;
    margin-top: 1rem;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn:hover {
    background: var(--secondary-color);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

.social-links a {
    color: var(--white);
    margin: 0 0.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    .btn-top {
        margin-top: 5px;
        font-size: small;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        width: 150px;
        height: 150px;
    }

    .skills-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
}



/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    /* Semi-transparent white */
    backdrop-filter: blur(10px);
    /* Glassmorphism effect */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: background 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand a {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.navbar-links ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar-links ul li {
    margin: 0 1rem;
}

.navbar-links ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-links ul li a:hover {
    color: var(--primary-color);
}

.navbar-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .navbar-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        padding: 1rem;
    }

    .navbar-links.active {
        display: block;
    }

    .navbar-links ul {
        flex-direction: column;
        align-items: center;
    }

    .navbar-links ul li {
        margin: 0.5rem 0;
    }

    .navbar-toggle {
        display: block;
    }
}


/* Contact Section */
#contact {
    text-align: center;
    padding: 4rem 0;
}

#contact .btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

#contact .btn:hover {
    background: var(--secondary-color);
}

.social-icons-section {
    margin-top: 2rem;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.social-icons-section.hidden {
    opacity: 0;
    transform: translateY(20px);
    display: none;
}

.social-icons-section.visible {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: var(--secondary-color);
    transform: translateY(-5px);
}

.social-icon span {
    font-size: 1rem;
    font-weight: 500;
}


/* Social Links Section */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.social-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.social-item:hover {
    transform: translateY(-10px);
}

.social-icon {
    color: var(--primary-color);
    font-size: 2rem;
    transition: color 0.3s ease;
}

.social-icon span {
    display: block;
    margin-top: 0.5rem;
    font-size: 1rem;
    color: var(--text-color);
}

.social-item:hover .social-icon {
    color: var(--secondary-color);
}




/* Social Links Section */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.social-item {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
}

.social-item:hover {
    transform: translateY(-10px);
}

.social-icon {
    color: var(--primary-color);
    font-size: 2rem;
    transition: color 0.3s ease;
}

.social-icon span {
    display: block;
    margin-top: 0.5rem;
    font-size: 1rem;
    color: var(--text-color);
}

.social-item:hover .social-icon {
    color: var(--secondary-color);
}

/* Copy Button */
/* Copy Button */
.copy-btn {
    background: transparent;
    border: none;
    color: var(--primary-color);
    font-size: 1rem;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    transition: color 0.3s ease;
}

.copy-btn:hover {
    color: var(--secondary-color);
}

.copy-btn i {
    font-size: 1.2rem;
    /* Adjust icon size */
}

/* Media Slider Styles */
.media-slider {
    margin: 20px 0;
}

.media-slide {
    background: #1a1a1a;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.media-slide img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.media-slide video {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
}

/* Slick Carousel Customization */
.slick-prev:before,
.slick-next:before {
    color: #fff;
    font-size: 30px;
}

.slick-prev {
    left: -40px;
}

.slick-next {
    right: -40px;
}

.slick-dots li button:before {
    color: #fff;
}







/* todos/todo_status.css */
.todo-status-list {
    margin: 20px 0;
}

.todo-item {
    background: #f5f5f5;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    position: relative;
}

.todo-item.completed {
    background: #e8f5e9;
    /* Light green for completed tasks */
}

.todo-item.overdue {
    background: #ffebee;
    /* Light red for overdue tasks */
}

.todo-item.pending {
    background: #fff3e0;
    /* Light orange for pending tasks */
}

.status-indicator {
    margin-top: 10px;
    font-weight: bold;
}

.status-indicator .status {
    text-transform: capitalize;
}

.todo-item.overdue .status {
    color: #d32f2f;
    /* Red for overdue status */
}

.todo-item.completed .status {
    color: #388e3c;
    /* Green for completed status */
}

.todo-item.pending .status {
    color: #f57c00;
    /* Orange for pending status */
}