* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0c0f;
    color: #e5e9f0;
    line-height: 1.5;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #1a1d24;
}

::-webkit-scrollbar-thumb {
    background: #00d4ff;
    border-radius: 3px;
}

.gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: radial-gradient(circle at 20% 30%, #0a0c0f 0%, #0d1117 100%);
}

.gradient-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 60%, rgba(0, 212, 255, 0.03) 0%, transparent 60%);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation - Fixed (Logo + Links on Same Line) */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 12, 15, 0.98);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    padding: 14px 0;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    white-space: nowrap;
}

/* Desktop Navigation Links */
.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    color: #e5e9f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.85rem;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #00d4ff;
}

.btn-resume-nav {
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    padding: 6px 16px;
    border-radius: 40px;
    color: white !important;
    font-size: 0.8rem !important;
}

.btn-resume-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 12px rgba(0, 212, 255, 0.3);
}

/* Mobile Menu Button - Hidden on Desktop */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    color: #00d4ff;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h6 {
    color: #00d4ff;
    font-size: 0.8rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.hero-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-text .title {
    font-size: 1.1rem;
    color: #8b9bb0;
    margin-bottom: 20px;
}

.hero-text p {
    color: #9aa9bb;
    margin-bottom: 28px;
    max-width: 500px;
    font-size: 0.95rem;
}

.cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -5px rgba(0, 212, 255, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid #00d4ff;
    padding: 8px 22px;
    border-radius: 40px;
    color: #00d4ff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.profile-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00d4ff;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.25);
    transition: transform 0.3s;
    background: linear-gradient(135deg, #1a1d24, #0a0c0f);
}

.profile-image:hover {
    transform: scale(1.02);
}

.image-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #1a1d24, #0a0c0f);
    border: 1px solid #00d4ff;
    border-radius: 40px;
    padding: 8px 20px;
    font-size: 0.75rem;
    color: #00d4ff;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(4px);
    z-index: 5;
}

/* For mobile screens */
@media (max-width: 600px) {
    .image-badge {
        font-size: 0.65rem;
        padding: 5px 12px;
        white-space: nowrap;
    }
}

/* For very small screens */
@media (max-width: 450px) {
    .image-badge {
        font-size: 0.55rem;
        padding: 4px 10px;
        white-space: nowrap;
    }
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: #00d4ff;
}

.stat-label {
    font-size: 0.75rem;
    color: #8b9bb0;
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header .badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 30px;
    font-size: 0.7rem;
    color: #00d4ff;
    margin-bottom: 16px;
}

.underline {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #0066ff);
    margin: 0 auto;
}

.competency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.comp-card {
    background: rgba(26, 29, 36, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 212, 255, 0.12);
    border-radius: 16px;
    padding: 22px;
    transition: all 0.3s;
}

.comp-card:hover {
    border-color: #00d4ff;
    transform: translateY(-3px);
}

.comp-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.comp-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #00d4ff;
}

.comp-card ul {
    list-style: none;
}

.comp-card li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.85rem;
    color: #b0bec5;
}

.comp-card li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-size: 0.8rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #00d4ff, #0066ff);
}

.timeline-item {
    margin-bottom: 35px;
    position: relative;
}

.timeline-content {
    width: 45%;
    background: rgba(26, 29, 36, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 212, 255, 0.12);
    border-radius: 14px;
    padding: 18px;
}

.timeline-content:hover {
    border-color: #00d4ff;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 34px;
    height: 34px;
    background: #1a1d24;
    border: 2px solid #00d4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0c0f;
    font-size: 0.8rem;
}

.timeline-content h3 {
    color: #00d4ff;
    margin-bottom: 8px;
    font-size: 1rem;
}

.timeline-content .date {
    font-size: 0.7rem;
    color: #6272a4;
    margin-bottom: 10px;
}

.timeline-content li {
    padding: 4px 0;
    padding-left: 18px;
    position: relative;
    font-size: 0.8rem;
}

.timeline-content li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-size: 0.65rem;
}

.skills-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.skill-category h3 {
    margin-bottom: 18px;
    color: #00d4ff;
    font-size: 1.1rem;
}

.skill-item {
    margin-bottom: 14px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 0.8rem;
}

.skill-bar {
    height: 4px;
    background: #2a2e3a;
    border-radius: 2px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #0066ff);
    border-radius: 2px;
    width: 0%;
    transition: width 1s ease;
}

.tools-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    justify-content: center;
}

.tool-badge {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 102, 255, 0.05));
    border: 1px solid rgba(0, 212, 255, 0.25);
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: all 0.3s;
}

.tool-badge:hover {
    border-color: #00d4ff;
    transform: scale(1.02);
}

.profile-quote {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 102, 255, 0.02));
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
}

.profile-quote i {
    font-size: 2rem;
    color: #00d4ff;
    opacity: 0.4;
    margin-bottom: 16px;
}

.profile-quote p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

footer {
    background: #060708;
    padding: 40px 0 25px;
    border-top: 1px solid rgba(0, 212, 255, 0.08);
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-links a {
    color: #8b9bb0;
    font-size: 1.3rem;
    transition: all 0.3s;
    cursor: pointer;
    display: inline-block;
}

.social-links a:hover {
    color: #00d4ff;
    transform: translateY(-2px);
}

footer p {
    font-size: 0.8rem;
    color: #6a7a8a;
}


/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    color: #00d4ff;
    font-size: 1.2rem;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 60px);
        background: rgba(10, 12, 15, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 30px 20px;
        transition: left 0.3s ease;
        z-index: 999;
        border-right: 1px solid rgba(0, 212, 255, 0.2);
        gap: 20px;
    }

    .nav-links.active {
        left: 0;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 998;
        display: none;
    }

    .menu-overlay.active {
        display: block;
    }
}

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-content {
        width: calc(100% - 55px);
        margin-left: 55px !important;
    }

    .timeline-icon {
        left: 0;
    }

    .profile-image {
        width: 220px;
        height: 220px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    section {
        padding: 45px 0;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 90px 0 40px;
    }

    .competency-grid {
        gap: 14px;
    }

    .comp-card {
        padding: 16px;
    }

    .profile-quote p {
        font-size: 0.95rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .timeline-content {
        padding: 14px;
    }

    .logo {
        font-size: 1rem;
    }

    .logo span {
        font-size: 0.7rem !important;
    }
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff, #0066ff);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    justify-content: center;
    align-items: center;
}

.trust-badges span {
    font-size: 0.75rem;
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

/* For mobile - allow wrapping */
@media (max-width: 600px) {
    .trust-badges span {
        white-space: normal;
        font-size: 0.7rem;
    }
}