/* Hero Socials */
.hero-socials {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    z-index: 2;
}

.hero-socials .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #00d4ff;
    font-size: 1.3rem;
    border: 2px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-socials .social-icon:hover {
    background: #00d4ff;
    color: #0a0e27;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
    border-color: #00d4ff;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* Header & Navigation */
header {
    background: rgba(15, 23, 42, 0.95);
    color: #fff;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1b35 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 0 2rem;
}

.hero-overlay {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(99, 102, 241, 0.15), transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(236, 72, 153, 0.15), transparent 50%);
    z-index: 0;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
    padding: 2rem 0;
}

.hero-text {
    animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-greeting {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gradient-border {
    position: relative;
    padding: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #7b2ff7, #f107a3, #00d4ff);
    background-size: 300% 300%;
    animation: gradientRotate 6s ease infinite;
    box-shadow: 0 0 60px rgba(99, 102, 241, 0.5),
                0 0 120px rgba(236, 72, 153, 0.3);
}

@keyframes gradientRotate {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #7b2ff7, #f107a3, #00d4ff);
    background-size: 300% 300%;
    animation: gradientRotate 6s ease infinite;
    filter: blur(20px);
    z-index: -1;
    opacity: 0.8;
}

.profile-image {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 4px solid #0a0e27;
}

.highlight {
    color: #00d4ff;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
    animation: moveBackground 20s linear infinite;
    z-index: 0;
}

@keyframes moveBackground {
    0% { transform: translateY(0); }
    100% { transform: translateY(100px); }
}

.hero-content {
    z-index: 2;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.glitch {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    color: white;
}

.tagline {
    font-size: 2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
   
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.btn {
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff, #7b2ff7);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Sections */
section {
    padding: 5rem 0;
}

#about {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(236, 72, 153, 0.05));
    position: relative;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><circle cx="40" cy="40" r="1" fill="%236366f1" opacity="0.05"/></svg>');
    pointer-events: none;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
    color: white;

}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

/* About Section */
#about {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(15, 27, 53, 0.95)), url('cyberpunk hood guy.png') center/cover no-repeat fixed;
    position: relative;
    padding: 6rem 0;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.08), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(123, 47, 247, 0.08), transparent 40%);
    pointer-events: none;
}

.section-title {
    color: white;
}

.about-bio {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-bio p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.9;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.about-full {
    max-width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.about-section {
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.12);
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.about-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.25);
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

.about-section h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #00d4ff;
}

.about-section h3 i {
    color: #00d4ff;
    margin-right: 0.5rem;
}

.info-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border-left: 4px solid #00d4ff;
}

.info-item h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.info-item .institution {
    color: #00d4ff;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.info-item .year {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.info-item .coursework {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
}

.info-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.project-item {
    border-left: 4px solid #f107a3;
}

.project-subtitle {
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.tech-used {
    color: #00d4ff;
    margin-top: 0.8rem;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Skills Section */
#skills {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(99, 102, 241, 0.08));
    position: relative;
}

#skills::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect x="0" y="0" width="2" height="2" fill="%238b5cf6" opacity="0.05"/></svg>');
    pointer-events: none;
}

.skills-category-section {
    margin-bottom: 3rem;
}

.category-header {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
    color: white;
}

.category-header i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.skills-category {
    margin-bottom: 2.5rem;
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.skills-subtitle {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.skills-subtitle i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.skill-badge {
    padding: 0.6rem 1.2rem;
    background: white;
    color: var(--text-dark);
    border-radius: 25px;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.skill-badge:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.2);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.skill-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.1);
}

.skill-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.25);
    background: rgba(255, 255, 255, 0.95);
}

.skill-card i {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

/* Brand Colors for Icons */
.icon-language {
    color: #4285F4;
}

.icon-python {
    color: #3776AB;
}

.icon-sql {
    color: #CC2927;
}

.icon-html {
    color: #E34F26;
}

.icon-cpp {
    color: #00599C;
}

.icon-csharp {
    color: #239120;
}

.icon-dart {
    color: #0175C2;
}

.icon-nextjs {
    color: #000000;
}

.icon-react {
    color: #61DAFB;
}

.icon-firebase {
    color: #FFCA28;
}

.icon-github {
    color: #181717;
}

.icon-figma {
    color: #F24E1E;
}

.icon-canva {
    color: #00C4CC;
}

.icon-excel {
    color: #217346;
}

.icon-quickbooks {
    color: #2CA01C;
}

.skill-card h3 {
    margin-bottom: 0.3rem;
    color: var(--text-dark);
    font-size: 1rem;
}

.skill-card p {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Projects Section */
#projects {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.05), rgba(99, 102, 241, 0.05));
}

/* Projects Section */
.project-showcase {
    max-width: 1400px;
    margin: 0 auto;
}

.project-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.project-header h3 {
    font-size: 2.5rem;
    color: #00d4ff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.project-subtitle {
    font-size: 1.2rem;
    color: #7b2ff7;
    font-weight: 500;
    margin: 0;
}

.project-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    padding: 0 1rem;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.project-gallery img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 12px 32px rgba(0, 212, 255, 0.25);
    transition: all 0.3s ease;
    border: 3px solid rgba(0, 212, 255, 0.3);
    background: #181c3a;
}

.project-gallery img:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
    border-color: #00d4ff;
}

.project-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.project-info h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.project-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.3rem 0.8rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Contact Section */
#contact {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(236, 72, 153, 0.08));
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.15);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-item p {
    margin: 0;
    color: var(--text-dark);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    transform: translateY(-5px);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    background: var(--dark-bg);
    color: #fff;
}

footer i {
    color: var(--accent-color);
}

/* Animation Classes */
.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image-container {
        order: 1;
    }
    
    .hero-greeting,
    .glitch,
    .tagline,
    .hero-description {
        text-align: center;
    }
    
    .hero-socials,
    .cta-buttons {
        justify-content: center;
    }
    
    .glitch {
        font-size: 2.2rem;
    }
    
    .tagline {
        font-size: 1.3rem;
    }
    
    .hero-greeting {
        font-size: 1.5rem;
    }
    
    .profile-image {
        width: 280px;
        height: 280px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-full {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
}
