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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

:root {
    --primary-gradient: linear-gradient(135deg, #00D4FF 0%, #FF006E 100%);
    --bg-dark: #0a0a0f;
    --bg-secondary: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-cyan: #00D4FF;
    --accent-pink: #FF006E;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: visible; /* Prevent clipping of hover effects */
    width: 100%;
    box-sizing: border-box;
}

.hero .container {
    overflow: visible;
    position: relative;
}

/* Navigation */
/* Mobile Top Navbar */
.mobile-top-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1002;
    border-bottom: 1px solid var(--card-border);
    transition: all 0.3s ease;
    display: none;
    height: 60px;
}

.mobile-nav-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0 20px;
}

.mobile-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-top-navbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--card-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-text {
    color: var(--accent-cyan);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-cyan);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-cyan);
    top: -300px;
    left: -300px;
}

.orb-2 {
    width: 800px;
    height: 800px;
    background: var(--accent-pink);
    bottom: -400px;
    right: -400px;
}

/* Two Column Hero Layout */
.hero-content-two-column {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    min-height: 60vh;
    margin-bottom: 2rem;
    overflow: visible;
}

.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 5;
    justify-content: center;
}


.hero-education-badge {
    margin-bottom: 1rem;
}

.hero-college-logo {
    max-width: 60px;
    max-height: 45px;
    object-fit: contain;
    opacity: 0.8;
}

.hero-intro {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 400;
    margin: 0;
    max-width: 400px;
}

/* Compact Stats */
.stats-container-compact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 2rem 0;
}

.stat-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 100%;
}

.stat-item:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

/* Full Width Stats Container */
.stats-container-full-width {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 3rem 0 2rem 0;
    width: 100%;
}

.stats-container-full-width .stat-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 100%;
}

.stats-container-full-width .stat-item:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.15);
}

/* Hero Stats Container */
.stats-container-hero {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.stats-container-hero .stat-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stats-container-hero .stat-item:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.15);
}

/* Stats Row Container */
.stats-container-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 420px; /* Match width of "Vishesh Goel" heading as shown in reference image */
}

.stats-container-row .stat-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    width: 100%;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    align-items: center;
}

.stats-container-row .stat-item:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.15);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
}

.stat-text {
    text-align: left;
}

.stat-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.2rem 0;
}
    color: var(--accent-cyan);
    line-height: 1;
    display: block;
}

.stat-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.3rem;
    font-weight: 500;
}

/* Social Icons */
.hero-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: var(--accent-cyan);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,212,255,0.3);
    border-color: var(--accent-cyan);
}

/* Right Side - Profile */
.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-profile-container {
    position: relative;
    filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.15));
}

.profile-image-frame {
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: -25px 25px 30px rgba(0, 212, 255, 0.25), 
                25px -25px 30px rgba(255, 0, 110, 0.25);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 3px solid rgba(0, 212, 255, 0.2);
    z-index: 10;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.hero-name-section {
    text-align: left;
}

.hero-education {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0.5rem 0;
}

.hero-current-position {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0.5rem 0;
}

.institution-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 4px;
}

.hero-current-role {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 400;
}

.hero-subtitle-small {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.hero-tags {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.hero-tag {
    background: transparent;
    color: var(--text-secondary);
    padding: 0.3rem 0;
    font-size: 1rem;
    font-weight: 400;
    border: none;
    position: relative;
    padding-left: 1.2rem;
}

.hero-tag::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: bold;
}

/* Left line extending from left container to center */
.hero-line-left {
    position: absolute;
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        var(--text-secondary) 0px,
        var(--text-secondary) 4px,
        transparent 4px,
        transparent 8px
    );
    z-index: 15;
    top: 40%;
    left: 0;
    right: -33.33%;
    width: 133.33%;
}

/* Right line extending from right container to center */
.hero-line-right {
    position: absolute;
    height: 1px;
    background: repeating-linear-gradient(
        to right,
        var(--text-secondary) 0px,
        var(--text-secondary) 4px,
        transparent 4px,
        transparent 8px
    );
    z-index: 15;
    top: 40%;
    left: -50%;
    right: 0;
    width: 150%;
}

.hero-name-large {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    line-height: 1.1;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-small {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 400;
}

/* Right Side Industries Section */
.industries-section-right {
    width: 100%;
}

.industries-title-right {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: left;
}

.industries-grid-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    width: 100%;
}

.industry-item-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.8rem 0.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
    min-height: 70px;
    justify-content: center;
}

.industry-item-right:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 110, 0.1));
    border-color: var(--accent-cyan);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,212,255,0.2);
}

.industry-icon-right {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.industry-name-right {
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

/* Smaller Industry Items - No Click Functionality */
.industry-item-right-small {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 0.3rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
    min-height: 50px;
    justify-content: center;
}

.industry-icon-right-small {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.industry-name-right-small {
    font-size: 0.65rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.1;
}

/* Others text styling */
.industry-others {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 0.3rem;
    min-height: 50px;
    justify-content: center;
}

.industry-others-text {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-secondary);
    font-style: italic;
    text-align: center;
}

/* Modern Buttons */
.hero-actions-modern {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-modern {
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary-modern {
    background: var(--primary-gradient);
    color: white;
    border: none;
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,212,255,0.3);
}

.btn-secondary-modern {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--card-border);
}

.btn-secondary-modern:hover {
    background: var(--card-bg);
    border-color: var(--accent-cyan);
    color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,212,255,0.1);
}

.hero-content {
    text-align: center;
}

/* Hero Education Badge */
.hero-education-badge {
    text-align: center;
    margin-bottom: 1rem;
}

.hero-college-logo {
    max-width: 80px;
    max-height: 60px;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.hero-college-logo:hover {
    opacity: 1;
}

.hero-title-container {
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.hero-name {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-title {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    margin: 0;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.2;
    opacity: 0.9;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: 1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.college-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.college-logo {
    max-width: 150px;
    max-height: 150px;
    object-fit: contain;
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.stat-card {
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.1);
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 0.3rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
    opacity: 0.8;
    font-style: italic;
}

.stat-note {
    display: block;
    font-size: 0.65rem;
    color: var(--text-secondary);
    opacity: 0.6;
    margin-top: 0.3rem;
    font-style: italic;
    line-height: 1.2;
}

/* Industries Section */
.industries-section {
    margin: 2.5rem 0;
    text-align: center;
}

.industries-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: default;
}

.industry-item.clickable {
    cursor: pointer;
}

.industry-item:hover {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
}

.industry-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.industry-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.2;
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--card-border);
}

.btn-secondary:hover {
    background: var(--card-bg);
    border-color: var(--accent-cyan);
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-secondary) 100%);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.section-description {
    text-align: center;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    align-items: stretch;
}

/* Ensure all skill cards have equal height */
.skill-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.skill-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 110, 0.1));
}

.skill-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.skill-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.education-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem auto;
    max-width: 600px;
    backdrop-filter: blur(10px);
}

.education-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
}

.education-logo {
    max-width: 80px;
    max-height: 80px;
    object-fit: contain;
    opacity: 0.9;
    flex-shrink: 0;
}

.education-content {
    flex: 1;
}

.education-card h3 {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.education-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.cta-section .btn {
    align-self: center;
}

/* Experience Timeline */
.experience {
    padding: 80px 0;
    background: var(--bg-dark);
    overflow: visible; /* Prevent clipping of hover effects */
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 20px 0 50px; /* Add right padding to prevent clipping */
    overflow: visible; /* Ensure timeline doesn't clip hover effects */
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-cyan) 0%, var(--accent-pink) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    cursor: pointer;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -34px;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent-cyan);
}

.timeline-content {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.company-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.company-logo {
    max-width: 80px;
    max-height: 40px;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.timeline-item:hover .company-logo {
    opacity: 1;
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    border-color: var(--accent-cyan);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.timeline-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.timeline-details {
    margin-top: 1rem;
    color: var(--text-secondary);
}

.timeline-details p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.timeline-details p strong {
    color: var(--text-primary);
    display: block;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.timeline-details ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.timeline-details li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.timeline-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
}

.timeline-details.hidden {
    display: none;
}

.timeline-item.expanded .timeline-details {
    display: block;
}

/* Projects Section */
.projects {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-secondary) 100%);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.project-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.project-client {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1rem;
}

.project-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 0, 110, 0.2));
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

/* Recognition Section */
.recognition {
    margin-top: 4rem;
}

.subsection-title {
    font-size: 1.8rem;
    text-align: center;
    margin: 3rem 0 2rem;
}

.awards-grid,
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.award-card,
.leadership-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.award-card h4,
.leadership-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.leadership-card p {
    color: var(--text-secondary);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 400px;
    height: 400px;
    background: var(--accent-cyan);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.3;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 400px;
    height: 400px;
    background: var(--accent-pink);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.3;
}

.contact-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

.contact-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.contact-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
}

.contact-info {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
}

.contact-link {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--accent-cyan);
}

.contact-icon {
    font-size: 1.2rem;
}

.contact-tagline {
    color: var(--accent-cyan);
    font-style: italic;
    font-size: 1.2rem;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--card-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
}

.back-to-top {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s;
}

.back-to-top:hover {
    transform: translateY(-2px);
}

/* Responsive Design - Mobile First Approach */

/* Large Mobile / Small Tablet */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    /* Mobile Top Navbar */
    .mobile-top-navbar {
        display: block;
    }
    
    /* Hide Desktop Navbar */
    .navbar.top-nav {
        display: none;
    }

    /* Navigation */
    .nav-container {
        padding: 0 15px;
    }

    .nav-logo {
        font-size: 1.3rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: all 0.3s ease;
        padding: 3rem 0;
        border-top: 1px solid var(--card-border);
        z-index: 1001;
        gap: 2rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        border-radius: 8px;
        margin: 0 2rem;
        transition: all 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(0, 212, 255, 0.1);
        color: var(--accent-cyan);
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
    }

    .bar {
        width: 25px;
        height: 3px;
        background-color: var(--text-primary);
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
        min-height: 90vh;
    }
    
    .hero-content-two-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .hero-name-large {
        order: 1;
        margin-bottom: 0;
    }
    
    .hero-name-section {
        display: contents;
    }
    
    .hero-tags {
        order: 2;
        display: flex !important;
        flex-direction: row !important;
        justify-content: center;
        align-items: center;
        gap: 0.3rem;
        flex-wrap: nowrap;
        white-space: nowrap;
        font-size: 0.8rem;
        padding: 0 1rem;
        margin-top: -1.5rem;
        margin-bottom: 0;
    }
    
    .hero-left {
        order: 3;
        align-items: center;
    }
    
    /* Logos container - side by side layout */
    .hero-logos-container {
        order: 4;
        display: flex !important;
        flex-direction: row !important;
        justify-content: center;
        align-items: flex-start;
        gap: 3rem;
        width: 100%;
    }
    
    /* Individual logo sections - stack vertically */
    .hero-education,
    .hero-current-position {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        text-align: center;
        width: auto;
    }
    
    /* Style both logo images */
    .hero-education img,
    .hero-current-position img {
        width: 40px;
        height: 40px;
        margin: 0 0 0.5rem 0;
    }
    
    /* Style both text sections */
    .hero-education p,
    .hero-current-position p {
        font-size: 0.9rem;
        margin: 0;
        text-align: center;
        white-space: nowrap;
        display: block !important;
    }
    
    .hero-tag {
        flex-shrink: 0;
        white-space: nowrap;
        font-size: 0.8rem;
        padding: 0.3rem 0.5rem;
    }
    
    .hero-tag::before {
        display: none;
    }
    
    .hero-tag:not(:last-child)::after {
        content: " |";
        margin-left: 0.3rem;
        color: var(--accent-cyan);
        font-size: 0.8rem;
    }
    
    .stats-container-row {
        order: 5;
        flex-direction: row !important;
        justify-content: center;
        gap: 1rem;
    }
    
    .stats-container-row .stat-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        text-align: center;
        padding: 0.8rem 1rem;
        gap: 0.5rem;
    }
    
    .stats-container-row .stat-text {
        display: block !important;
    }
    
    .stats-container-row .stat-number {
        font-size: 1.8rem;
        font-weight: 800;
        margin-bottom: 0.3rem;
    }
    
    .stats-container-row .stat-title {
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 0.2rem;
        text-align: center;
    }
    
    /* Replace "Years Experience" with "Yrs Exp" on mobile */
    .stats-container-row .stat-item:last-child .stat-title {
        font-size: 0;
    }
    
    .stats-container-row .stat-item:last-child .stat-title::after {
        content: "Yrs Exp";
        font-size: 0.9rem;
    }
    
    .stats-container-row .stat-label {
        display: none;
    }
    
    .hero-social {
        order: 6;
    }
    
    .hero-right {
        display: contents;
    }
    
    .hero-line-continuous {
        display: none;
    }
    
    
    .hero-name-section {
        text-align: center;
    }
    
    
    .industries-title-right {
        text-align: center;
    }
    
    .industries-grid-right {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }
    
    .profile-image-frame {
        width: 280px;
        height: 280px;
        box-shadow: -20px 20px 25px rgba(0, 212, 255, 0.2), 
                    20px -20px 25px rgba(255, 0, 110, 0.2);
    }
    
    .hero-name-large {
        font-size: 2.5rem;
    }
    
    .hero-intro {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .stats-container-compact {
        justify-content: center;
    }
    
    .hero-social {
        justify-content: center;
    }
    
    .industries-grid-right {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }
    
    .hero-actions-modern {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-modern {
        width: 100%;
        max-width: 200px;
    }

    .hero-name {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 0.3rem;
    }
    
    .hero-title {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .hero-education-badge {
        margin-bottom: 0.8rem;
    }
    
    .hero-college-logo {
        max-width: 60px;
        max-height: 45px;
    }
    
    .hero-title-container {
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 2rem;
    }

    .college-badge {
        width: 150px;
        height: 150px;
        margin-bottom: 2rem;
    }

    .college-logo {
        max-width: 100px;
        max-height: 100px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin: 1.5rem 0;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .stat-note {
        font-size: 0.6rem;
        margin-top: 0.2rem;
    }

    .industries-section {
        margin: 2rem 0;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .industry-item {
        padding: 0.8rem 0.4rem;
    }

    .industry-icon {
        font-size: 1.2rem;
        margin-bottom: 0.3rem;
    }

    .industry-name {
        font-size: 0.75rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        align-items: center;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* About Section */
    .about {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .skill-card {
        padding: 1.5rem;
    }
    
    .education-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .education-logo {
        max-width: 60px;
        max-height: 60px;
    }

    /* Experience Timeline */
    .experience {
        padding: 60px 0;
    }

    .timeline {
        padding: 1rem 10px 1rem 60px;
        margin: 2rem auto;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-marker {
        left: -75px;
    }

    .timeline-item {
        margin-bottom: 3rem;
        padding: 5px;
        margin: -5px;
        margin-bottom: 3rem;
    }

    /* Projects */
    .projects {
        padding: 60px 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .project-card {
        padding: 1.5rem;
    }

    /* Contact */
    .contact {
        padding: 60px 0;
    }

    .contact-card {
        padding: 2rem;
        margin: 0 15px;
    }

    .contact-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .hero-name {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 0.9rem;
    }

    .hero-education-badge {
        margin-bottom: 0.6rem;
    }
    
    .hero-college-logo {
        max-width: 50px;
        max-height: 38px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .profile-image-frame {
        width: 220px;
        height: 220px;
        box-shadow: -15px 15px 20px rgba(0, 212, 255, 0.18), 
                    15px -15px 20px rgba(255, 0, 110, 0.18);
    }
    
    .hero-name-large {
        font-size: 2rem;
    }
    
    .hero-intro {
        font-size: 1rem;
    }
    
    .stats-container-compact {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .industries-grid-hero {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }

    .college-badge {
        width: 120px;
        height: 120px;
    }

    .college-logo {
        max-width: 80px;
        max-height: 80px;
    }

    .stat-value {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }

    .industry-item {
        padding: 0.6rem 0.3rem;
    }

    .industry-icon {
        font-size: 1rem;
    }

    .industry-name {
        font-size: 0.7rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .timeline {
        padding: 1rem 5px 1rem 50px;
    }

    .contact-card {
        padding: 1.5rem;
        margin: 0 10px;
    }
}

/* Very Small Mobile */
@media (max-width: 360px) {
    .hero-name {
        font-size: 1.6rem;
    }
    
    .hero-title {
        font-size: 0.85rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .stat-value {
        font-size: 1.3rem;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .timeline {
        padding: 1rem 2px 1rem 45px;
    }
}