* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom, #020617, #0f172a, #000);
    color: #f8fafc;
    overflow-x: hidden;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Background Glow */
.glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
}

.glow-1 {
    width: 350px;
    height: 350px;
    background: rgba(56, 189, 248, 0.15);
    top: 80px;
    left: -80px;
}

.glow-2 {
    width: 350px;
    height: 350px;
    background: rgba(34, 211, 238, 0.12);
    bottom: 50px;
    right: -100px;
}

/* Navbar */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(2, 6, 23, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    color: #38bdf8;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: .3s;
}

.nav-links a:hover {
    color: #38bdf8;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
}

.hero-text {
    flex: 1;
}

.tag {
    color: #38bdf8;
    letter-spacing: 4px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #38bdf8;
}

.hero p {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 550px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 18px;
    transition: .3s;
}

.btn-primary {
    background: #38bdf8;
    color: #020617;
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
}

.btn-secondary:hover {
    border-color: #38bdf8;
    color: #38bdf8;
}

/* Glass Card */
.hero-card {
    flex: 1;
    display: flex;
    justify-content: center;
}

.glass-card {
    width: 350px;
    height: 350px;
    border-radius: 35px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 50px rgba(56, 189, 248, 0.08);
}

.emoji {
    font-size: 4rem;
    margin-bottom: 20px;
}

.glass-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.glass-card p {
    color: #94a3b8;
}

/* Sections */
.section {
    padding: 120px 0;
}

.section h2 {
    font-size: 2.8rem;
    margin-bottom: 50px;
}

.section h2 span {
    color: #38bdf8;
}

.dark-section {
    background: rgba(255, 255, 255, 0.03);
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.about-grid p {
    color: #94a3b8;
    line-height: 1.8;
}

/* Skills */
.skills-grid,
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.card,
.project-card,
.timeline-card,
.contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 2rem;
    transition: .3s ease;
}

.card:hover,
.project-card:hover,
.timeline-card:hover,
.contact-card:hover {
    transform: translateY(-8px);
    border-color: #38bdf8;
}

/* Projects */
.project-card h3 {
    margin-bottom: 15px;
}

.project-card p {
    color: #94a3b8;
    line-height: 1.7;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-card span {
    color: #38bdf8;
    font-size: 0.9rem;
}

.experience-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1.5rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 2rem;
}

.experience-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.experience-content h3 {
    margin: 0 0 1rem;
}

.experience-label {
    color: #38bdf8;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.experience-content p {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.experience-content ul {
    list-style: none;
    margin-top: 1.2rem;
}

.experience-content li {
    margin-bottom: 10px;
    color: #cbd5e1;
}

.experience-content li::before {
    content: "✓ ";
    color: #38bdf8;
}

@media (max-width: 900px) {
    .experience-card {
        grid-template-columns: 1fr;
    }
}

/* Contact */
.contact-center {
    text-align: center;
}

.contact-center p {
    color: #94a3b8;
    margin-bottom: 30px;
}

.contact-boxes {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.contact-card {
    text-decoration: none;
    color: white;
}

/* Mobile */
@media (max-width: 900px) {

    .hero-content,
    .about-grid,
    .skills-grid,
    .project-grid,
    .contact-boxes {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
    }

    .glass-card {
        width: 100%;
        max-width: 320px;
        height: 320px;
    }
}

/* Capabilities */

.capability-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.capability-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 2rem;
    transition: .3s ease;
}

.capability-card:hover {
    transform: translateY(-10px);
    border-color: #38bdf8;
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.15);
}

.capability-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.capability-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.capability-card p {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tech-tags span {
    background: rgba(56, 189, 248, 0.12);
    color: #38bdf8;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
}

.capability-card ul {
    list-style: none;
}

.capability-card li {
    margin-bottom: 10px;
    color: #cbd5e1;
}

.capability-card li::before {
    content: "✓ ";
    color: #38bdf8;
}

/* Network Showcase */

.network-showcase {
    margin-top: 2rem;
}

.network-showcase img {
    width: 100%;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 1.5rem;
}

.network-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.proof-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1rem;
}

.proof-box h4 {
    margin-bottom: 1rem;
    color: #38bdf8;
}

.proof-box pre {
    color: #cbd5e1;
    font-size: 0.85rem;
    overflow-x: auto;
    line-height: 1.6;
}

/* Project Gallery */

.project-gallery {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.project-gallery img {
    width: 100%;
    min-height: 220px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s ease;
}

.project-gallery img:hover {
    transform: scale(1.02);
    border-color: #38bdf8;
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.15);
}

.project-card.project-large {
    padding: 2.5rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 1rem 0;
}

.project-tech span {
    background: rgba(56, 189, 248, 0.15);
    color: #38bdf8;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
}

/* Featured Projects */

.featured-projects {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 36px;
    overflow: hidden;
    transition: 0.3s ease;
    padding: 2rem;
}

.featured-card:hover {
    border-color: #38bdf8;
    box-shadow: 0 0 40px rgba(56, 189, 248, 0.12);
}

.project-images {
    display: grid;
    gap: 1rem;
    width: 100%;
}

.project-images img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s ease;
}

.project-images img:hover {
    border-color: #38bdf8;
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.15);
}

.mobile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.network-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.project-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-content ul {
    list-style: none;
    margin-top: 1.2rem;
}

.project-content li {
    margin-bottom: 10px;
    color: #cbd5e1;
}

.project-content li::before {
    content: "✓ ";
    color: #38bdf8;
    font-weight: bold;
    margin-right: 8px;
}

.project-label {
    color: #38bdf8;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.project-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.project-content p {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.project-content ul {
    list-style: none;
    margin-top: 1.5rem;
}

.project-content li {
    margin-bottom: 12px;
    color: #cbd5e1;
}

.project-content li::before {
    content: "✓ ";
    color: #38bdf8;
}

/* Responsive */

@media (max-width: 900px) {

    .mobile-grid,
    .network-grid {
        grid-template-columns: 1fr;
    }

    .project-content h3 {
        font-size: 1.5rem;
    }
}

/* Experience Cards */

.experience-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;

    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;

    overflow: hidden;
    margin-bottom: 3rem;

    transition: 0.3s ease;
}

.experience-card:hover {
    border-color: #38bdf8;
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.12);
}

.experience-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-content {
    padding: 2rem;
}

.experience-label {
    color: #38bdf8;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 1rem;
}

.experience-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.experience-content p {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.experience-content ul {
    list-style: none;
}

.experience-content li {
    margin-bottom: 10px;
    color: #cbd5e1;
}

.experience-content li::before {
    content: "✓ ";
    color: #38bdf8;
}

/* Better Experience Images */

.experience-card img {
    width: 100%;
    height: 100%;
    min-height: 450px;
    object-fit: cover;
    object-position: center;
}

/* Mobile App Screens */

.mobile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.mobile-grid img {
    width: 100%;
    max-height: 650px;
    object-fit: cover;

    border-radius: 28px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    background: #020617;

    transition: 0.3s ease;
}

.mobile-grid img:hover {
    transform: translateY(-8px) scale(1.02);

    border-color: #38bdf8;

    box-shadow: 0 0 30px rgba(56, 189, 248, 0.18);
}

/* Hero Section */

.hero-subtitle {
    color: #38bdf8;

    letter-spacing: 4px;

    font-size: 0.9rem;

    display: block;

    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 5rem;

    line-height: 1.1;

    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: #38bdf8;
}

.hero p {
    color: #94a3b8;

    font-size: 1.2rem;

    line-height: 1.8;

    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;

    border-radius: 999px;

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s ease;
}

.btn-primary {
    background: #38bdf8;
    color: #020617;
}

.btn-primary:hover {
    transform: translateY(-5px);

    box-shadow: 0 0 25px rgba(56, 189, 248, 0.4);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.12);

    color: white;

    background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
    border-color: #38bdf8;

    transform: translateY(-5px);
}

/* Scroll Animations */

.hidden {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Section */

.contact-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 2rem;

    margin-top: 3rem;
}

.contact-card {
    padding: 2.5rem;

    text-align: center;

    border-radius: 28px;

    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.08);

    text-decoration: none;

    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);

    border-color: #38bdf8;

    box-shadow: 0 0 30px rgba(56, 189, 248, 0.15);
}

.contact-card h3 {
    color: white;

    margin-bottom: 1rem;
}

.contact-card p {
    color: #94a3b8;
}

/* Responsive */

@media (max-width: 900px) {

    .hero h1 {
        font-size: 3rem;
    }

    .contact-grid,
    .capability-grid {
        grid-template-columns: 1fr;
    }

    .experience-card {
        grid-template-columns: 1fr;
    }

    .mobile-grid {
        grid-template-columns: 1fr;
    }

}

/* Animated Reactive Background */

.background-blur {
    position: fixed;

    border-radius: 50%;

    filter: blur(120px);

    z-index: -1;

    pointer-events: none;

    transition: transform 0.2s linear;
}

.blur-one {
    width: 350px;
    height: 350px;

    background: rgba(56, 189, 248, 0.15);

    top: 10%;
    left: -100px;
}

.blur-two {
    width: 300px;
    height: 300px;

    background: rgba(14, 165, 233, 0.12);

    top: 50%;
    right: -80px;
}

.blur-three {
    width: 250px;
    height: 250px;

    background: rgba(6, 182, 212, 0.10);

    bottom: 10%;
    left: 30%;
}