/* Advanced Glassmorphism Theme */
:root {
    --bg-dark: #050505;
    --glass-surface: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-highlight: rgba(255, 255, 255, 0.1);

    --primary-neon: #FF9900;
    --secondary-neon: #FF5500;
    --accent-neon: #FFCC00;

    --text-main: #ffffff;
    --text-muted: #a0a0a0;

    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    --neon-glow: 0 0 10px rgba(255, 153, 0, 0.3), 0 0 20px rgba(255, 85, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Blobs */
.glow-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.4;
    animation: float 15s infinite alternate;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--secondary-neon);
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-neon);
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-neon);
    top: 40%;
    left: 40%;
    opacity: 0.2;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(30px, 30px) rotate(10deg);
    }
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Glass Card Utility */
.glass-card {
    background: var(--glass-surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-highlight);
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-card {
    width: 100%;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.status-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff88;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.profile-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 20px;
}

.profile-visual {
    position: relative;
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.profile-img-container {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--text-main);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.profile-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-neon), var(--secondary-neon));
    filter: blur(20px);
    opacity: 0.5;
    z-index: 1;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.profile-text {
    flex: 1;
}

.name {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, #a0a0a0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title {
    font-size: 1.8rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 30px;
}

.highlight {
    color: var(--primary-neon);
    font-weight: 600;
}

.contact-bar {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-item {
    color: var(--text-muted);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: 0.3s;
}

.contact-item:hover {
    color: var(--primary-neon);
    text-shadow: 0 0 10px rgba(255, 153, 0, 0.5);
}

.cta-group {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    background: var(--primary-neon);
    color: #000;
    box-shadow: 0 0 30px rgba(255, 153, 0, 0.4);
    border-color: transparent;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--secondary-neon);
    box-shadow: 0 0 15px var(--secondary-neon);
    border-radius: 2px;
}

/* About Section */
.about-section {
    margin-bottom: 80px;
}

.about-card {
    padding: 40px;
}

.bio-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 800px;
}

.text-accent {
    color: var(--text-main);
    font-weight: 600;
}

.timeline {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
}

.timeline-item {
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: -35px;
    left: 0;
    width: 10px;
    height: 10px;
    background: var(--primary-neon);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-neon);
}

.year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 5px;
}

.desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

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

.skill-category {
    padding: 30px;
}

.skill-category h3 {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
}

.skill-category h3 i {
    color: var(--primary-neon);
}

.skill-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-chip {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    transition: 0.3s;
    cursor: default;
}

.skill-chip:hover {
    color: #fff;
    transform: translateY(-2px);
}

.glow-green:hover {
    border-color: #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

.glow-red:hover {
    border-color: #ff4d4d;
    box-shadow: 0 0 15px rgba(255, 77, 77, 0.2);
}

.glow-blue:hover {
    border-color: #00f2ff;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
}

.glow-purple:hover {
    border-color: #bc13fe;
    box-shadow: 0 0 15px rgba(188, 19, 254, 0.2);
}

.glow-orange:hover {
    border-color: #ff9100;
    box-shadow: 0 0 15px rgba(255, 145, 0, 0.2);
}

.glow-pink:hover {
    border-color: #ff0055;
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.2);
}

.glow-yellow:hover {
    border-color: #ffea00;
    box-shadow: 0 0 15px rgba(255, 234, 0, 0.2);
}

/* Footer */
.glass-footer {
    text-align: center;
    padding: 40px;
    margin-top: 80px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .profile-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-card {
        padding: 40px 20px;
    }

    .name {
        font-size: 2.8rem;
    }

    .contact-bar {
        justify-content: center;
    }

    .cta-group {
        justify-content: center;
    }

    .timeline {
        flex-direction: column;
        gap: 30px;
    }

    .timeline-item::before {
        top: 10px;
        left: -20px;
    }

    .timeline {
        padding-left: 20px;
        border-top: none;
        border-left: 1px solid var(--glass-border);
    }
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.project-card {
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-neon);
}

.project-thumb {
    height: 180px;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.thumb-overlay {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.1);
    transition: 0.4s;
}

.project-card:hover .thumb-overlay {
    color: var(--primary-neon);
    transform: scale(1.2);
    text-shadow: 0 0 30px rgba(255, 153, 0, 0.5);
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
}

.project-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.tech-stack {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tech-stack span {
    font-size: 0.8rem;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    color: var(--primary-neon);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.achievements {
    font-size: 0.9rem;
    color: #00ff88;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-links {
    display: flex;
    gap: 15px;
}

.btn-sm {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    text-decoration: none;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-sm:hover {
    background: var(--primary-neon);
    color: #000;
}

/* Experience Section */
.vertical-timeline {
    flex-direction: column;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    padding: 0 0 0 30px;
    gap: 50px;
    margin-left: 20px;
}

.vertical-timeline .timeline-item::before {
    display: none;
    /* Remove old dot */
}

.timeline-dot {
    position: absolute;
    left: -36px;
    top: 20px;
    width: 12px;
    height: 12px;
    background: var(--secondary-neon);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--secondary-neon);
    z-index: 2;
}

.timeline-content {
    padding: 30px;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 24px;
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-content h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.timeline-content h4 {
    color: var(--primary-neon);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 500;
}

.year-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Education Section */
.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.edu-card {
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.edu-icon {
    font-size: 2.5rem;
    color: var(--accent-neon);
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 85, 0.4));
}

.edu-card h3 {
    font-size: 1.1rem;
    color: #fff;
}

.edu-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    overflow: hidden;
    padding: 0;
}

.contact-info-panel {
    padding: 50px;
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-panel h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, var(--primary-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-details {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.detail-item i {
    color: var(--primary-neon);
    font-size: 1.2rem;
}

.social-connect {
    display: flex;
    gap: 15px;
}

.social-connect a {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid var(--glass-border);
}

.social-connect a:hover {
    background: var(--primary-neon);
    color: #000;
    transform: translateY(-5px);
}

.contact-form {
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-neon);
    box-shadow: 0 0 15px rgba(255, 153, 0, 0.1);
    background: rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info-panel {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
        padding: 30px;
    }

    .contact-form {
        padding: 30px;
    }

    .vertical-timeline {
        margin-left: 0;
        padding-left: 20px;
    }

    .timeline-dot {
        left: -26px;
    }
}