/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Orbitron', sans-serif;
}

body {
    background-color: #111;
    color: #fff;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    font-weight: 500;
    transition: color 0.3s, transform 0.3s;
}

.navbar a:hover {
    color: #00c4cc; /* Neon Blue */
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #000 url('assets/images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
}

.hero-content h1 {
    font-size: 3rem;
    color: #00c4cc; /* Neon Blue */
    margin-bottom: 20px;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    animation: typewriter 3s steps(30) forwards;
}

.cta-button {
    background-color: #00c4cc;
    color: #000;
    padding: 15px 30px;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #ff0066; /* Neon Pink */
    transform: scale(1.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #111;
    position: relative;
    bottom: 0;
    width: 100%;
}

@keyframes typewriter {
    0% { width: 0; }
    100% { width: 100%; }
}

/* General Styling for About Page */
.navbar {
    background-color: #000;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar a.logo {
    font-size: 2em;
    color: #00c4cc;  /* Neon Blue */
    text-decoration: none;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1em;
}

.navbar ul li a:hover {
    color: #00c4cc;  /* Neon Blue */
}

/* About Page Styling */
.about {
    padding: 40px 20px;
    background-color: #111;
    text-align: center;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-header h1 {
    font-size: 2.5em;
    color: #00c4cc;
    margin-bottom: 10px;
}

.about-header p {
    font-size: 1.2em;
    color: #ddd;
    margin-bottom: 40px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

/* Skill Group Styling */
.skill-group {
    flex: 1 1 calc(33% - 20px); /* Ensures each skill group takes up 1/3 of the container */
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: #ddd;
}

.skill-group h3 {
    font-size: 1.5em;
    color: #00c4cc; /* Neon Blue */
    margin-bottom: 15px;
}

.skill-group ul {
    list-style: none;
    padding: 0;
}

.skill-group ul li {
    font-size: 1.2em;
    margin: 5px 0;
}

.skill-group ul li:hover {
    color: #00c4cc; /* Neon Blue on hover */
}

/* Progress Bars */
.progress-bar {
    width: 100%;
    background-color: #333;
    border-radius: 10px;
    margin-top: 20px;
    overflow: hidden;
}

.progress {
    height: 10px;
    background-color: #00c4cc;
    border-radius: 5px;
}

/* Avatar Section */
.avatar-section {
    text-align: center;
    margin-bottom: 40px;
}

.avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00c4cc;
}

.avatar-name {
    font-size: 1.5em;
    color: #00c4cc;
    margin-top: 10px;
}

/* Skills Section */
.skills {
    margin-top: 30px;
    width: 100%;
    text-align: left;
}

.skill {
    margin-bottom: 20px;
}

.skill label {
    display: block;
    font-size: 1.2em;
    color: #ddd;
    margin-bottom: 5px;
}

/* Progress Bar Container */
.progress-bar {
    width: 100%;
    height: 10px;
    background-color: #ddd;
    border-radius: 5px;
    margin-top: 10px;
}

/* Progress Bar */
.progress {
    height: 100%;
    background-color: #00c4cc; /* Neon Blue */
    border-radius: 5px;
    transition: width 0.3s ease-in-out;
}


/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #222;
}

::-webkit-scrollbar-thumb {
    background-color: #00c4cc;
    border-radius: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-header h1 {
        font-size: 2em;
    }

    .section h2 {
        font-size: 1.5em;
    }

    .skills {
        text-align: center;
    }

    .skill label {
        font-size: 1.1em;
    }
}
/* Container for the skills section */
.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

/* Skills Grid with two columns */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two equal columns */
    gap: 30px;
    width: 100%;
}

/* Skill Group */
.skill-group {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: #ddd;
}

.skill-group h3 {
    font-size: 1.5em;
    color: #00c4cc; /* Neon Blue */
    margin-bottom: 15px;
}

.skill-group ul {
    list-style: none;
    padding: 0;
}

.skill-group ul li {
    font-size: 1.2em;
    margin: 5px 0;
}

.skill-group ul li:hover {
    color: #00c4cc; /* Neon Blue on hover */
}

/* Progress Bar Container */
.progress-bar {
    width: 100%;
    height: 10px;
    background-color: #ddd;
    border-radius: 5px;
    margin-top: 10px;
}

/* Progress Bar */
.progress {
    height: 100%;
    background-color: #00c4cc; /* Neon Blue */
    border-radius: 5px;
    transition: width 0.3s ease-in-out;
}
/* Videos Section */
.videos {
    padding: 40px;
    background-color: #0a0a0a;
    color: #ddd;
    text-align: center;
}

.videos-container h1 {
    font-size: 2.5em;
    color: #00c4cc;
    margin-bottom: 30px;
}

/* Featured Video */
.featured-video {
    margin-bottom: 50px;
}

.featured-video iframe {
    width: 100%;
    border-radius: 12px;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-item {
    background-color: #1e1e1e;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 196, 204, 0.2);
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 196, 204, 0.5);
}

.video-item iframe {
    width: 100%;
    height: 200px;
    border-radius: 8px;
}

.video-item p {
    margin-top: 10px;
    font-size: 1.1em;
}
/* Projects Page Styling */
.projects {
    padding: 40px 20px;
    background-color: #111;
    text-align: center;
}

.projects-container h1 {
    font-size: 2.5em;
    color: #00c4cc; /* Neon Blue */
    margin-bottom: 20px;
}

.projects-container p {
    font-size: 1.2em;
    color: #ddd;
    margin-bottom: 40px;
}

.project-item {
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(0, 196, 204, 0.3);
}

.project-item h2 {
    font-size: 2em;
    color: #00c4cc;
    margin-bottom: 15px;
}

.project-item p {
    font-size: 1.1em;
    color: #ddd;
    margin-bottom: 20px;
}

.project-link {
    font-size: 1.2em;
    color: #00c4cc;
    text-decoration: none;
    border: 2px solid #00c4cc;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.project-link:hover {
    background-color: #00c4cc;
    color: #111;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #111;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .project-item {
        margin: 10px;
    }

    .projects-container h1 {
        font-size: 2em;
    }

    .project-item h2 {
        font-size: 1.8em;
    }

    .project-item p {
        font-size: 1em;
    }

    .project-link {
        font-size: 1em;
    }
}
