/* Reset and base styles */
.hh{
    align-items: center;
    justify-content: center;
}

.body {
    background-color: #000000; /* Black background */
    color: #18bdff; /* White text */
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* White text */
    background-color: #000000; /* Black background */
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #ffeb3b;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

nav li {
    margin: 0 30px;
}

nav a, nav span {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 25px;
    position: relative;
    border-bottom: 2px solid transparent;
}

nav a:hover, nav span:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px #ffeb3b, 0 0 20px #ffeb3b;
    border-bottom-color: #ffeb3b;
}

/* Header */
header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: #ffffff;
    padding: 150px 0 100px;
    text-align: center;
    margin-top: 80px;
    position: relative;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(255, 235, 59, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(33, 150, 243, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

header .container {
    position: relative;
    z-index: 1;
}

header h1 {
    font-size: 4em;
    margin-bottom: 20px;
    font-weight: 700;
    background: linear-gradient(45deg, #ffeb3b, #2196f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 235, 59, 0.5);
}

header p {
    font-size: 1.3em;
    margin-bottom: 10px;
    opacity: 0.9;
}

/* Sections */
section {
    padding: 80px 0;
    background-color: #000000;
    position: relative;
}

section:nth-child(even) {
    background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffeb3b, #2196f3, transparent);
}

section h2 {
    font-size: 3em;
    margin-bottom: 10px;
    color: #ffffff;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}



#projects h2 {
    text-align: center;
}

.hh {
    color: #ffeb3b;
    font-weight: 600;
}

/* About */
#about p {
    font-size: 1.3em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #e0e0e0;
    line-height: 1.8;
    padding: 0 20px;
}

/* Skills */
#skills ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

#skills li {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 235, 59, 0.3);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.1em;
    font-weight: 500;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

#skills li i {
    font-size: 2em;
    margin-bottom: 5px;
    color: #ffeb3b;
}

#skills li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(33, 150, 243, 0.1), transparent);
    transition: left 0.5s ease;
}

#skills li:hover::before {
    left: 100%;
}

#skills li:hover {
    transform: translateY(-15px) scale(1.1);
    box-shadow: 0 0 40px rgba(33, 150, 243, 0.6), 0 0 80px rgba(255, 235, 59, 0.3);
}

/* Projects */
#projects .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.project {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 235, 59, 0.3);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.project::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(33, 150, 243, 0.1), transparent);
    transition: left 0.5s ease;
}

.project:hover::before {
    left: 100%;
}

.project:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #2196f3;
    box-shadow: 0 20px 60px rgba(33, 150, 243, 0.4), 0 0 100px rgba(255, 235, 59, 0.2);
}

.project h3 {
    color: #ffeb3b;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 235, 59, 0.5);
}

.project p {
    color: #e0e0e0;
    line-height: 1.7;
}

/* Contact */
#contact p {
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
    font-size: 1.2em;
}

.social-links {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.social-links a {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    border: 1px solid rgba(255, 235, 59, 0.3);
    position: relative;
}

.social-links a i {
    color: #ffeb3b;
}

.social-links a:hover {
    transform: scale(1.2);
    box-shadow: 0 0 40px rgba(33, 150, 243, 0.6), 0 0 80px rgba(255, 235, 59, 0.4);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #ffffff;
    text-align: center;
    padding: 40px 0;
    border-top: 2px solid #ffeb3b;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(33, 150, 243, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

footer .container {
    position: relative;
    z-index: 1;
}

footer p {
    font-size: 1.1em;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        clip-path: none;
        padding: 80px 0 40px;
    }

    header h1 {
        font-size: 2.5em;
    }

    nav ul {
        flex-direction: column;
        padding: 10px 0;
    }

    nav li {
        margin: 5px 0;
    }

    #skills ul {
        flex-direction: column;
        align-items: center;
    }

    #projects .container {
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }
}
